TypeSchema Class

Definition

Represents the structure, or schema, of an object type.

public ref class TypeSchema sealed : System::Web::UI::Design::IDataSourceSchema
public sealed class TypeSchema : System.Web.UI.Design.IDataSourceSchema
type TypeSchema = class
    interface IDataSourceSchema
Public NotInheritable Class TypeSchema
Implements IDataSourceSchema
Inheritance
TypeSchema
Implements

Remarks

The TypeSchema class provides information about a particular class, given an instance of that class. For example, given a DataSet object, a GridView object, or an instance of a custom class that you create, the methods and properties provide information about the class from which the object derives. It does not provide information about the specific instance, but about the class.

The TypeSchema class is used by custom control designers to assist in preparing sample data for previewing custom controls.

Constructors

TypeSchema(Type)

Creates a new instance of the TypeSchema class using the provided Type object.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
GetViews()

Gets an array of schema descriptors for views into a data source.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also