SamlAdvice 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SamlAdvice 클래스의 새 인스턴스를 초기화합니다.
오버로드
SamlAdvice() |
SamlAdvice 클래스의 새 인스턴스를 초기화합니다. |
SamlAdvice(IEnumerable<SamlAssertion>) |
지정된 SAML 어설션의 컬렉션을 사용하여 SamlAdvice 클래스의 새 인스턴스를 초기화합니다. |
SamlAdvice(IEnumerable<String>) |
SamlAdvice 클래스의 새 인스턴스를 초기화합니다. |
SamlAdvice(IEnumerable<String>, IEnumerable<SamlAssertion>) |
지정된 SAML 어설션과 SAML 어설션 참조의 컬렉션을 사용하여 SamlAdvice 클래스의 새 인스턴스를 초기화합니다. |
SamlAdvice()
SamlAdvice 클래스의 새 인스턴스를 초기화합니다.
public:
SamlAdvice();
public SamlAdvice ();
Public Sub New ()
설명
이 생성자가 호출되고 메서드를 호출 WriteXml 하여 XML로 직렬화하기 전에 instance 수정되지 않으면 메서드에서 빈 <saml:Advice>
요소가 생성됩니다WriteXml.
적용 대상
SamlAdvice(IEnumerable<SamlAssertion>)
지정된 SAML 어설션의 컬렉션을 사용하여 SamlAdvice 클래스의 새 인스턴스를 초기화합니다.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlAdvice (System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlAdvice : seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (assertions As IEnumerable(Of SamlAssertion))
매개 변수
- assertions
- IEnumerable<SamlAssertion>
SAML 어설션에 대한 추가 정보를 제공하는 SAML 어설션이 포함된 IEnumerable<T> 형식의 SamlAssertion입니다.
예외
assertions
에 null
요소가 포함된 경우
설명
매개 변수의 assertions
요소가 속성에 Assertions 추가됩니다.
적용 대상
SamlAdvice(IEnumerable<String>)
SamlAdvice 클래스의 새 인스턴스를 초기화합니다.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::String ^> ^ references);
public SamlAdvice (System.Collections.Generic.IEnumerable<string> references);
new System.IdentityModel.Tokens.SamlAdvice : seq<string> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (references As IEnumerable(Of String))
매개 변수
- references
- IEnumerable<String>
SAML 어설션에 대한 추가 정보를 제공하는 SAML 어설션에 대한 참조의 컬렉션이 포함된 IEnumerable<T> 형식의 String입니다.
예외
references
에 null
요소가 포함된 경우
설명
매개 변수의 references
요소가 속성에 AssertionIdReferences 추가됩니다.
적용 대상
SamlAdvice(IEnumerable<String>, IEnumerable<SamlAssertion>)
지정된 SAML 어설션과 SAML 어설션 참조의 컬렉션을 사용하여 SamlAdvice 클래스의 새 인스턴스를 초기화합니다.
public:
SamlAdvice(System::Collections::Generic::IEnumerable<System::String ^> ^ references, System::Collections::Generic::IEnumerable<System::IdentityModel::Tokens::SamlAssertion ^> ^ assertions);
public SamlAdvice (System.Collections.Generic.IEnumerable<string> references, System.Collections.Generic.IEnumerable<System.IdentityModel.Tokens.SamlAssertion> assertions);
new System.IdentityModel.Tokens.SamlAdvice : seq<string> * seq<System.IdentityModel.Tokens.SamlAssertion> -> System.IdentityModel.Tokens.SamlAdvice
Public Sub New (references As IEnumerable(Of String), assertions As IEnumerable(Of SamlAssertion))
매개 변수
- references
- IEnumerable<String>
SAML 어설션에 대한 추가 정보를 제공하는 SAML 어설션에 대한 참조의 컬렉션이 포함된 IEnumerable<T> 형식의 String입니다.
- assertions
- IEnumerable<SamlAssertion>
SAML 어설션에 대한 추가 정보를 제공하는 SAML 어설션이 포함된 IEnumerable<T> 형식의 SamlAssertion입니다.
예외
설명
매개 변수의 references
요소가 속성에 AssertionIdReferences 추가됩니다.
매개 변수의 assertions
요소가 속성에 Assertions 추가됩니다.
적용 대상
.NET