PossibleValues Property

MySQL Connector/Net

Returns the possible values for this parameter if this parameter is of type SET or ENUM. Returns null otherwise.

Namespace:  MySql.Data.MySqlClient
Assembly:  MySql.Data (in MySql.Data.dll) Version: 6.2.2.0

Syntax

C#
public IList PossibleValues { get; internal set; }
Visual Basic (Declaration)
Public Property PossibleValues As IList
Visual C++
public:
property IList^ PossibleValues {
	IList^ get ();
	void set (IList^ value);
}

See Also