C# Class ExoModel.ModelSource

Utility class that supports accessing the value of a property along a static or instance source path.
Afficher le fichier Open project: vc3/ExoModel Class Usage Examples

Private Properties

Свойство Type Description
InitializeFromModelPath void
InitializeFromTypeAndPath bool
ModelSource System

Méthodes publiques

Méthode Description
GetFormattedValue ( ModelInstance root ) : string

Gets the formatted value of the property for the current source path.

GetFormattedValue ( ModelInstance root, object &rawValue ) : string

Gets the formatted value of the property for the current source path.

GetFormattedValue ( ModelInstance root, string format ) : string

Gets the formatted value of the property for the current source path.

GetFormattedValue ( ModelInstance root, string format, IFormatProvider provider, object &rawValue ) : string

Gets the formatted value of the property for the current source path.

GetFormattedValue ( ModelInstance root, string format, object &rawValue ) : string

Gets the formatted value of the property for the current source path.

GetList ( ModelInstance root ) : ModelInstanceList

Gets the ModelInstanceList defined by specified source path.

GetModelProperties ( ModelType root ) : IEnumerable

Walks the steps of the ModelSource

GetModelProperty ( ModelType root ) : ModelProperty

Fetches a ModelProperty based on the root ModelType

GetReference ( ModelInstance root ) : ModelInstance

Gets the ModelInstance defined by specified source path.

GetSource ( ModelInstance root ) : IModelPropertySource
GetSource ( ModelInstance root, Func whenNull ) : IModelPropertySource
GetValue ( ModelInstance root ) : object

Gets the underlying value of the property for the current source path.

HasValue ( ModelInstance root ) : bool

Determines whether the value of the property along the source path has a value or not.

If any value along the source path is null, false will be returned. If the source property is a list, false will be returned if the list is empty.

ModelSource ( ModelPath path ) : System

Creates a new ModelSource for the specified root type and path.

ModelSource ( ModelType rootType, string path ) : System

Creates a new ModelSource for the specified root type and path.

SetValue ( ModelInstance root, object value ) : bool
SetValue ( ModelInstance root, object value, Func whenNull ) : bool
ToString ( ) : string

Gets the string representation of the source path.

TryGetSource ( ModelType rootType, string path, ModelSource &source ) : bool

Attempts to create a new ModelSource for the specified root type and path.

TryGetSource ( ModelType rootType, string path, ModelSource &source, ModelProperty &sourceProperty ) : bool

Attempts to create a new ModelSource for the specified root type and path.

Private Methods

Méthode Description
InitializeFromModelPath ( ModelPath instancePath, string path, ModelProperty &sourceProperty ) : void

Initialize the source from a valid ModelPath

InitializeFromTypeAndPath ( ModelType rootType, string path, ModelProperty &sourceProperty ) : bool

Attempts to initialize a ModelSource with the specified root type and path.

ModelSource ( ) : System

Method Details

GetFormattedValue() public méthode

Gets the formatted value of the property for the current source path.
public GetFormattedValue ( ModelInstance root ) : string
root ModelInstance
Résultat string

GetFormattedValue() public méthode

Gets the formatted value of the property for the current source path.
public GetFormattedValue ( ModelInstance root, object &rawValue ) : string
root ModelInstance
rawValue object
Résultat string

GetFormattedValue() public méthode

Gets the formatted value of the property for the current source path.
public GetFormattedValue ( ModelInstance root, string format ) : string
root ModelInstance
format string The specific format to use
Résultat string

GetFormattedValue() public méthode

Gets the formatted value of the property for the current source path.
public GetFormattedValue ( ModelInstance root, string format, IFormatProvider provider, object &rawValue ) : string
root ModelInstance
format string
provider IFormatProvider
rawValue object
Résultat string

GetFormattedValue() public méthode

Gets the formatted value of the property for the current source path.
public GetFormattedValue ( ModelInstance root, string format, object &rawValue ) : string
root ModelInstance
format string
rawValue object
Résultat string

GetList() public méthode

Gets the ModelInstanceList defined by specified source path.
public GetList ( ModelInstance root ) : ModelInstanceList
root ModelInstance
Résultat ModelInstanceList

GetModelProperties() public méthode

Walks the steps of the ModelSource
public GetModelProperties ( ModelType root ) : IEnumerable
root ModelType The root type from which the property should be inferred
Résultat IEnumerable

GetModelProperty() public méthode

Fetches a ModelProperty based on the root ModelType
public GetModelProperty ( ModelType root ) : ModelProperty
root ModelType The root type from which the property should be inferred
Résultat ModelProperty

GetReference() public méthode

Gets the ModelInstance defined by specified source path.
public GetReference ( ModelInstance root ) : ModelInstance
root ModelInstance
Résultat ModelInstance

GetSource() public méthode

public GetSource ( ModelInstance root ) : IModelPropertySource
root ModelInstance
Résultat IModelPropertySource

GetSource() public méthode

public GetSource ( ModelInstance root, Func whenNull ) : IModelPropertySource
root ModelInstance
whenNull Func
Résultat IModelPropertySource

GetValue() public méthode

Gets the underlying value of the property for the current source path.
public GetValue ( ModelInstance root ) : object
root ModelInstance
Résultat object

HasValue() public méthode

Determines whether the value of the property along the source path has a value or not.
If any value along the source path is null, false will be returned. If the source property is a list, false will be returned if the list is empty.
public HasValue ( ModelInstance root ) : bool
root ModelInstance
Résultat bool

ModelSource() public méthode

Creates a new ModelSource for the specified root type and path.
public ModelSource ( ModelPath path ) : System
path ModelPath The source model path
Résultat System

ModelSource() public méthode

Creates a new ModelSource for the specified root type and path.
public ModelSource ( ModelType rootType, string path ) : System
rootType ModelType The root type name, which is required for instance paths
path string The source path, which is either an instance path or a static path
Résultat System

SetValue() public méthode

public SetValue ( ModelInstance root, object value ) : bool
root ModelInstance
value object
Résultat bool

SetValue() public méthode

public SetValue ( ModelInstance root, object value, Func whenNull ) : bool
root ModelInstance
value object
whenNull Func
Résultat bool

ToString() public méthode

Gets the string representation of the source path.
public ToString ( ) : string
Résultat string

TryGetSource() public static méthode

Attempts to create a new ModelSource for the specified root type and path.
public static TryGetSource ( ModelType rootType, string path, ModelSource &source ) : bool
rootType ModelType The root type name, which is required for instance paths
path string The source path, which is either an instance path or a static path
source ModelSource
Résultat bool

TryGetSource() public static méthode

Attempts to create a new ModelSource for the specified root type and path.
public static TryGetSource ( ModelType rootType, string path, ModelSource &source, ModelProperty &sourceProperty ) : bool
rootType ModelType The root type name, which is required for instance paths
path string The source path, which is either an instance path or a static path
source ModelSource
sourceProperty ModelProperty
Résultat bool