Search Results for

    Show / Hide Table of Contents

    Class SchemaImportResult

    Result information of a schema import operation

    Inheritance
    System.Object
    SchemaImportResult
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class SchemaImportResult

    Properties

    ImportedSchemaCount

    Number of schemas imported

    Declaration
    public int ImportedSchemaCount { get; set; }
    Property Value
    System.Int32

    ImportedSchemaIds

    Ids of the schemas that were successfully imported

    Declaration
    public ICollection<string> ImportedSchemaIds { get; set; }
    Property Value
    System.Collections.Generic.ICollection<System.String>

    SkippedSchemaCount

    Number of schema skipped during import phase because they were already found in the system

    Declaration
    public int SkippedSchemaCount { get; set; }
    Property Value
    System.Int32

    SkippedSchemaIds

    Ids of the schemas that were not imported because already found in the system

    Declaration
    public ICollection<string> SkippedSchemaIds { get; set; }
    Property Value
    System.Collections.Generic.ICollection<System.String>

    TotalSchemaCount

    Total number of schemas requested to be imported

    Declaration
    public int TotalSchemaCount { get; set; }
    Property Value
    System.Int32

    Methods

    FromJson(String)

    Declaration
    public static SchemaImportResult FromJson(string data)
    Parameters
    System.String data

    Returns
    SchemaImportResult

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX