次の方法で共有


RequestClaim コンストラクター

定義

RequestClaim クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
RequestClaim(String)

指定した要求の種類を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

RequestClaim(String, Boolean)

指定した要求の種類と、要求が省略可能かどうかを示す値を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

RequestClaim(String, Boolean, String)

指定した要求の種類、要求値、および要求が省略可能かどうかを示す値を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

RequestClaim(String)

指定した要求の種類を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

public:
 RequestClaim(System::String ^ claimType);
public RequestClaim(string claimType);
new System.IdentityModel.Protocols.WSTrust.RequestClaim : string -> System.IdentityModel.Protocols.WSTrust.RequestClaim
Public Sub New (claimType As String)

パラメーター

claimType
String

要求の種類を表す URI。

注釈

IsOptional プロパティは false に設定され、Value プロパティは新しいRequestClaim インスタンスでnullに設定されます。 このコンストラクターは、応答で必要な要求の要求を表す RequestClaim オブジェクトを作成します。

適用対象

RequestClaim(String, Boolean)

指定した要求の種類と、要求が省略可能かどうかを示す値を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

public:
 RequestClaim(System::String ^ claimType, bool isOptional);
public RequestClaim(string claimType, bool isOptional);
new System.IdentityModel.Protocols.WSTrust.RequestClaim : string * bool -> System.IdentityModel.Protocols.WSTrust.RequestClaim
Public Sub New (claimType As String, isOptional As Boolean)

パラメーター

claimType
String

要求の種類を表す URI。

isOptional
Boolean

true 要求が応答で省略可能な場合。それ以外の場合は false

注釈

Value プロパティは、新しいRequestClaim インスタンスでnullに設定されます。

適用対象

RequestClaim(String, Boolean, String)

指定した要求の種類、要求値、および要求が省略可能かどうかを示す値を使用して、 RequestClaim クラスの新しいインスタンスを初期化します。

public:
 RequestClaim(System::String ^ claimType, bool isOptional, System::String ^ value);
public RequestClaim(string claimType, bool isOptional, string value);
new System.IdentityModel.Protocols.WSTrust.RequestClaim : string * bool * string -> System.IdentityModel.Protocols.WSTrust.RequestClaim
Public Sub New (claimType As String, isOptional As Boolean, value As String)

パラメーター

claimType
String

要求の種類を表す URI。

isOptional
Boolean

true 要求が応答で省略可能な場合。それ以外の場合は false

value
String

要求の値。

適用対象