Click or drag to resize

BoundaryDataXmlBridge Class

Bridge for saving and reading boundary data to/from xml.

This will only store the boundary data component.

Inheritance Hierarchy
System.Object
  DHI.Mike1D.Generic.GenericXmlBridge<BoundaryData>
    DHI.Mike1D.BoundaryModule.BoundaryDataXmlBridge

Namespace:  DHI.Mike1D.BoundaryModule
Assembly:  DHI.Mike1D.BoundaryModule (in DHI.Mike1D.BoundaryModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public class BoundaryDataXmlBridge : GenericXmlBridge<BoundaryData>

The BoundaryDataXmlBridge type exposes the following members.

Constructors
  NameDescription
Public methodBoundaryDataXmlBridge
Constructor
Top
Properties
  NameDescription
Public propertyData
DataAccess component being written to/from
(Inherited from GenericXmlBridge<TDataAccess>.)
Public propertyDataVersion
Version of data being read. Only applicable when reading data.
(Inherited from GenericXmlBridge<TDataAccess>.)
Public propertyFilePath
FilePath specifying the name of the persistance storage
(Overrides GenericXmlBridge<TDataAccess>.FilePath.)
Public propertyKnownTypes
List of known types used for reading/writing
(Inherited from GenericXmlBridge<TDataAccess>.)
Public propertySurrogate
Data contract surrogate to handle if certain types are to be serialized in special ways and when deserialized object needs to be connected in a way that the serializer can not do automatically. Per default this is set to a SerializerSurrogate object.
(Inherited from GenericXmlBridge<TDataAccess>.)
Public propertyXmlWriterSettings
Get/Set XmlWriterSettings in case xml output needs custom formatting This does not affect xml content, only formatting of the xml.
(Inherited from GenericXmlBridge<TDataAccess>.)
Top
Methods
  NameDescription
Protected methodCreateSerializer
Create serializer
(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOpen(IDiagnostics)
Opens the file in FilePath and Read data from xml file into the DataAccess component.

The xml must inlude data access versioning info. Input read using this method must be written using one of the Save methods.

The FilePath must have been set to a valid xml file.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodOpen(Stream, IDiagnostics)
Open data stored in stream

The xml must inlude data access versioning info. Input read using this method must be written using one of the Save methods.

The FilePath must still have been set to a valid folder, to get relative paths in the setup right.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodOpen(XmlReader, IDiagnostics)
Reads the DataAccess component from XmlReader.

The xml must inlude data access versioning info. Input read using this method must be written using one of the Save methods.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodSave()
Saves the DataAccess component to file, using its connection property.

The output inludes data access versioning info. Output stored using this method can be read again using the Open method.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodSave(Stream)
Saves the DataAccess component to file, using its connection property.

The output inludes data access versioning info. Output stored using this method can be read again using the Open method.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodSave(XmlWriter)
Writes the DataAccess component to XmlWriter.

The output inludes data access versioning info. Output stored using this method can be read again using the Open method.

(Inherited from GenericXmlBridge<TDataAccess>.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
See Also