SamlAttributeStatement 构造函数

定义

初始化 SamlAttributeStatement 类的新实例。

重载

SamlAttributeStatement()

初始化 SamlAttributeStatement 类的新实例。

SamlAttributeStatement(SamlSubject, IEnumerable<SamlAttribute>)

使用指定的主题以及与该主题关联的属性集来初始化 SamlAttributeStatement 类的新实例。

SamlAttributeStatement()

初始化 SamlAttributeStatement 类的新实例。

public:
 SamlAttributeStatement();
public SamlAttributeStatement ();
Public Sub New ()

适用于

SamlAttributeStatement(SamlSubject, IEnumerable<SamlAttribute>)

使用指定的主题以及与该主题关联的属性集来初始化 SamlAttributeStatement 类的新实例。

public:
 SamlAttributeStatement(System::IdentityModel::Tokens::SamlSubject ^ samlSubject, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAttribute ^> ^ attributes);
public SamlAttributeStatement (System.IdentityModel.Tokens.SamlSubject samlSubject, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAttribute> attributes);
new System.IdentityModel.Tokens.SamlAttributeStatement : System.IdentityModel.Tokens.SamlSubject * seq<System.IdentityModel.Tokens.SamlAttribute> -> System.IdentityModel.Tokens.SamlAttributeStatement
Public Sub New (samlSubject As SamlSubject, attributes As IEnumerable(Of SamlAttribute))

参数

samlSubject
SamlSubject

一个 SamlSubject,它指定声明的主题。

attributes
IEnumerable<SamlAttribute>

一个类型为 IEnumerable<T>SamlAttribute,它包含一组与主题关联的属性。

例外

samlSubjectnull

attributes 包含一个为 null 的成员。

- 或 -

attributes 不包含成员。

注解

下表指定了此构造函数的参数所设置的属性。

properties 参数
Attributes Attributes
SamlSubject samlSubject

适用于