SecurityTokenService.GetSecurityTokenHandler(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得適當的安全性權杖處理常式,以發出指定之類型的安全性權杖。
protected:
virtual System::IdentityModel::Tokens::SecurityTokenHandler ^ GetSecurityTokenHandler(System::String ^ requestedTokenType);
protected virtual System.IdentityModel.Tokens.SecurityTokenHandler GetSecurityTokenHandler (string requestedTokenType);
abstract member GetSecurityTokenHandler : string -> System.IdentityModel.Tokens.SecurityTokenHandler
override this.GetSecurityTokenHandler : string -> System.IdentityModel.Tokens.SecurityTokenHandler
Protected Overridable Function GetSecurityTokenHandler (requestedTokenType As String) As SecurityTokenHandler
參數
- requestedTokenType
- String
包含要求之語彙基元型別 URI 的字串。
傳回
表示要用於建立所發行安全性權杖之權杖處理常式的 SecurityTokenHandler。 如果不支援要求的語彙基元類型 (沒有為指定的語彙基元類型設定的處理常式),則傳回 null
。
備註
在預設實作中,如果是 requestedTokenType
null
或空字串,則會使用來自組態的預設令牌類型。 這是由 DefaultTokenType 透過 SecurityTokenServiceConfiguration 屬性存取之 STS 組態物件的 屬性所指定。
此方法是從方法中實作的預設令牌發行管線呼叫 Issue 。