Aracılığıyla paylaş


IssuedTokenClientCredential.LocalIssuerAddress Özellik

Tanım

Yerel verenin adresini alır veya ayarlar.

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

Özellik Değeri

Yerel EndpointAddress verenin.

Özel durumlar

Salt okunur kimlik bilgilerine set yönelik bir girişimde bulunuldu.

Örnekler

Bu kod, bu özelliğin nasıl ayarlandığını gösterir.

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");

Açıklamalar

Bir Güvenlik Belirteci Hizmetinden verilen bir belirteci alırken, istemci uygulamasının Güvenlik Belirteci Hizmeti adresiyle yapılandırılması gerekir. Bu bilgiler, güvenlik ilkesinde hedef hizmet tarafından belirtilebilir. Hedef hizmetin güvenlik ilkesinde bu bilgileri belirtmemesi durumunda, istemcinin WCF kanalı, verilen belirteci almak için Güvenlik Belirteci Hizmeti'nin adresi olarak öğesini kullanır LocalIssuerAddress .

Şunlara uygulanır