gpt4 book ai didi

c# - 使用 IParameterInspector.BeforeCall(string operationName, object[] inputs) 中止调用

转载 作者:行者123 更新时间:2023-11-30 12:35:28 24 4
gpt4 key购买 nike

我有一个自定义行为,我在其中实现“IParameterInspector”以便能够使用 BeforeCall 和 AfterCall。我目前正在使用这些方法在我的 WCF 服务上执行调用之前进行一些验证。

这是我的属性:

[AttributeUsage(AttributeTargets.Class)]
public class SendReceiveBehaviorAttribute : Attribute, IServiceBehavior
{
public SendReceiveBehaviorAttribute()
{
}

public void ApplyDispatchBehavior(ServiceDescription desc, ServiceHostBase host)
{
foreach (ChannelDispatcher cDispatcher in host.ChannelDispatchers)
{
foreach (EndpointDispatcher eDispatcher in cDispatcher.Endpoints)
{
foreach (DispatchOperation op in eDispatcher.DispatchRuntime.Operations)
{
op.ParameterInspectors.Add(MyInspector);
}
}
}
}

public void AddBindingParameters(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase, Collection<ServiceEndpoint> endpoints, BindingParameterCollection bindingParameters)
{
}

public void Validate(ServiceDescription serviceDescription, ServiceHostBase serviceHostBase)
{
}
}

还有我的检查员:

internal class MyInspector: IParameterInspector
{
public void AfterCall(string operationName, object[] outputs, object returnValue, object correlationState)
{
}

public object BeforeCall(string operationName, object[] inputs)
{
// Make some verifications and cancel if it fails.

return null;
}
}

编辑如果我的验证失败,中止通话的最佳方式是什么?

最佳答案

据我所知,抛出异常是唯一的中止方式。

关于c# - 使用 IParameterInspector.BeforeCall(string operationName, object[] inputs) 中止调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5486563/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com