WebMessageEncodingElement.BindingElementType 属性
定义
获取此配置元素所启用的绑定元素的类型。Gets the type of the binding element enabled by this configuration element.
public:
virtual property Type ^ BindingElementType { Type ^ get(); };
public override Type BindingElementType { get; }
member this.BindingElementType : Type
Public Overrides ReadOnly Property BindingElementType As Type
属性值
此配置元素启用的绑定元素的类型:WebMessageEncodingBindingElement。The type of binding element enabled by this configuration element: WebMessageEncodingBindingElement.
示例
static void Main(string[] args)
{
WebMessageEncodingElement webMEE = new WebMessageEncodingElement();
Console.WriteLine("The BE type is: {0}", webMEE.BindingElementType);
}