C# 클래스 Dimi.InstantRDF.RDF.DataAccess.NodeNaming

Node naming methods
파일 보기 프로젝트 열기: coding3d/InstantRDF

공개 메소드들

메소드 설명
GetName ( int nodeId ) : string

Gets the name of a node.

IsNamed ( int nodeId ) : bool

Determines whether the specified node is named.

NameExists ( string name ) : bool

Checks if a name already exists.

SaveName ( int nodeId, string name ) : void

Saves the name for the given node id.

메소드 상세

GetName() 공개 정적인 메소드

Gets the name of a node.
public static GetName ( int nodeId ) : string
nodeId int The node id.
리턴 string

IsNamed() 공개 정적인 메소드

Determines whether the specified node is named.
public static IsNamed ( int nodeId ) : bool
nodeId int The node id.
리턴 bool

NameExists() 공개 정적인 메소드

Checks if a name already exists.
public static NameExists ( string name ) : bool
name string The name.
리턴 bool

SaveName() 공개 정적인 메소드

Saves the name for the given node id.
public static SaveName ( int nodeId, string name ) : void
nodeId int The node id.
name string The name.
리턴 void