다음을 통해 공유


EndpointAddress.Inequality(EndpointAddress, EndpointAddress) 연산자

정의

지정된 엔드포인트 주소가 같지 않은지 여부를 나타내는 값을 반환합니다.

public:
 static bool operator !=(System::ServiceModel::EndpointAddress ^ address1, System::ServiceModel::EndpointAddress ^ address2);
public static bool operator != (System.ServiceModel.EndpointAddress address1, System.ServiceModel.EndpointAddress address2);
static member op_Inequality : System.ServiceModel.EndpointAddress * System.ServiceModel.EndpointAddress -> bool
Public Shared Operator != (address1 As EndpointAddress, address2 As EndpointAddress) As Boolean

매개 변수

address1
EndpointAddress

비교할 EndpointAddress 개체 중 하나입니다.

address2
EndpointAddress

비교할 EndpointAddress 개체 중 하나입니다.

반환

Boolean

엔드포인트 주소가 같지 않으면 true이고, 그렇지 않으면 false입니다.

예제

EndpointIdentity endpointIdentity =
    EndpointIdentity.CreateUpnIdentity(WindowsIdentity.GetCurrent().Name);
EndpointAddress endpointAddress1 = new EndpointAddress(
    new Uri
    ("http://localhost:8003/servicemodelsamples/service/incode/identity1"),
    endpointIdentity, addressHeaders);
EndpointAddress endpointAddress2 = new EndpointAddress(
    new Uri
    ("http://localhost:8003/servicemodelsamples/service/incode/identity2"),
    endpointIdentity, addressHeaders);

bool op_Inequality_val = (endpointAddress1 != endpointAddress2);

설명

이 연산자에 대 한 해당 메서드는 EndpointAddress.Equals합니다.

적용 대상