Show / Hide Table of Contents

Class DataStoreKey

XAxis Data Store Key

Inheritance
System.Object
DataStoreKey
Implements
System.IEquatable<DataStoreKey>
Namespace: MESL.SqlRace.Domain.XAxis
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class DataStoreKey : Object, IEquatable<DataStoreKey>

Constructors

DataStoreKey()

Initializes a new instance of the DataStoreKey class.

Declaration
public DataStoreKey()

DataStoreKey(SessionKey, String)

Initializes a new instance of the DataStoreKey class.

Declaration
public DataStoreKey(SessionKey key, string parameterIdentifier)
Parameters
Type Name Description
MAT.OCS.Core.SessionKey key

The key.

System.String parameterIdentifier

The parameter identifier.

Properties

Key

Gets or sets the Session Key.

Declaration
public SessionKey Key { get; set; }
Property Value
Type Description
MAT.OCS.Core.SessionKey

The key.

ParameterIdentifier

Gets or sets the parameter identifier.

Declaration
public string ParameterIdentifier { get; set; }
Property Value
Type Description
System.String

The parameter identifier.

Methods

Equals(DataStoreKey)

Indicates whether the current object is equal to another object of the same type.

Declaration
public bool Equals(DataStoreKey other)
Parameters
Type Name Description
DataStoreKey other

An object to compare with this object.

Returns
Type Description
System.Boolean

true if the current object is equal to the other parameter; otherwise, false.

Equals(Object)

Determines whether the specified System.Object, is equal to this instance.

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
System.Object obj

The System.Object to compare with this instance.

Returns
Type Description
System.Boolean

true if the specified System.Object is equal to this instance; otherwise, false.

GetHashCode()

Returns a hash code for this instance.

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32

A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.

Operators

Equality(DataStoreKey, DataStoreKey)

Implements the operator ==.

Declaration
public static bool operator ==(DataStoreKey left, DataStoreKey right)
Parameters
Type Name Description
DataStoreKey left

The left.

DataStoreKey right

The right.

Returns
Type Description
System.Boolean

The result of the operator.

Inequality(DataStoreKey, DataStoreKey)

Implements the operator !=.

Declaration
public static bool operator !=(DataStoreKey left, DataStoreKey right)
Parameters
Type Name Description
DataStoreKey left

The left.

DataStoreKey right

The right.

Returns
Type Description
System.Boolean

The result of the operator.

Implements

System.IEquatable<>
Back to top Generated by DocFX