Binding.CertificateStoreName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
証明書ストアの名前を取得または設定します。
public:
property System::String ^ CertificateStoreName { System::String ^ get(); void set(System::String ^ value); };
public string CertificateStoreName { get; set; }
member this.CertificateStoreName : string with get, set
Public Property CertificateStoreName As String
プロパティ値
証明書ストアの名前。
例
CertificateStoreNameプロパティの例を次に示します。 プロトコルが "https" の場合は、証明書ハッシュと証明書ストア名が表示されます。 このコード例は、Binding クラスのために提供されている大規模な例の一部です。
if (binding.Protocol == "https")
{
// There is a CertificateHash and
// CertificateStoreName for the https protocol only.
bindingdisplay = bindingdisplay + "\n CertificateHash: " +
binding.CertificateHash + ": ";
// Display the hash.
foreach (System.Byte certhashbyte in binding.CertificateHash)
{
bindingdisplay = bindingdisplay + certhashbyte.ToString() + " ";
}
bindingdisplay = bindingdisplay + "\n CertificateStoreName: " +
binding.CertificateStoreName;
}
注釈
プロパティの CertificateStoreName 値には、バインドの証明書が配置されている証明書ストアの名前が含まれます。
プロパティは CertificateStoreName 、 プロパティで Protocol 定義されているプロトコル識別子が "https" の場合にのみ使用できます。 プロトコルが "http" のバインドの CertificateStoreName プロパティを取得または設定しようとすると、エラーが発生します。
プロパティの CertificateStoreName 値は、 オブジェクトで設定されます BindingCollection 。