Class ImportOptions
Options for importing ingest containers.
Inheritance
System.Object
ImportOptions
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 ImportOptions
Properties
CollectionName
Name of the collection when CreateCollection is set to true.
Mandatory if CreateCollection is true.
Declaration
public string CollectionName { get; set; }
Property Value
|
System.String
|
CreateCollection
Indicates if a collection of the imported contents should be created.
Declaration
public bool CreateCollection { get; set; }
Property Value
|
System.Boolean
|
NotifyProgress
Indicates of progress should be shown to user.
Declaration
public bool NotifyProgress { get; set; }
Property Value
|
System.Boolean
|
Methods
FromJson(String)
Declaration
public static ImportOptions FromJson(string data)
Parameters
|
System.String
data
|
Returns
|
ImportOptions
|
ToJson()
Declaration
public string ToJson()
Returns
|
System.String
|