Search Results for

    Show / Hide Table of Contents

    Class FileUploadResult

    File upload result.

    Inheritance
    object
    FileUploadResult
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Noxum.Nova.Cms.Client
    Assembly: Noxum.Nova.Cms.Client.dll
    Syntax
    public class FileUploadResult

    Properties

    Created

    File created or not.

    Declaration
    [JsonPropertyName("created")]
    public bool? Created { get; set; }
    Property Value
    Type Description
    bool?

    Extension

    Extension of the file.

    Declaration
    [JsonPropertyName("extension")]
    public string Extension { get; set; }
    Property Value
    Type Description
    string

    Guid

    File GUID.

    Declaration
    [JsonPropertyName("guid")]
    public Guid? Guid { get; set; }
    Property Value
    Type Description
    Guid?

    Size

    Size of the file in bytes.

    Declaration
    [JsonPropertyName("size")]
    public long Size { get; set; }
    Property Value
    Type Description
    long

    Token

    Token of the temporary file.

    Declaration
    [JsonPropertyName("token")]
    public string Token { get; set; }
    Property Value
    Type Description
    string
    In this article
    Back to top Version 6.1.0.31rc