DbSyncColumnDescription::UnquotedName Property

Gets or sets the name of the column without database-specific delimiters.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

public:
property String^ UnquotedName {
	String^ get ();
	void set (String^ value);
}

Property Value

Type: System::String
The name of the column without database-specific delimiters.

ExceptionCondition
ArgumentNullException

value is a nullptr.

ArgumentException

value is empty.

Use this property to get or set the column name without delimiters, such as []. To get the column name with delimiters, use QuotedName.

Show: