C# 클래스 Mvp.Xml.Common.XPath.XPathVariable

Represents a variable to use in dynamic XPath expression queries.
Author: Daniel Cazzulino, blog
파일 보기 프로젝트 열기: Monobjc/monobjc-tools 1 사용 예제들

공개 메소드들

메소드 설명
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