Not supported

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public IDataObjectStore CreateStore(
	string storeName,
	Dictionary<string, string> namespaceMappings = null,
	Nullable<bool> optimisticLockingEnabled = null,
	Nullable<PersistenceType> persistenceType = null,
	string updateGraph = null,
	string versionTrackingGraph = null
)
Visual Basic
Public Function CreateStore ( 
	storeName As String,
	Optional namespaceMappings As Dictionary(Of String, String) = Nothing,
	Optional optimisticLockingEnabled As Nullable(Of Boolean) = Nothing,
	Optional persistenceType As Nullable(Of PersistenceType) = Nothing,
	Optional updateGraph As String = Nothing,
	Optional versionTrackingGraph As String = Nothing
) As IDataObjectStore
Visual C++
public:
virtual IDataObjectStore^ CreateStore(
	String^ storeName, 
	Dictionary<String^, String^>^ namespaceMappings = nullptr, 
	Nullable<bool> optimisticLockingEnabled = nullptr, 
	Nullable<PersistenceType> persistenceType = nullptr, 
	String^ updateGraph = nullptr, 
	String^ versionTrackingGraph = nullptr
) sealed
F#
abstract CreateStore : 
        storeName : string * 
        ?namespaceMappings : Dictionary<string, string> * 
        ?optimisticLockingEnabled : Nullable<bool> * 
        ?persistenceType : Nullable<PersistenceType> * 
        ?updateGraph : string * 
        ?versionTrackingGraph : string 
(* Defaults:
        let _namespaceMappings = defaultArg namespaceMappings null
        let _optimisticLockingEnabled = defaultArg optimisticLockingEnabled null
        let _persistenceType = defaultArg persistenceType null
        let _updateGraph = defaultArg updateGraph null
        let _versionTrackingGraph = defaultArg versionTrackingGraph null
*)
-> IDataObjectStore 
override CreateStore : 
        storeName : string * 
        ?namespaceMappings : Dictionary<string, string> * 
        ?optimisticLockingEnabled : Nullable<bool> * 
        ?persistenceType : Nullable<PersistenceType> * 
        ?updateGraph : string * 
        ?versionTrackingGraph : string 
(* Defaults:
        let _namespaceMappings = defaultArg namespaceMappings null
        let _optimisticLockingEnabled = defaultArg optimisticLockingEnabled null
        let _persistenceType = defaultArg persistenceType null
        let _updateGraph = defaultArg updateGraph null
        let _versionTrackingGraph = defaultArg versionTrackingGraph null
*)
-> IDataObjectStore 

Parameters

storeName
Type: System..::..String

[Missing <param name="storeName"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

namespaceMappings (Optional)
Type: System.Collections.Generic..::..Dictionary<(Of <(<'String, String>)>)>

[Missing <param name="namespaceMappings"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

optimisticLockingEnabled (Optional)
Type: System..::..Nullable<(Of <(<'Boolean>)>)>

[Missing <param name="optimisticLockingEnabled"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

persistenceType (Optional)
Type: System..::..Nullable<(Of <(<'PersistenceType>)>)>

[Missing <param name="persistenceType"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

updateGraph (Optional)
Type: System..::..String

[Missing <param name="updateGraph"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

versionTrackingGraph (Optional)
Type: System..::..String

[Missing <param name="versionTrackingGraph"/> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

Return Value

Type: IDataObjectStore

[Missing <returns> documentation for "M:BrightstarDB.Client.SparqlDataObjectContext.CreateStore(System.String,System.Collections.Generic.Dictionary{System.String,System.String},System.Nullable{System.Boolean},System.Nullable{BrightstarDB.Storage.PersistenceType},System.String,System.String)"]

Implements

IDataObjectContext..::..CreateStore(String, Dictionary<(Of <<'(String, String>)>>), Nullable<(Of <<'(Boolean>)>>), Nullable<(Of <<'(PersistenceType>)>>), String, String)

Exceptions

ExceptionCondition
System..::..NotSupportedExceptionraised if this method is invoked

See Also