Search Results for

    Show / Hide Table of Contents

    Class ImportOptions

    Options for importing ingest containers.

    Inheritance
    object
    ImportOptions
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class ImportOptions

    Properties

    CollectionName

    Name of the collection when CreateCollection is set to true.
    Mandatory if CreateCollection is true.

    Declaration
    [JsonProperty("collectionName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string CollectionName { get; set; }
    Property Value
    string

    CreateCollection

    Indicates if a collection of the imported contents should be created.

    Declaration
    [JsonProperty("createCollection", Required = Required.Always)]
    public bool CreateCollection { get; set; }
    Property Value
    bool

    NotifyProgress

    Indicates of progress should be shown to user.

    Declaration
    [JsonProperty("notifyProgress", Required = Required.Always)]
    public bool NotifyProgress { get; set; }
    Property Value
    bool

    Methods

    FromJson(string)

    Declaration
    public static ImportOptions FromJson(string data)
    Parameters
    string data

    Returns
    ImportOptions

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX