C# Class AllegroGraphCSharpClient.Catalog

Catalog class handles all interaction with the catalog object Please note that if you use wcf, you will always need to pass the url and potentially username/password Otherwise you can set it using the constructor
Inheritance: ICatalog
Datei anzeigen Open project: franzinc/agraph-csharp-client

Public Methods

Method Description
InitializeCatalogClass ( string url, string username, string password ) : bool

Initializes the catalog class

createTripleStore ( string name, string url ) : bool

Initialize new triple store

deleteTripleStore ( string storeName, string url ) : bool
federateTripleStores ( string name, List storeNames, string url ) : bool

Federate the triple store, untested at this time

getRepository ( string name, string url ) : Repository
getUrl ( ) : string

return url for the service

legalizeName ( string name, string url ) : string
listTripleStores ( string url ) : List

List the triple stores at the current url

Method Details

InitializeCatalogClass() public method

Initializes the catalog class
public InitializeCatalogClass ( string url, string username, string password ) : bool
url string
username string
password string
return bool

createTripleStore() public method

Initialize new triple store
public createTripleStore ( string name, string url ) : bool
name string
url string
return bool

deleteTripleStore() public method

public deleteTripleStore ( string storeName, string url ) : bool
storeName string
url string
return bool

federateTripleStores() public method

Federate the triple store, untested at this time
public federateTripleStores ( string name, List storeNames, string url ) : bool
name string
storeNames List
url string
return bool

getRepository() public method

public getRepository ( string name, string url ) : Repository
name string
url string
return Repository

getUrl() public method

return url for the service
public getUrl ( ) : string
return string

legalizeName() public method

public legalizeName ( string name, string url ) : string
name string
url string
return string

listTripleStores() public method

List the triple stores at the current url
public listTripleStores ( string url ) : List
url string
return List