Class SesameHttpProtocolConnector
Connector for connecting to a Store that supports the Sesame 2.0 HTTP Communication protocol.
Inheritance
System.Object
SesameHttpProtocolConnector
Implements
System.IDisposable
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)
Namespace: VDS.RDF.Storage
Assembly: dotNetRDF.dll
Syntax
public class SesameHttpProtocolConnector : SesameHttpProtocolVersion6Connector, IAsyncQueryableStorage, IAsyncStorageProvider, IConfigurationSerializable, IUpdateableStorage, IQueryableStorage, IStorageProvider, IStorageCapabilities, IDisposable
Remarks
Acts as a synonym for whatever the latest version of the Sesame HTTP Protocol that is supported by dotNetRDF might be. Currently this is Version 6 which includes SPARQL Update support (Sesame 2.4+ required).
Constructors
| Improve this Doc View SourceSesameHttpProtocolConnector(String, String)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolConnector(string baseUri, string storeID)
Parameters
Type | Name | Description |
---|---|---|
System.String | baseUri | Base Uri of the Store. |
System.String | storeID | Store ID. |
SesameHttpProtocolConnector(String, String, IWebProxy)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolConnector(string baseUri, string storeID, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
System.String | baseUri | Base Uri of the Store. |
System.String | storeID | Store ID. |
System.Net.IWebProxy | proxy | Proxy Server. |
SesameHttpProtocolConnector(String, String, String, String)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolConnector(string baseUri, string storeID, string username, string password)
Parameters
Type | Name | Description |
---|---|---|
System.String | baseUri | Base Uri of the Store. |
System.String | storeID | Store ID. |
System.String | username | Username to use for requests that require authentication. |
System.String | password | Password to use for requests that require authentication. |
SesameHttpProtocolConnector(String, String, String, String, IWebProxy)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolConnector(string baseUri, string storeID, string username, string password, IWebProxy proxy)
Parameters
Type | Name | Description |
---|---|---|
System.String | baseUri | Base Uri of the Store. |
System.String | storeID | Store ID. |
System.String | username | Username to use for requests that require authentication. |
System.String | password | Password to use for requests that require authentication. |
System.Net.IWebProxy | proxy | Proxy Server. |
Implements
System.IDisposable