Show / Hide Table of Contents

Class StardogV1Server

Management connection for Stardog 1.* servers.

Inheritance
System.Object
BaseHttpConnector
BaseStardogServer
StardogV1Server
StardogV2Server
Implements
IAsyncStorageServer
IConfigurationSerializable
IStorageServer
System.IDisposable
Inherited Members
BaseStardogServer._baseUri
BaseStardogServer._adminUri
BaseStardogServer.HasCredentials
BaseStardogServer.IOBehaviour
BaseStardogServer.ListStores()
BaseStardogServer.GetDefaultTemplate(string)
BaseStardogServer.GetAvailableTemplates(string)
BaseStardogServer.CreateStore(IStoreTemplate)
BaseStardogServer.DeleteStore(string)
BaseStardogServer.ListStores(AsyncStorageCallback, object)
BaseStardogServer.ListStoresAsync(CancellationToken)
BaseStardogServer.GetDefaultTemplate(string, AsyncStorageCallback, object)
BaseStardogServer.GetDefaultTemplateAsync(string, CancellationToken)
BaseStardogServer.GetAvailableTemplates(string, AsyncStorageCallback, object)
BaseStardogServer.GetAvailableTemplatesAsync(string, CancellationToken)
BaseStardogServer.CreateStore(IStoreTemplate, AsyncStorageCallback, object)
BaseStardogServer.CreateStoreAsync(IStoreTemplate, CancellationToken)
BaseStardogServer.DeleteStore(string, AsyncStorageCallback, object)
BaseStardogServer.DeleteStoreAsync(string, CancellationToken)
BaseStardogServer.CreateAdminRequest(string, string, string, Dictionary<string, string>)
BaseStardogServer.CreateAdminRequest(string, string, HttpMethod, Dictionary<string, string>)
BaseStardogServer.SerializeConfiguration(ConfigurationSerializationContext)
BaseHttpConnector.HttpClient
BaseHttpConnector.HttpClientHandler
BaseHttpConnector.SetProxy(string)
BaseHttpConnector.SetProxy(Uri)
BaseHttpConnector.Proxy
BaseHttpConnector.ClearProxy()
BaseHttpConnector.SetProxyCredentials(string, string)
BaseHttpConnector.SetProxyCredentials(string, string, string)
BaseHttpConnector.ProxyCredentials
BaseHttpConnector.ClearProxyCredentials()
BaseHttpConnector.Timeout
BaseHttpConnector.SerializeStandardConfig(INode, ConfigurationSerializationContext)
BaseHttpConnector.SetCredentials(string, string)
BaseHttpConnector.Dispose()
BaseHttpConnector.Dispose(bool)
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Storage.Management
Assembly: dotNetRdf.dll
Syntax
public class StardogV1Server : BaseStardogServer, IAsyncStorageServer, IConfigurationSerializable, IStorageServer, IDisposable

Constructors

| Improve this Doc View Source

StardogV1Server(string, HttpClientHandler)

Creates a new connection to a Stardog server.

Declaration
public StardogV1Server(string baseUri, HttpClientHandler httpClientHandler)
Parameters
Type Name Description
string baseUri

Base URI of the server.

System.Net.Http.HttpClientHandler httpClientHandler

Handler to configure outgoing HTTP requests.

| Improve this Doc View Source

StardogV1Server(string, IWebProxy)

Creates a new connection to a Stardog Server.

Declaration
public StardogV1Server(string baseUri, IWebProxy proxy)
Parameters
Type Name Description
string baseUri

Base Uri of the Server.

System.Net.IWebProxy proxy

Proxy Server.

| Improve this Doc View Source

StardogV1Server(string, string, string, IWebProxy)

Creates a new connection to a Stardog Server.

Declaration
public StardogV1Server(string baseUri, string username, string password, IWebProxy proxy)
Parameters
Type Name Description
string baseUri

Base Uri of the Server.

string username

Username.

string password

Password.

System.Net.IWebProxy proxy

Proxy Server.

| Improve this Doc View Source

StardogV1Server(string, string, string)

Creates a new connection to a Stardog Server.

Declaration
public StardogV1Server(string baseUri, string username, string password)
Parameters
Type Name Description
string baseUri

Base Uri of the Server.

string username

Username.

string password

Password.

| Improve this Doc View Source

StardogV1Server(string)

Creates a new connection to a Stardog Server.

Declaration
public StardogV1Server(string baseUri)
Parameters
Type Name Description
string baseUri

Base Uri of the Server.

Methods

| Improve this Doc View Source

GetStore(string, AsyncStorageCallback, object)

Gets a database from the server.

Declaration
public override void GetStore(string storeId, AsyncStorageCallback callback, object state)
Parameters
Type Name Description
string storeId

Store ID.

AsyncStorageCallback callback

Callback.

System.Object state

State to pass to the callback.

Overrides
BaseStardogServer.GetStore(string, AsyncStorageCallback, object)
| Improve this Doc View Source

GetStore(string)

Gets a provider for the Store with the given ID.

Declaration
public override IStorageProvider GetStore(string storeId)
Parameters
Type Name Description
string storeId

Store ID.

Returns
Type Description
IStorageProvider
Overrides
BaseStardogServer.GetStore(string)
| Improve this Doc View Source

GetStoreAsync(string, CancellationToken)

Gets a store asynchronously.

Declaration
public override Task<IAsyncStorageProvider> GetStoreAsync(string storeId, CancellationToken cancellationToken)
Parameters
Type Name Description
string storeId

Store ID.

System.Threading.CancellationToken cancellationToken
Returns
Type Description
System.Threading.Tasks.Task<TResult><IAsyncStorageProvider>
Overrides
BaseStardogServer.GetStoreAsync(string, CancellationToken)

Implements

IAsyncStorageServer
IConfigurationSerializable
IStorageServer
System.IDisposable

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • StardogV1Server(string, HttpClientHandler)
    • StardogV1Server(string, IWebProxy)
    • StardogV1Server(string, string, string, IWebProxy)
    • StardogV1Server(string, string, string)
    • StardogV1Server(string)
  • Methods
    • GetStore(string, AsyncStorageCallback, object)
    • GetStore(string)
    • GetStoreAsync(string, CancellationToken)
  • Implements
  • Extension Methods
Back to top Generated by DocFX