Class BaseModelProvider
Inheritance
System.Object
BaseModelProvider
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Xbim.IO.MemoryModel.dll
Syntax
public abstract class BaseModelProvider : IModelProvider
Properties
|
Improve this Doc
View Source
Capabilities
Declaration
public abstract StoreCapabilities Capabilities { get; }
Property Value
|
Improve this Doc
View Source
EntityFactoryResolver
Declaration
public Func<XbimSchemaVersion, IEntityFactory> EntityFactoryResolver { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Close(IModel)
Declaration
public abstract void Close(IModel model)
Parameters
Type |
Name |
Description |
IModel |
model |
|
|
Improve this Doc
View Source
Create(XbimSchemaVersion, String)
Declaration
public abstract IModel Create(XbimSchemaVersion ifcVersion, string path)
Parameters
Returns
|
Improve this Doc
View Source
Create(XbimSchemaVersion, XbimStoreType)
Declaration
public abstract IModel Create(XbimSchemaVersion ifcVersion, XbimStoreType storageType)
Parameters
Returns
|
Improve this Doc
View Source
GetFactory(XbimSchemaVersion)
Declaration
protected IEntityFactory GetFactory(XbimSchemaVersion type)
Parameters
Returns
|
Improve this Doc
View Source
GetLocation(IModel)
Declaration
public abstract string GetLocation(IModel model)
Parameters
Type |
Name |
Description |
IModel |
model |
|
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
GetXbimSchemaVersion(String)
Declaration
public abstract XbimSchemaVersion GetXbimSchemaVersion(string modelPath)
Parameters
Type |
Name |
Description |
System.String |
modelPath |
|
Returns
|
Improve this Doc
View Source
Open(Stream, StorageType, XbimSchemaVersion, XbimModelType, XbimDBAccess, ReportProgressDelegate, Int32)
Declaration
public abstract IModel Open(Stream data, StorageType dataType, XbimSchemaVersion schema, XbimModelType modelType, XbimDBAccess accessMode = XbimDBAccess.Read, ReportProgressDelegate progDelegate = null, int codePageOverride = -1)
Parameters
Returns
|
Improve this Doc
View Source
Open(String, XbimSchemaVersion, Nullable<Double>, ReportProgressDelegate, XbimDBAccess, Int32)
Declaration
public abstract IModel Open(string path, XbimSchemaVersion schema, double? ifcDatabaseSizeThreshHold = null, ReportProgressDelegate progDelegate = null, XbimDBAccess accessMode = XbimDBAccess.Read, int codePageOverride = -1)
Parameters
Returns
|
Improve this Doc
View Source
Persist(IModel, String, ReportProgressDelegate)
Declaration
public abstract void Persist(IModel model, string fileName, ReportProgressDelegate progDelegate = null)
Parameters
Implements