Property | Type | Description | |
---|---|---|---|
GetPropValue | string |
Method | Description | |
---|---|---|
ChangeType ( object value, |
Returns an Object with the specified Type and whose value is equivalent to the specified object. Swiped from http://aspalliance.com/852_CodeSnip_ConvertChangeType_Wrapper_that_Handles_Nullable_Types This method exists as a workaround to System.Convert.ChangeType(Object, Type) which does not handle nullables as of version 2.0 (2.0.50727.42) of the .NET Framework. The idea is that this method will be deleted once Convert.ChangeType is updated in a future version of the .NET Framework to handle nullable types, so we want this to behave as closely to Convert.ChangeType as possible. This method was written by Peter Johnson at: http://aspalliance.com/author.aspx?uId=1026. |
|
CreateFromICommand ( ICommand cmd ) : |
||
ResolveInternals ( ) : ICommand |
Method | Description | |
---|---|---|
DeserializeProperties ( ICommand target ) : ICommand |
Deserialize the properties of the current XmlChain / XmlCommand and try to set the writeable properties of the output ICommand
|
|
ExcludeProperty ( |
Don't discover properties with XmlIgnoreAttribute, nor the reserved 'Name' property.
|
|
IsChainRequired ( |
||
SerializeProperties ( ICommand cmd, |
Investigate writeable, IConvertible properties of ICommand 'cmd' and write them into the XML-serializable properties of 'target'
|
Method | Description | |
---|---|---|
GetPropValue ( string key ) : string |
public static ChangeType ( object value, |
||
value | object | An Object that implements the IConvertible interface. |
conversionType | The Type to which value is to be converted. | |
return | object |
public static CreateFromICommand ( ICommand cmd ) : |
||
cmd | ICommand | |
return |
protected DeserializeProperties ( ICommand target ) : ICommand | ||
target | ICommand | |
return | ICommand |
protected static ExcludeProperty ( |
||
pi | ||
return | bool |
protected static IsChainRequired ( |
||
pi | ||
return | bool |
public abstract ResolveInternals ( ) : ICommand | ||
return | ICommand |
protected static SerializeProperties ( ICommand cmd, |
||
cmd | ICommand | |
target | ||
return | void |