Transform.InputTypes Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets an array of types that are valid inputs to the LoadInput(Object) method of the current Transform object.
public:
abstract property cli::array <Type ^> ^ InputTypes { cli::array <Type ^> ^ get(); };
public abstract Type[] InputTypes { get; }
member this.InputTypes : Type[]
Public MustOverride ReadOnly Property InputTypes As Type()
Property Value
An array of valid input types for the current Transform object; you can pass only objects of one of these types to the LoadInput(Object) method of the current Transform object.
Remarks
The array returned by the InputTypes property must contain at least one element because every Transform object must accept at least one type as valid input.
A Transform object typically accepts one or more of the following types as input: Stream, XmlDocument, or XmlNodeList.