SoapHeaderBinding.MapToProperty Property

Definition

Gets or sets a value indicating whether the SoapHeaderBinding instance is mapped to a specific property in generated proxy classes.

C#
public bool MapToProperty { get; set; }

Property Value

true if the SoapHeaderBinding maps to a specific property; otherwise false.

Examples

C#
// Read from an existing wsdl file.
ServiceDescription myServiceDescription =
      ServiceDescription.Read("MapToProperty_cs.wsdl");
// Get the existing binding
Binding myBinding=myServiceDescription.Bindings["MyWebServiceSoap"];
OperationBinding myOperationBinding =
               (OperationBinding)myBinding.Operations[0];
InputBinding myInputBinding = myOperationBinding.Input;
// Get the 'SoapHeaderBinding' instance from 'myInputBinding'.
SoapHeaderBinding mySoapHeaderBinding =
         (SoapHeaderBinding)myInputBinding.Extensions[1];
if(mySoapHeaderBinding.MapToProperty)
{
   Console.WriteLine("'SoapHeaderBinding' instance is mapped to a "+
      "specific property in proxy generated class");
}
else
{
    Console.WriteLine("'SoapHeaderBinding' instance is not mapped to "+
       "a specific property in proxy generated class");
}

Applies to

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)