UIConnectionInfo.Equality Operator

Definition

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether two specified UIConnectionInfo objects are the same.

Overloads

Equality(UIConnectionInfo, UIConnectionInfo)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether two specified UIConnectionInfo objects are the same.

Equality(UIConnectionInfo, Object)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified UIConnectionInfo object is the same as the specified Object.

Equality(Object, UIConnectionInfo)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified Object is the same as the specified UIConnectionInfo object.

Equality(UIConnectionInfo, UIConnectionInfo)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether two specified UIConnectionInfo objects are the same.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Smo::RegSvrEnum::UIConnectionInfo ^ infoA, Microsoft::SqlServer::Management::Smo::RegSvrEnum::UIConnectionInfo ^ infoB);
public static bool operator == (Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo infoA, Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo infoB);
static member ( = ) : Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo * Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo -> bool
Public Shared Operator == (infoA As UIConnectionInfo, infoB As UIConnectionInfo) As Boolean

Parameters

infoA
UIConnectionInfo

A UIConnectionInfo object that specifies the first object.

infoB
UIConnectionInfo

A UIConnectionInfo object that specifies the second object.

Returns

true if the two objects are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Equals%28Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%2CMicrosoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%29?displayProperty=fullName>

Applies to

Equality(UIConnectionInfo, Object)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified UIConnectionInfo object is the same as the specified Object.

public:
 static bool operator ==(Microsoft::SqlServer::Management::Smo::RegSvrEnum::UIConnectionInfo ^ infoA, System::Object ^ infoB);
public static bool operator == (Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo infoA, object infoB);
static member ( = ) : Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo * obj -> bool
Public Shared Operator == (infoA As UIConnectionInfo, infoB As Object) As Boolean

Parameters

infoA
UIConnectionInfo

A UIConnectionInfo object that specifies the first object.

infoB
Object

A Object that specifies the second object.

Returns

true if the two objects are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Equals%28Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%2CSystem.Object%29?displayProperty=fullName>

Applies to

Equality(Object, UIConnectionInfo)

Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified Object is the same as the specified UIConnectionInfo object.

public:
 static bool operator ==(System::Object ^ infoA, Microsoft::SqlServer::Management::Smo::RegSvrEnum::UIConnectionInfo ^ infoB);
public static bool operator == (object infoA, Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo infoB);
static member ( = ) : obj * Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo -> bool
Public Shared Operator == (infoA As Object, infoB As UIConnectionInfo) As Boolean

Parameters

infoA
Object

An Object that specifies the first object.

infoB
UIConnectionInfo

A UIConnectionInfo object that specifies the second object.

Returns

true if the two objects are equal; otherwise, false.

Remarks

The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Equals%28System.Object%2CMicrosoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%29?displayProperty=fullName>

Applies to