SourceProfile.Equals Method
Definition
Namespace: ASNA.DataGate.Providers
Assembly: ASNA.QSys.DataGate.Client.dll
Determines whether the current instance is equal to the specified instance or object.
Overloads
Signature | Description |
---|---|
Equals( SourceProfile) | Determines whether the current instance of SourceProfile is equal to the specified instance. |
Equals( Object) | Determines whether the current instance is equal to the specified object. |
Equals( Object, Boolean) | Determines whether the current instance is equal to the specified object, with an option to ignore the database name. |
bool Equals(SourceProfile)
Determines whether the current instance of SourceProfile is equal to the specified instance.
bool Equals(SourceProfile other)
Parameters
Type | Parameter name | Description |
---|---|---|
SourceProfile | other | The instance to compare with the current instance. |
Remarks
This method is used to compare the current instance with another instance of the SourceProfile class. The comparison is based on the properties of the instances.
bool Equals(object)
Determines whether the current instance is equal to the specified object.
bool Equals(object other)
Parameters
Type | Parameter name | Description |
---|---|---|
Object | other | The instance to compare with the current instance. |
bool Equals(object, bool)
Determines whether the current instance is equal to the specified object.
bool Equals(object obj, bool bIgnoreDatabaseName)
Parameters
Type | Parameter name | Description |
---|---|---|
Object | obj | The object to compare with the current instance. |
Boolean | bIgnoreDatabaseName | A boolean value that indicates whether to ignore the database name in the comparison. |
Remarks
This method is used to compare the current instance with another object of the same type. If the bIgnoreDatabaseName
parameter is set to true, the comparison will ignore the database name.