C# Класс Mvp.Xml.Common.XPath.XPathVariable

Represents a variable to use in dynamic XPath expression queries.
Author: Daniel Cazzulino, blog
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Equals ( object obj ) : bool

Checks equality of two variables. They are equal if both their Name and their Value are equal.

GetHashCode ( ) : int

See Object.GetHashCode.

XPathVariable ( string name, object value ) : System

Initializes the new variable.

operator ( ) : bool

Checks equality of two variables. They are not equal if both their Name and their Value are different.

Описание методов

Equals() публичный Метод

Checks equality of two variables. They are equal if both their Name and their Value are equal.
public Equals ( object obj ) : bool
obj object
Результат bool

GetHashCode() публичный Метод

See Object.GetHashCode.
public GetHashCode ( ) : int
Результат int

XPathVariable() публичный Метод

Initializes the new variable.
public XPathVariable ( string name, object value ) : System
name string The name to assign to the variable.
value object The variable value.
Результат System

operator() публичный статический Метод

Checks equality of two variables. They are not equal if both their Name and their Value are different.
public static operator ( ) : bool
Результат bool