C# 클래스 System.Xml.Xsl.Qil.QilName

View over a Qil name literal.
Don't construct QIL nodes directly; instead, use the QilFactory.
상속: QilLiteral
파일 보기 프로젝트 열기: gbarnett/shared-source-cli-2.0 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object other ) : bool

Override Equals() so that the QilName can be used as a key in the hashtable.

Does not compare their prefixes (if any).

GetHashCode ( ) : int

Override GetHashCode() so that the QilName can be used as a key in the hashtable.

Does not compare their prefixes (if any).

QilName ( QilNodeType nodeType, string local, string uri, string prefix ) : System

Construct a new node

ToString ( ) : string

Return the QilName in this format: "{namespace}prefix:local-name". If the namespace is empty, return the QilName in this truncated format: "local-name". If the prefix is empty, return the QilName in this truncated format: "{namespace}local-name".

메소드 상세

Equals() 공개 메소드

Override Equals() so that the QilName can be used as a key in the hashtable.
Does not compare their prefixes (if any).
public Equals ( object other ) : bool
other object
리턴 bool

GetHashCode() 공개 메소드

Override GetHashCode() so that the QilName can be used as a key in the hashtable.
Does not compare their prefixes (if any).
public GetHashCode ( ) : int
리턴 int

QilName() 공개 메소드

Construct a new node
public QilName ( QilNodeType nodeType, string local, string uri, string prefix ) : System
nodeType QilNodeType
local string
uri string
prefix string
리턴 System

ToString() 공개 메소드

Return the QilName in this format: "{namespace}prefix:local-name". If the namespace is empty, return the QilName in this truncated format: "local-name". If the prefix is empty, return the QilName in this truncated format: "{namespace}local-name".
public ToString ( ) : string
리턴 string