C# Class ArrayMatcher, simplexml

Afficher le fichier Open project: ngallagher/simplexml Class Usage Examples

Méthodes publiques

Méthode Description
ArrayMatcher ( Matcher primary ) : System

Constructor for the ArrayTransform object. This is used to match array types to their respective transform using the ArrayTransform object. This will use a comma separated list of tokens to populate the array.

Match ( Class, type ) : Transform,

This is used to match a Transform based on the array component type of an object to be transformed. This will attempt to match the transform using the fully qualified class name of the array component type. If a transform can not be found then this method will throw an exception.

MatchArray ( Class, entry ) : Transform,

This is used to match a Transform based on the array component type of an object to be transformed. This will attempt to match the transform using the fully qualified class name of the array component type. If a transform can not be found then this method will throw an exception.

Method Details

ArrayMatcher() public méthode

Constructor for the ArrayTransform object. This is used to match array types to their respective transform using the ArrayTransform object. This will use a comma separated list of tokens to populate the array.
public ArrayMatcher ( Matcher primary ) : System
primary Matcher /// this is the primary matcher to be used ///
Résultat System

Match() public méthode

This is used to match a Transform based on the array component type of an object to be transformed. This will attempt to match the transform using the fully qualified class name of the array component type. If a transform can not be found then this method will throw an exception.
public Match ( Class, type ) : Transform,
type Class, /// this is the array to find the transform for ///
Résultat Transform,

MatchArray() public méthode

This is used to match a Transform based on the array component type of an object to be transformed. This will attempt to match the transform using the fully qualified class name of the array component type. If a transform can not be found then this method will throw an exception.
public MatchArray ( Class, entry ) : Transform,
entry Class, /// this is the array component type to be matched ///
Résultat Transform,