Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
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)
Syntax
'Declaration
Public Property UnquotedName As String
Get
Set
'Usage
Dim instance As DbSyncColumnDescription
Dim value As String
value = instance.UnquotedName
instance.UnquotedName = value
public string UnquotedName { get; set; }
public:
property String^ UnquotedName {
String^ get ();
void set (String^ value);
}
member UnquotedName : string with get, set
function get UnquotedName () : String
function set UnquotedName (value : String)
Property Value
Type: System.String
The name of the column without database-specific delimiters.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | value is a null reference (Nothing in Visual Basic). |
| ArgumentException | value is empty. |
Remarks
Use this property to get or set the column name without delimiters, such as []. To get the column name with delimiters, use QuotedName.