Class FileFieldDTO
Represents model for operations on File Field.
Inheritance
System.Object
FileFieldDTO
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: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class FileFieldDTO
Properties
| Improve this Doc View SourceField
Gets or sets field that is associated with the file. Should have ArtifactId or Name.
Declaration
public FileField Field { get; set; }
Property Value
Type | Description |
---|---|
FileField |
FileName
Gets or sets the name of the file.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FileStream
Gets or sets the filestream of the field file.
Declaration
public Stream FileStream { get; set; }
Property Value
Type | Description |
---|---|
System.IO.Stream |
ObjectRef
Gets or sets a reference to the object that contains or will contain the file. Should have ArtifactId set.
Declaration
public Artifact ObjectRef { get; set; }
Property Value
Type | Description |
---|---|
Artifact |
UploadedFileGuid
Gets or sets the GUID used to identify the uploaded file in temprorary storage.
Declaration
public Guid? UploadedFileGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |