Gets or sets the the name of the default command serialization provider.

Namespace:  Endeca.Data.Configuration
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
[ConfigurationPropertyAttribute("defaultProvider", DefaultValue = "Default")]
[TypeConverterAttribute(typeof(WhiteSpaceTrimStringConverter))]
[StringValidatorAttribute(MinLength = )]
public string DefaultProvider { get; set; }
Visual Basic (Declaration)
<ConfigurationPropertyAttribute("defaultProvider", DefaultValue := "Default")> _
<TypeConverterAttribute(GetType(WhiteSpaceTrimStringConverter))> _
<StringValidatorAttribute(MinLength := )> _
Public Property DefaultProvider As String
Visual C++
[ConfigurationPropertyAttribute(L"defaultProvider", DefaultValue = L"Default")]
[TypeConverterAttribute(typeof(WhiteSpaceTrimStringConverter))]
[StringValidatorAttribute(MinLength = )]
public:
property String^ DefaultProvider {
	String^ get ();
	void set (String^ value);
}

See Also