Class ImportOptions
Options for importing ingest containers.
Inheritance
ImportOptions
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
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
Indicates if a collection of the imported contents should be created.
Declaration
[JsonProperty("createCollection", Required = Required.Always)]
public bool CreateCollection { get; set; }
Property Value
Indicates of progress should be shown to user.
Declaration
[JsonProperty("notifyProgress", Required = Required.Always)]
public bool NotifyProgress { get; set; }
Property Value
Methods
Declaration
public static ImportOptions FromJson(string data)
Parameters
Returns