C# 클래스 FluidDB.FluidTag

A FluidDB user, for example named Sara, can tag as many different objects as she likes with her tags, using whatever values she likes. For example, she might tag an object representing The Eiffel Tower, with a sara/opinion of beautiful and another object representing Quantum Electrodynamics, with the sara/opinion of hard.
파일 보기 프로젝트 열기: ntoll/FluidDB.NET 1 사용 예제들

Private Properties

프로퍼티 타입 설명
FluidTag System

공개 메소드들

메소드 설명
CreateTag ( FluidConnector c, FluidNamespace f_namespace, string name, string description, bool indexed ) : FluidTag

Creates the tag in the namespace

GetTag ( FluidConnector c, FluidNamespace f_namespace, string name, bool returnDescription ) : FluidTag

Returns an object reference to the tag with the specified name in the specified namespace

GetTagInformation ( ) : void

Loads the ID, description and index of the tag (gets the tags of the fluiddb/tag object)

GetValue ( FluidDBGUID objectID ) : string

Returns the value of the tag as a string

GetValue ( FluidDBGUID objectID, string contentType ) : string

Returns the tag value as a string, must use this method if value is stored with a custom content type

비공개 메소드들

메소드 설명
FluidTag ( FluidConnector c, string name ) : System

메소드 상세

CreateTag() 공개 정적인 메소드

Creates the tag in the namespace
public static CreateTag ( FluidConnector c, FluidNamespace f_namespace, string name, string description, bool indexed ) : FluidTag
c FluidConnector
f_namespace FluidNamespace
name string
description string
indexed bool
리턴 FluidTag

GetTag() 공개 정적인 메소드

Returns an object reference to the tag with the specified name in the specified namespace
public static GetTag ( FluidConnector c, FluidNamespace f_namespace, string name, bool returnDescription ) : FluidTag
c FluidConnector
f_namespace FluidNamespace
name string
returnDescription bool
리턴 FluidTag

GetTagInformation() 공개 메소드

Loads the ID, description and index of the tag (gets the tags of the fluiddb/tag object)
public GetTagInformation ( ) : void
리턴 void

GetValue() 공개 메소드

Returns the value of the tag as a string
public GetValue ( FluidDBGUID objectID ) : string
objectID FluidDBGUID
리턴 string

GetValue() 공개 메소드

Returns the tag value as a string, must use this method if value is stored with a custom content type
public GetValue ( FluidDBGUID objectID, string contentType ) : string
objectID FluidDBGUID
contentType string
리턴 string