Class StardogV3Connector
A Stardog Connector for connecting to Stardog version 3.* servers.
Inheritance
Implements
Inherited Members
Namespace: VDS.RDF.Storage
Assembly: dotNetRdf.dll
Syntax
public class StardogV3Connector : StardogV2Connector, IAsyncTransactionalStorage, IConfigurationSerializable, ITransactionalStorage, IReasoningQueryableStorage, IUpdateableStorage, IQueryableStorage, IStorageProvider, IAsyncUpdateableStorage, IAsyncQueryableStorage, IAsyncStorageProvider, IStorageCapabilities, IDisposable
Constructors
| Improve this Doc View SourceStardogV3Connector(string, string, HttpClientHandler)
Creates a new connection to a Stardog store.
Declaration
public StardogV3Connector(string baseUri, string kbId, HttpClientHandler httpClientHandler)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base URI of the server. |
string | kbId | Knowledge base ID. |
System.Net.Http.HttpClientHandler | httpClientHandler | Handler to configure outgoing HTTP requests. |
StardogV3Connector(string, string, IWebProxy)
Creates a new connection to a Stardog Store.
Declaration
public StardogV3Connector(string baseUri, string kbID, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | kbID | Knowledge Base (i.e. Database) ID. |
System.Net.IWebProxy | proxy | Proxy Server. |
StardogV3Connector(string, string, string, string, IWebProxy)
Creates a new connection to a Stardog Store.
Declaration
public StardogV3Connector(string baseUri, string kbID, string username, string password, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | kbID | Knowledge Base (i.e. Database) ID. |
string | username | Username. |
string | password | Password. |
System.Net.IWebProxy | proxy | Proxy Server. |
StardogV3Connector(string, string, string, string)
Creates a new connection to a Stardog Store.
Declaration
public StardogV3Connector(string baseUri, string kbID, string username, string password)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | kbID | Knowledge Base (i.e. Database) ID. |
string | username | Username. |
string | password | Password. |
StardogV3Connector(string, string)
Creates a new connection to a Stardog Store.
Declaration
public StardogV3Connector(string baseUri, string kbID)
Parameters
Type | Name | Description |
---|---|---|
string | baseUri | Base Uri of the Server. |
string | kbID | Knowledge Base (i.e. Database) ID. |
Properties
| Improve this Doc View SourceReasoning
Gets/Sets the reasoning mode to use for queries.
Declaration
public override StardogReasoningMode Reasoning { get; set; }
Property Value
Type | Description |
---|---|
StardogReasoningMode |
Overrides
Methods
| Improve this Doc View SourceAddStardogHeaders(HttpRequestMessage)
Adds Stardog specific request headers.
Declaration
protected override void AddStardogHeaders(HttpRequestMessage request)
Parameters
Type | Name | Description |
---|---|---|
System.Net.Http.HttpRequestMessage | request |
Overrides
| Improve this Doc View SourceAddStardogHeaders(HttpWebRequest)
Adds Stardog specific request headers.
Declaration
[Obsolete("This method is obsolete and will be removed in a future release")]
protected override void AddStardogHeaders(HttpWebRequest request)
Parameters
Type | Name | Description |
---|---|---|
System.Net.HttpWebRequest | request |