次の方法で共有


SessionStateSection.CustomProvider プロパティ

定義

Providers コレクション内のカスタム プロバイダー名を取得または設定します。

public:
 property System::String ^ CustomProvider { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("customProvider", DefaultValue="")]
public string CustomProvider { get; set; }
[<System.Configuration.ConfigurationProperty("customProvider", DefaultValue="")>]
member this.CustomProvider : string with get, set
Public Property CustomProvider As String

プロパティ値

カスタム プロバイダー名。

属性

次のコード例では、 プロパティを取得する方法を CustomProvider 示します。

// Display the current CustomProvider property value.
Console.WriteLine("CustomProvider: {0}",
  sessionStateSection.CustomProvider);
' Display the current CustomProvider property value.
Console.WriteLine("CustomProvider: {0}", sessionStateSection.CustomProvider)

注釈

プロバイダーは、セッション状態モードが に Custom設定されている場合にのみ使用されます。

適用対象

こちらもご覧ください