Show / Hide Table of Contents

Class RosterQueryParameter

Represents a query parameter

Inheritance
System.Object
RosterQueryParameter
Namespace: Microsoft.GNS.Roster.DataAccess
Assembly: Microsoft.GNS.Roster.DataAccess.dll
Syntax
public class RosterQueryParameter : object

Constructors

View Source

RosterQueryParameter(String, Object)

Initializes a new instance of the RosterQueryParameter class.

Declaration
public RosterQueryParameter(string name, object value)
Parameters
Type Name Description
System.String name

The parameter name.

System.Object value

The parameter value.

Properties

View Source

Name

Gets the query parameter name.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
View Source

Value

Gets the query parameter value.

Declaration
public object Value { get; }
Property Value
Type Description
System.Object

Methods

View Source

Equals(Nullable<Object>)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
System.Nullable<System.Object> obj
Returns
Type Description
System.Boolean
View Source

GetHashCode()

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

Operators

View Source

Equality(RosterQueryParameter, RosterQueryParameter)

Declaration
public static bool operator ==(RosterQueryParameter param1, RosterQueryParameter param2)
Parameters
Type Name Description
RosterQueryParameter param1
RosterQueryParameter param2
Returns
Type Description
System.Boolean
View Source

Inequality(RosterQueryParameter, RosterQueryParameter)

Declaration
public static bool operator !=(RosterQueryParameter param1, RosterQueryParameter param2)
Parameters
Type Name Description
RosterQueryParameter param1
RosterQueryParameter param2
Returns
Type Description
System.Boolean
  • View Source
In This Article
Back to top Generated by DocFX