C# Класс Dimi.InstantRDF.RDF.DataAccess.NodeNaming

Node naming methods
Показать файл Открыть проект

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

Метод Описание
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