Search Results for

    Show / Hide Table of Contents

    Class OutputDataBase

    Base class for the output detail dependent on the file format.

    Inheritance
    object
    OutputDataBase
    OutputDataAudio
    OutputDataDefault
    OutputDataDocument
    OutputDataImage
    OutputDataVector
    OutputDataVideo
    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
    [JsonConverter(typeof(JsonInheritanceConverter), new object[] { "kind" })]
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public abstract class OutputDataBase

    Properties

    FileExtension

    The extension of the file.

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

    FilePath

    The path where the file is stored.

    Declaration
    [JsonProperty("filePath", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    [Obsolete("No use case, information is internal")]
    public string FilePath { get; set; }
    Property Value
    string

    FileSizeInBytes

    The size of the file in bytes.

    Declaration
    [JsonProperty("fileSizeInBytes", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public long? FileSizeInBytes { get; set; }
    Property Value
    long?

    OriginalFileName

    The original filename of the file.

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

    Sha1Hash

    The SHA-1 hash of the file.

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

    Methods

    FromJson(string)

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

    Returns
    OutputDataBase

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX