DbSyncColumnDescription::Type Property

Gets or sets the data type of the column.

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

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

Property Value

Type: System::String
The data type of the column.

ExceptionCondition
ArgumentNullException

value is a nullptr.

ArgumentException

value is empty.

The properties Type and Size are used together to specify variable-length data types. For example, in SQL Server a column of type varchar(256) is represented by setting Type = "varchar" and Size = "256".

Show: