Saml2Attribute コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Saml2Attribute クラスの新しいインスタンスを初期化します。
オーバーロード
Saml2Attribute(String) |
指定した名前を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。 |
Saml2Attribute(String, IEnumerable<String>) |
指定した名前と値を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。 |
Saml2Attribute(String, String) |
指定した名前および値を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。 |
Saml2Attribute(String)
指定した名前を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。
public:
Saml2Attribute(System::String ^ name);
public Saml2Attribute (string name);
new System.IdentityModel.Tokens.Saml2Attribute : string -> System.IdentityModel.Tokens.Saml2Attribute
Public Sub New (name As String)
パラメーター
- name
- String
属性の名前。
例外
name
が null
です。
適用対象
Saml2Attribute(String, IEnumerable<String>)
指定した名前と値を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。
public:
Saml2Attribute(System::String ^ name, System::Collections::Generic::IEnumerable<System::String ^> ^ values);
public Saml2Attribute (string name, System.Collections.Generic.IEnumerable<string> values);
new System.IdentityModel.Tokens.Saml2Attribute : string * seq<string> -> System.IdentityModel.Tokens.Saml2Attribute
Public Sub New (name As String, values As IEnumerable(Of String))
パラメーター
- name
- String
属性の名前。
- values
- IEnumerable<String>
属性値を含む文字列のコレクション。
例外
適用対象
Saml2Attribute(String, String)
指定した名前および値を使用して、Saml2Attribute クラスの新しいインスタンスを初期化します。
public:
Saml2Attribute(System::String ^ name, System::String ^ value);
public Saml2Attribute (string name, string value);
new System.IdentityModel.Tokens.Saml2Attribute : string * string -> System.IdentityModel.Tokens.Saml2Attribute
Public Sub New (name As String, value As String)
パラメーター
- name
- String
属性の名前。
- value
- String
属性の値。
例外
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET