IntegrationServices.Key.Equality 연산자

정의

두 키 개체의 값이 동일한지 여부를 확인합니다.

오버로드

Equality(IntegrationServices+Key, IntegrationServices+Key)

지정한 피연산자를 사용하여 키 개체의 값이 동일한지 여부를 나타냅니다.

Equality(IntegrationServices+Key, Object)

지정한 개체와 키의 왼쪽이 같은지 여부를 나타냅니다.

Equality(Object, IntegrationServices+Key)

지정한 개체와 키의 오른쪽이 같은지 여부를 나타냅니다.

Equality(IntegrationServices+Key, IntegrationServices+Key)

지정한 피연산자를 사용하여 키 개체의 값이 동일한지 여부를 나타냅니다.

public:
 static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ leftOperand, Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ rightOperand);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key leftOperand, Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key rightOperand);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key * Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key -> bool
Public Shared Operator == (leftOperand As IntegrationServices.Key, rightOperand As IntegrationServices.Key) As Boolean

매개 변수

leftOperand
IntegrationServices.Key

비교할 키의 왼쪽을 나타내는 IntegrationServices.Key 개체입니다.

rightOperand
IntegrationServices.Key

비교할 키의 오른쪽을 나타내는 IntegrationServices.Key 개체입니다.

반환

지정된 피연산자를 사용하여 키 개체의 값이 같으면 true입니다. 그렇지 않으면 false입니다.

적용 대상

Equality(IntegrationServices+Key, Object)

지정한 개체와 키의 왼쪽이 같은지 여부를 나타냅니다.

public:
 static bool operator ==(Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ leftOperand, System::Object ^ obj);
public static bool operator == (Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key leftOperand, object obj);
static member ( = ) : Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key * obj -> bool
Public Shared Operator == (leftOperand As IntegrationServices.Key, obj As Object) As Boolean

매개 변수

leftOperand
IntegrationServices.Key

비교할 키의 왼쪽을 나타내는 IntegrationServices.Key 개체입니다.

obj
Object

지정한 개체입니다.

반환

지정된 개체와 키의 왼쪽이 같으면 true이고, 그렇지 않으면 false입니다.

적용 대상

Equality(Object, IntegrationServices+Key)

지정한 개체와 키의 오른쪽이 같은지 여부를 나타냅니다.

public:
 static bool operator ==(System::Object ^ obj, Microsoft::SqlServer::Management::IntegrationServices::IntegrationServices::Key ^ rightOperand);
public static bool operator == (object obj, Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key rightOperand);
static member ( = ) : obj * Microsoft.SqlServer.Management.IntegrationServices.IntegrationServices.Key -> bool
Public Shared Operator == (obj As Object, rightOperand As IntegrationServices.Key) As Boolean

매개 변수

obj
Object

지정된 개체입니다.

rightOperand
IntegrationServices.Key

비교할 키의 오른쪽을 나타내는 IntegrationServices.Key 개체입니다.

반환

지정된 개체와 키의 오른쪽이 같으면 true이고, 그렇지 않으면 false입니다.

적용 대상