DynamicDataExtensions.GetDefaultValues Method

Definition

Gets the default values.

Overloads

GetDefaultValues(IDataSource)

Gets the collection of the default values for the specified data source.

GetDefaultValues(INamingContainer)

Gets the collection of the default values for the specified data control.

GetDefaultValues(IDataSource)

Gets the collection of the default values for the specified data source.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ GetDefaultValues(System::Web::UI::IDataSource ^ dataSource);
public static System.Collections.Generic.IDictionary<string,object> GetDefaultValues (this System.Web.UI.IDataSource dataSource);
static member GetDefaultValues : System.Web.UI.IDataSource -> System.Collections.Generic.IDictionary<string, obj>
<Extension()>
Public Function GetDefaultValues (dataSource As IDataSource) As IDictionary(Of String, Object)

Parameters

dataSource
IDataSource

The data source for which to get the default values.

Returns

The collection of default values that are associated with the IDataSource object.

Remarks

The collection of default values is set by using the SetMetaTable or EnableDynamicData methods.

Applies to

GetDefaultValues(INamingContainer)

Gets the collection of the default values for the specified data control.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ GetDefaultValues(System::Web::UI::INamingContainer ^ control);
public static System.Collections.Generic.IDictionary<string,object> GetDefaultValues (this System.Web.UI.INamingContainer control);
static member GetDefaultValues : System.Web.UI.INamingContainer -> System.Collections.Generic.IDictionary<string, obj>
<Extension()>
Public Function GetDefaultValues (control As INamingContainer) As IDictionary(Of String, Object)

Parameters

control
INamingContainer

The data control for which to get the default values.

Returns

The collection of default values that are associated with the INamingContainer object.

Remarks

The collection of default values is set by using the SetMetaTable or EnableDynamicData methods.

Applies to