SamlAttributeStatement 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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,它包含一组与主题关联的属性。
例外
samlSubject
为 null
。
注解
下表指定了此构造函数的参数所设置的属性。
properties | 参数 |
---|---|
Attributes | Attributes |
SamlSubject | samlSubject |