UIConnectionInfo.Equality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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
- 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>