Class UploadFileInfo
Defines the upload file info
Inheritance
System.Object
UploadFileInfo
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: Quark.CMSAdapters.Core.Data
Assembly: Quark.CMSAdapters.Core.dll
Syntax
public class UploadFileInfo
Constructors
UploadFileInfo(String, String, SaveOptions, List<ReferenceNode>)
Initializes a new instance of the UploadFileInfo class.
Declaration
public UploadFileInfo(string urn, string filePath, SaveOptions saveOptions, List<ReferenceNode> referenceNodes)
Parameters
Type | Name | Description |
---|---|---|
System.String | urn | The urn. |
System.String | filePath | The file path. |
SaveOptions | saveOptions | The save options. |
System.Collections.Generic.List<ReferenceNode> | referenceNodes | The reference nodes. |
Properties
FilePath
Gets or sets the file path.
Declaration
public string FilePath { get; set; }
Property Value
Type | Description |
---|---|
System.String | The file path. |
FileRenditions
Gets or sets the file renditions.
Declaration
public List<RenditionInfo> FileRenditions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<RenditionInfo> | The file renditions. |
ReferenceNodes
Gets or sets the reference nodes.
Declaration
public List<ReferenceNode> ReferenceNodes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ReferenceNode> | The reference nodes. |
SaveOptions
Gets or sets the save options.
Declaration
public SaveOptions SaveOptions { get; set; }
Property Value
Type | Description |
---|---|
SaveOptions | The save options. |
Urn
Gets or sets the urn.
Declaration
public string Urn { get; set; }
Property Value
Type | Description |
---|---|
System.String | The urn. |