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
Implements
Inherited Members
Namespace: VDS.RDF.Storage
Assembly: dotNetRdf.Client.dll
Syntax
public class SesameHttpProtocolVersion6Connector : SesameHttpProtocolVersion5Connector, IAsyncQueryableStorage, IAsyncStorageProvider, IConfigurationSerializable, IUpdateableStorage, IQueryableStorage, IStorageProvider, IStorageCapabilities, IDisposable
  Constructors
| Edit this page 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 | 
|---|---|---|
| string | baseUri | Base Uri of the Store.  | 
      
| 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 | 
|---|---|---|
| string | baseUri | Base Uri of the Store.  | 
      
| string | storeID | Store ID.  | 
      
| 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 | 
|---|---|---|
| string | baseUri | Base Uri of the Store.  | 
      
| string | storeID | Store ID.  | 
      
| string | username | Username to use for requests that require authentication.  | 
      
| 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 | 
|---|---|---|
| string | baseUri | Base Uri of the Store.  | 
      
| string | storeID | Store ID.  | 
      
| string | username | Username to use for requests that require authentication.  | 
      
| string | password | Password to use for requests that require authentication.  | 
      
| IWebProxy | proxy | Proxy Server.  | 
      
Methods
| Edit this page View SourceUpdate(string)
Makes a SPARQL Update request to the Sesame server.
Declaration
public virtual void Update(string sparqlUpdate)
  Parameters
| Type | Name | Description | 
|---|---|---|
| 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 | 
|---|---|---|
| string | sparqlUpdate | SPARQL Update.  | 
      
| AsyncStorageCallback | callback | Callback.  | 
      
| object | state | State to pass to the callback.  |