Méthode | Description | |
---|---|---|
Read ( |
Uses the XmlReader given to read an xml stream and instantiates IBusinessObjects for each bo node in the stream. The resultant IEnumerable can only be iterated once, so convert it to a list or array (using ToList() or ToArray()) if you want to iterate through it more than once (this includes using Count() etc). The XmlReader is closed once you have iterated.
|
Méthode | Description | |
---|---|---|
SetupProperty ( IBusinessObject bo, string propertyName, string propertyValue ) : void |
Sets up a property using InitialiseProp so no rules are checked or events are fired.
|
public Read ( |
||
xmlReader | The reader to read from | |
Résultat | IEnumerable |
protected SetupProperty ( IBusinessObject bo, string propertyName, string propertyValue ) : void | ||
bo | IBusinessObject | The bo to set the property value on |
propertyName | string | The name of the property to set |
propertyValue | string | The value to set |
Résultat | void |