Class StardogV2Server
Management connection for Stardog 2.* servers.
Inheritance
System.Object
StardogV2Server
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VDS.RDF.Storage.Management
Assembly: dotNetRDF.dll
Syntax
public class StardogV2Server : StardogV1Server, IAsyncStorageServer, IConfigurationSerializable, IStorageServer, IDisposable
Constructors
| Improve this Doc View SourceStardogV2Server(String)
Creates a new connection to a Stardog Server.
Declaration
public StardogV2Server(string baseUri)
Parameters
Type | Name | Description |
---|---|---|
System.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 |
---|---|---|
System.String | baseUri | Base Uri of the Server. |
System.Net.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 |
---|---|---|
System.String | baseUri | Base Uri of the Server. |
System.String | username | Username. |
System.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 |
---|---|---|
System.String | baseUri | Base Uri of the Server. |
System.String | username | Username. |
System.String | password | Password. |
System.Net.IWebProxy | proxy | Proxy Server. |
Methods
| Improve this Doc View SourceGetStore(String)
Gets a provider for the Store with the given ID.
Declaration
public override IStorageProvider GetStore(string storeID)
Parameters
Type | Name | Description |
---|---|---|
System.String | storeID | Store ID. |
Returns
Type | Description |
---|---|
IStorageProvider |
Overrides
| Improve this Doc 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 |
---|---|---|
System.String | storeID | Store ID. |
AsyncStorageCallback | callback | Callback. |
System.Object | state | State to pass to the callback. |
Overrides
Implements
System.IDisposable