Class SesameHttpProtocolVersion6Connector
Connector for connecting to a Store that supports the Sesame 2.0 HTTP Communication Protocol version 6 (i.e. includes SPARQL Update support).
Inheritance
System.Object
SesameHttpProtocolVersion6Connector
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 SesameHttpProtocolVersion6Connector : SesameHttpProtocolVersion5Connector, IAsyncQueryableStorage, IAsyncStorageProvider, IConfigurationSerializable, IUpdateableStorage, IQueryableStorage, IStorageProvider, IStorageCapabilities, IDisposable
Constructors
| Improve this Doc View SourceSesameHttpProtocolVersion6Connector(String, String)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolVersion6Connector(string baseUri, string storeID)
Parameters
Type | Name | Description |
---|---|---|
System.String | baseUri | Base Uri of the Store. |
System.String | storeID | Store ID. |
SesameHttpProtocolVersion6Connector(String, String, IWebProxy)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolVersion6Connector(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. |
SesameHttpProtocolVersion6Connector(String, String, String, String)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolVersion6Connector(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. |
SesameHttpProtocolVersion6Connector(String, String, String, String, IWebProxy)
Creates a new connection to a Sesame HTTP Protocol supporting Store.
Declaration
public SesameHttpProtocolVersion6Connector(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. |
Methods
| Improve this Doc View SourceUpdate(String)
Makes a SPARQL Update request to the Sesame server.
Declaration
public virtual void Update(string sparqlUpdate)
Parameters
Type | Name | Description |
---|---|---|
System.String | sparqlUpdate | SPARQL Update. |
Update(String, AsyncStorageCallback, Object)
Makes a SPARQL Update request to the Sesame server.
Declaration
public virtual void Update(string sparqlUpdate, AsyncStorageCallback callback, object state)
Parameters
Type | Name | Description |
---|---|---|
System.String | sparqlUpdate | SPARQL Update. |
AsyncStorageCallback | callback | Callback. |
System.Object | state | State to pass to the callback. |
Implements
System.IDisposable