IssuedTokenClientCredential.LocalIssuerAddress 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定本機簽發者的位址。
public:
property System::ServiceModel::EndpointAddress ^ LocalIssuerAddress { System::ServiceModel::EndpointAddress ^ get(); void set(System::ServiceModel::EndpointAddress ^ value); };
public System.ServiceModel.EndpointAddress LocalIssuerAddress { get; set; }
member this.LocalIssuerAddress : System.ServiceModel.EndpointAddress with get, set
Public Property LocalIssuerAddress As EndpointAddress
屬性值
本機簽發者的 EndpointAddress。
例外狀況
已嘗試設定 (set
) 唯讀的認證。
範例
這段程式碼將示範如何設定這個屬性。
WSHttpBinding b = new WSHttpBinding();
EndpointAddress ea = new EndpointAddress("http://localhost/Calculator");
CalculatorClient client = new CalculatorClient(b, ea);
IssuedTokenClientCredential itcc = client.ClientCredentials.IssuedToken;
itcc.LocalIssuerAddress = new EndpointAddress("http://fabrikam.com/sts");
備註
從安全性權杖服務取得核發的權杖時,用戶端應用程式必須以安全性權杖服務的位址加以設定。 這項資訊可以由目標服務在其安全性原則中加以指定。 如果目標服務在其安全性原則中未指定這項資訊,用戶端的 WCF 通道會使用 LocalIssuerAddress
作為安全性權杖服務的位址,從中取得已發行的權杖。