次の方法で共有


Binding.BindingInformation プロパティ

定義

現在のバインディングのバインド情報を取得または設定します。

public:
 property System::String ^ BindingInformation { System::String ^ get(); void set(System::String ^ value); };
public string BindingInformation { get; set; }
member this.BindingInformation : string with get, set
Public Property BindingInformation As String

プロパティ値

現在のバインディングの IP アドレス、ポート、およびホスト名。

BindingInformationプロパティの例を次に示します。 このコード例は、Binding クラスのために提供されている大規模な例の一部です。

bindingdisplay = bindingdisplay + "  Binding:\n   BindingInformation: " + 
    binding.BindingInformation;

注釈

このプロパティの値は、バインドの IP アドレス、ポート、ホスト名を含むコロンで区切られた文字列です。 ホスト名は空白のままにしておくことができます。 IP アドレスを "*" に設定して、バインドがすべての変数に対して機能することを示すことができます。

たとえば、ポート 80 上のすべての IP アドレスに設定され、ホスト名が指定されていないバインドは、このプロパティから "*:80:" を返します。 ポート 8080 の IP アドレス 192.168.1.150 に設定されているバインディングは、"192.168.1.150:8080:" を返します。 "microsoft.com" という名前のホストのポート 80 上のすべての IP アドレスに対して設定されたバインディングは、"*:80:microsoft.com" を返します。

プロパティ値は BindingInformation 、ApplicationHost.config ファイルに保持されます。

適用対象