本文整理汇总了C#中System.Web.Services.Description.IsBoundBy方法的典型用法代码示例。如果您正苦于以下问题:C# System.Web.Services.Description.IsBoundBy方法的具体用法?C# System.Web.Services.Description.IsBoundBy怎么用?C# System.Web.Services.Description.IsBoundBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Web.Services.Description
的用法示例。
在下文中一共展示了System.Web.Services.Description.IsBoundBy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FindUse
static void FindUse(WsdlNS.Operation operation, WsdlNS.ServiceDescription description, string messageName, ref bool isEncoded, ref bool isLiteral)
{
string targetNamespace = description.TargetNamespace;
foreach (WsdlNS.Binding binding in description.Bindings)
{
if (operation != null && !new XmlQualifiedName(operation.PortType.Name, targetNamespace).Equals(binding.Type))
continue;
foreach (WsdlNS.OperationBinding bindingOperation in binding.Operations)
{
if (bindingOperation.Input != null) foreach (object extension in bindingOperation.Input.Extensions)
{
if (operation != null)
{
WsdlNS.SoapBodyBinding body = extension as WsdlNS.SoapBodyBinding;
if (body != null && operation.IsBoundBy(bindingOperation))
{
if (body.Use == WsdlNS.SoapBindingUse.Encoded)
isEncoded = true;
else if (body.Use == WsdlNS.SoapBindingUse.Literal)
isLiteral = true;
}
}
else
{
WsdlNS.SoapHeaderBinding header = extension as WsdlNS.SoapHeaderBinding;
if (header != null && header.Message.Name == messageName)
{
if (header.Use == WsdlNS.SoapBindingUse.Encoded)
isEncoded = true;
else if (header.Use == WsdlNS.SoapBindingUse.Literal)
isLiteral = true;
}
}
}
if (bindingOperation.Output != null) foreach (object extension in bindingOperation.Output.Extensions)
{
if (operation != null)
{
if (operation.IsBoundBy(bindingOperation))
{
WsdlNS.SoapBodyBinding body = extension as WsdlNS.SoapBodyBinding;
if (body != null)
{
if (body.Use == WsdlNS.SoapBindingUse.Encoded)
isEncoded = true;
else if (body.Use == WsdlNS.SoapBindingUse.Literal)
isLiteral = true;
}
else if (extension is WsdlNS.MimeXmlBinding)
isLiteral = true;
}
}
else
{
WsdlNS.SoapHeaderBinding header = extension as WsdlNS.SoapHeaderBinding;
if (header != null && header.Message.Name == messageName)
{
if (header.Use == WsdlNS.SoapBindingUse.Encoded)
isEncoded = true;
else if (header.Use == WsdlNS.SoapBindingUse.Literal)
isLiteral = true;
}
}
}
}
}
}