WebMessageEncodingElement.BindingElementType 属性

定义

获取此配置元素所启用的绑定元素的类型。

public:
 virtual property Type ^ BindingElementType { Type ^ get(); };
public override Type BindingElementType { get; }
member this.BindingElementType : Type
Public Overrides ReadOnly Property BindingElementType As Type

属性值

此配置元素启用的绑定元素的类型:WebMessageEncodingBindingElement

示例

static void Main(string[] args)  
{  
   WebMessageEncodingElement webMEE = new WebMessageEncodingElement();  
   Console.WriteLine("The BE type is: {0}", webMEE.BindingElementType);  
 }  

适用于