다음을 통해 공유


IssuedTokenClientCredential.LocalIssuerAddress 속성

정의

로컬 발급자 주소를 가져오거나 설정합니다.

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

로컬 발급자의 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 발급된 된 토큰을 가져올 보안 토큰 서비스의 주소로 합니다.

적용 대상