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