共用方式為


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);  
 }  

適用於