DataPagerFieldCollection.CreateKnownType(Int32) Method
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.
Creates a default instance of the DataPagerField type that is identified by the provided index.
protected:
override System::Object ^ CreateKnownType(int index);
protected override object CreateKnownType (int index);
override this.CreateKnownType : int -> obj
Protected Overrides Function CreateKnownType (index As Integer) As Object
Parameters
- index
- Int32
The index of the DataPagerField type to create from the ordered list of types that are returned by the GetKnownTypes() method.
Returns
An object that represents an instance of a class that is derived from the DataPagerField class, according to the index provided.
Exceptions
The specified index is not in the recognized range.
Remarks
The CreateKnownType method is called internally by the DataPagerFieldCollection collection in its implementation of the IStateManager.LoadViewState method. The CreateKnownType method creates an instance of an object by using the type identified by the specified index
, which maps to one of the types returned by the GetKnownTypes method.