Gets or sets the unique name of the query. This value cannot contain whitespace or period characters.

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

Syntax

C#
[ConfigurationPropertyAttribute("name", IsRequired = true)]
[StringValidatorAttribute(InvalidCharacters = ". ")]
public string Name { get; set; }
Visual Basic (Declaration)
<ConfigurationPropertyAttribute("name", IsRequired := True)> _
<StringValidatorAttribute(InvalidCharacters := ". ")> _
Public Property Name As String
Visual C++
[ConfigurationPropertyAttribute(L"name", IsRequired = true)]
[StringValidatorAttribute(InvalidCharacters = L". ")]
public:
property String^ Name {
	String^ get ();
	void set (String^ value);
}

See Also