FileProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FileProperties() |
Initializes a new instance of the FileProperties class. |
FileProperties(DateTime, Int64, Nullable<DateTime>, String, String) |
Initializes a new instance of the FileProperties class. |
FileProperties()
- Source:
- FileProperties.cs
Initializes a new instance of the FileProperties class.
public FileProperties ();
Public Sub New ()
Applies to
FileProperties(DateTime, Int64, Nullable<DateTime>, String, String)
- Source:
- FileProperties.cs
Initializes a new instance of the FileProperties class.
public FileProperties (DateTime lastModified, long contentLength, DateTime? creationTime = default, string contentType = default, string fileMode = default);
new Microsoft.Azure.Batch.Protocol.Models.FileProperties : DateTime * int64 * Nullable<DateTime> * string * string -> Microsoft.Azure.Batch.Protocol.Models.FileProperties
Public Sub New (lastModified As DateTime, contentLength As Long, Optional creationTime As Nullable(Of DateTime) = Nothing, Optional contentType As String = Nothing, Optional fileMode As String = Nothing)
Parameters
- lastModified
- DateTime
The time at which the file was last modified.
- contentLength
- Int64
The length of the file.
- contentType
- String
The content type of the file.
- fileMode
- String
The file mode attribute in octal format.