ServiceCredentials.Clone 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 인스턴스의 복사본을 만듭니다.
public:
System::ServiceModel::Description::ServiceCredentials ^ Clone();
public System.ServiceModel.Description.ServiceCredentials Clone ();
member this.Clone : unit -> System.ServiceModel.Description.ServiceCredentials
Public Function Clone () As ServiceCredentials
반환
ServiceCredentials 인스턴스입니다.
예제
다음 코드에서는 이 메서드를 호출하는 방법을 보여 줍니다.
// Create a service host.
Uri httpUri = new Uri("http://localhost/Calculator");
ServiceHost sh = new ServiceHost(typeof(Calculator), httpUri);
// Create a binding that uses a WindowsServiceCredential .
WSHttpBinding b = new WSHttpBinding(SecurityMode.Message);
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;
// Add an endpoint.
sh.AddServiceEndpoint(typeof(ICalculator), b, "WindowsCalculator");
// Clone these credentials.
ServiceCredentials cloneCredential =
sh.Credentials.Clone();
' Create a service host.
Dim httpUri As New Uri("http://localhost/Calculator")
Dim sh As New ServiceHost(GetType(Calculator), httpUri)
' Create a binding that uses a WindowsServiceCredential .
Dim b As New WSHttpBinding(SecurityMode.Message)
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows
' Add an endpoint.
sh.AddServiceEndpoint(GetType(ICalculator), b, "WindowsCalculator")
' Clone these credentials.
Dim cloneCredential As ServiceCredentials = sh.Credentials.Clone()