Class StardogV2Server
Management connection for Stardog 2.* servers.
Inheritance
StardogV2Server
Inherited Members
Namespace: VDS.RDF.Storage.Management
Assembly: dotNetRdf.dll
Syntax
public class StardogV2Server : StardogV1Server, IAsyncStorageServer, IConfigurationSerializable, IStorageServer, IDisposable
Constructors
| Edit this page View SourceStardogV2Server(string)
Creates a new connection to a Stardog Server.
Declaration
public StardogV2Server(string baseUri)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
StardogV2Server(string, IWebProxy)
Creates a new connection to a Stardog Server.
Declaration
public StardogV2Server(string baseUri, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
IWebProxy | proxy | Proxy Server. |
StardogV2Server(string, string, string)
Creates a new connection to a Stardog Server.
Declaration
public StardogV2Server(string baseUri, string username, string password)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | username | Username. |
string | password | Password. |
StardogV2Server(string, string, string, IWebProxy)
Creates a new connection to a Stardog Server.
Declaration
public StardogV2Server(string baseUri, string username, string password, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | username | Username. |
string | password | Password. |
IWebProxy | proxy | Proxy Server. |
Methods
| Edit this page View SourceGetStore(string)
Gets a provider for the Store with the given ID.
Declaration
public override IStorageProvider GetStore(string storeId)
Parameters
Type | Name | Description |
---|---|---|
string | storeId | Store ID. |
Returns
Type | Description |
---|---|
IStorageProvider |
Overrides
| Edit this page View SourceGetStore(string, AsyncStorageCallback, object)
Gets a database from the server.
Declaration
public override void GetStore(string storeId, AsyncStorageCallback callback, object state)
Parameters
Type | Name | Description |
---|---|---|
string | storeId | Store ID. |
AsyncStorageCallback | callback | Callback. |
object | state | State to pass to the callback. |