C# Class Adf.Base.Domain.DescriptorPropertyParser

This class represents parsing operations for properties of type Descriptor.
Inheritance: IPropertyParser
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
GetCollection ( Type targetType, bool includeEmpty, IEnumerable items = null ) : ICollection
GetCollection ( object target, bool includeEmpty, IEnumerable items = null ) : ICollection

Gets the collection of the property info for the specified target object. An indicator is also supplied to indicate whether a empty descriptor will be included or not.

IsEmpty ( object target ) : bool

Checks whether the specified object is empty or not.

IsEqual ( object compare, object to ) : bool

Checks whether the two specified Objects are equal or not.

IsParsable ( Type type ) : bool

Indicates whether the specified Type is parsable or not.

SetValue ( object instance, PropertyInfo pi, object newvalue, CultureInfo culture ) : void

Sets the new value for a specific property on an object.

Private Methods

Method Description
GetCollection ( object target, IEnumerable items = null ) : IEnumerable

Gets the collection of the property info for the specified target object.

Method Details

GetCollection() public method

public GetCollection ( Type targetType, bool includeEmpty, IEnumerable items = null ) : ICollection
targetType System.Type
includeEmpty bool
items IEnumerable
return ICollection

GetCollection() public method

Gets the collection of the property info for the specified target object. An indicator is also supplied to indicate whether a empty descriptor will be included or not.
public GetCollection ( object target, bool includeEmpty, IEnumerable items = null ) : ICollection
target object The object.
includeEmpty bool The indicator to indicate whether empty will be included or not.
items IEnumerable
return ICollection

IsEmpty() public method

Checks whether the specified object is empty or not.
public IsEmpty ( object target ) : bool
target object The Object to be checked for null or empty.
return bool

IsEqual() public method

Checks whether the two specified Objects are equal or not.
public IsEqual ( object compare, object to ) : bool
compare object The first supplied object.
to object The second supplied object.
return bool

IsParsable() public method

Indicates whether the specified Type is parsable or not.
public IsParsable ( Type type ) : bool
type System.Type The supplied .
return bool

SetValue() public method

Sets the new value for a specific property on an object.
Unable to convert the new value to the specified property. null reference is not accept as a valid argument.
public SetValue ( object instance, PropertyInfo pi, object newvalue, CultureInfo culture ) : void
instance object Target object to set property at.
pi System.Reflection.PropertyInfo Property info for the property to set.
newvalue object Value for the property.
culture System.Globalization.CultureInfo
return void