Show / Hide Table of Contents

    Class SyncGroupSchemaTable

    Properties of table in sync group schema.

    Inheritance
    Object
    SyncGroupSchemaTable
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Sql.dll
    Syntax
    public class SyncGroupSchemaTable

    Constructors

    SyncGroupSchemaTable()

    Initializes a new instance of the SyncGroupSchemaTable class.

    Declaration
    public SyncGroupSchemaTable ();

    SyncGroupSchemaTable(IList<SyncGroupSchemaTableColumn>, String)

    Initializes a new instance of the SyncGroupSchemaTable class.

    Declaration
    public SyncGroupSchemaTable (System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncGroupSchemaTableColumn> columns = null, string quotedName = null);
    Parameters
    IList<SyncGroupSchemaTableColumn> columns

    List of columns in sync group schema.

    String quotedName

    Quoted name of sync group schema table.

    Properties

    Columns

    Gets or sets list of columns in sync group schema.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="columns")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.SyncGroupSchemaTableColumn> Columns { get; set; }
    Property Value
    IList<SyncGroupSchemaTableColumn>

    QuotedName

    Gets or sets quoted name of sync group schema table.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="quotedName")]
    public string QuotedName { get; set; }
    Property Value
    String

    Back to top Azure SDK for Net