UIConnectionInfo.Inequality 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 objects are different by performing an inequality operation.
Overloads
Inequality(Object, UIConnectionInfo) |
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified Object is different than the specified UIConnectionInfo object. |
Inequality(UIConnectionInfo, Object) |
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified UIConnectionInfo object is different than the specified Object. |
Inequality(UIConnectionInfo, UIConnectionInfo) |
Determines whether two UIConnectionInfo objects are different. |
Inequality(Object, UIConnectionInfo)
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified Object is different than 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 op_Inequality : 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 that second object.
Returns
true
if the two objects are different; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Compare%28System.Object%2CMicrosoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%29?displayProperty=fullName>
Applies to
Inequality(UIConnectionInfo, Object)
Do not reference this member directly in your code. It supports the SQL Server infrastructure. Determines whether the specified UIConnectionInfo object is different than 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 op_Inequality : 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 different; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Compare%28Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%2CSystem.Object%29?displayProperty=fullName>
Applies to
Inequality(UIConnectionInfo, UIConnectionInfo)
Determines whether two UIConnectionInfo objects are different.
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 op_Inequality : 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 that second object.
Returns
true
if the connections are not equal; otherwise, false
.
Remarks
The equivalent method for this operator is <xref:Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo.Compare%28Microsoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%2CMicrosoft.SqlServer.Management.Smo.RegSvrEnum.UIConnectionInfo%29?displayProperty=fullName>