BaseAsyncHttpConnector Class |
Namespace: VDS.RDF.Storage
The BaseAsyncHttpConnector type exposes the following members.
| Name | Description | |
|---|---|---|
| BaseAsyncHttpConnector | Initializes a new instance of the BaseAsyncHttpConnector class |
| Name | Description | |
|---|---|---|
| AsyncParentServer |
Gets the parent server (if any).
| |
| DeleteSupported |
Gets whether the Store supports Graph deletion via the DeleteGraph() method.
| |
| IOBehaviour |
Gets the IO Behaviour of the Store.
| |
| IsReadOnly |
Gets whether the Store is read only.
| |
| IsReady |
Indicates whether the Store is ready to accept requests.
| |
| ListGraphsSupported |
Gets whether the Store supports listing graphs via the ListGraphs() method.
| |
| ParentServer |
Gets the parent server (if any).
| |
| Password |
Password for accessing the Store.
(Inherited from BaseHttpConnector.) | |
| Proxy |
Gets/Sets a Proxy Server to be used.
(Inherited from BaseHttpConnector.) | |
| ProxyCredentials |
Gets/Sets Credentials to be used for Proxy Server.
(Inherited from BaseHttpConnector.) | |
| Timeout |
Gets/Sets the HTTP Timeouts used specified in milliseconds.
(Inherited from BaseHttpConnector.) | |
| UpdateSupported |
Gets whether the Store supports Triple level updates via the UpdateGraph() method.
| |
| Username |
Password for accessing the Store.
(Inherited from BaseHttpConnector.) |
| Name | Description | |
|---|---|---|
| ApplyRequestOptions |
Helper method which applies standard request options to the request, these currently include proxy settings and HTTP timeout.
(Inherited from BaseHttpConnector.) | |
| ClearProxy |
Clears any in-use credentials so subsequent requests will not use a proxy server.
(Inherited from BaseHttpConnector.) | |
| ClearProxyCredentials |
Clears the in-use proxy credentials so subsequent requests still use the proxy server but without credentials.
(Inherited from BaseHttpConnector.) | |
| DeleteGraph(String, AsyncStorageCallback, Object) |
Deletes a Graph from the Store.
| |
| DeleteGraph(Uri, AsyncStorageCallback, Object) |
Deletes a Graph from the Store.
| |
| DeleteGraphAsync |
Helper method for doing async delete operations, callers just need to provide an appropriately prepared HTTP request.
| |
| Dispose |
Disposes of the Store.
| |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| ListGraphs |
Lists the Graphs in the Store asynchronously.
| |
| LoadGraph(IGraph, String, AsyncStorageCallback, Object) |
Loads a Graph from the Store asynchronously.
| |
| LoadGraph(IGraph, Uri, AsyncStorageCallback, Object) |
Loads a Graph from the Store asynchronously.
| |
| LoadGraph(IRdfHandler, String, AsyncStorageCallback, Object) |
Loads a Graph from the Store asynchronously.
| |
| LoadGraph(IRdfHandler, Uri, AsyncStorageCallback, Object) |
Loads a Graph from the Store asynchronously.
| |
| LoadGraphAsync |
Helper method for doing async load operations, callers just need to provide an appropriately prepared HTTP request.
| |
| MakeRequestSequence |
Helper method for doing async operations where a sequence of HTTP requests must be run.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| SaveGraph |
Saves a Graph to the Store asynchronously.
| |
| SaveGraphAsync |
Helper method for doing async save operations, callers just need to provide an appropriately perpared HTTP requests and a RDF writer which will be used to write the data to the request body.
| |
| SerializeStandardConfig |
Helper method which adds standard configuration information (proxy and timeout settings) to serialized configuration.
(Inherited from BaseHttpConnector.) | |
| SetCredentials | (Inherited from BaseHttpConnector.) | |
| SetProxy(String) |
Sets a Proxy Server to be used.
(Inherited from BaseHttpConnector.) | |
| SetProxy(Uri) |
Sets a Proxy Server to be used.
(Inherited from BaseHttpConnector.) | |
| SetProxyCredentials(String, String) |
Sets Credentials to be used for Proxy Server.
(Inherited from BaseHttpConnector.) | |
| SetProxyCredentials(String, String, String) |
Sets Credentials to be used for Proxy Server.
(Inherited from BaseHttpConnector.) | |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| UpdateGraph(String, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object) |
Updates a Graph in the Store asynchronously.
| |
| UpdateGraph(Uri, IEnumerableTriple, IEnumerableTriple, AsyncStorageCallback, Object) |
Updates a Graph in the Store asynchronously.
| |
| UpdateGraphAsync |
Helper method for doing async update operations, callers just need to provide an appropriately prepared HTTP request and a RDF writer which will be used to write the data to the request body.
|
It is expected that most classes extending from this will also then implement IStorageProvider separately for their synchronous communication, this class purely provides partial helper implementations for the asynchronous communication.