Condividi tramite


ProjectFileProperties Constructors

Definition

Overloads

ProjectFileProperties()

Initializes a new instance of the ProjectFileProperties class.

ProjectFileProperties(String, String, Nullable<DateTimeOffset>, String, Nullable<Int64>)

Initializes a new instance of the ProjectFileProperties class.

ProjectFileProperties()

Initializes a new instance of the ProjectFileProperties class.

public ProjectFileProperties ();
Public Sub New ()

Applies to

ProjectFileProperties(String, String, Nullable<DateTimeOffset>, String, Nullable<Int64>)

Initializes a new instance of the ProjectFileProperties class.

public ProjectFileProperties (string extension = default, string filePath = default, DateTimeOffset? lastModified = default, string mediaType = default, long? size = default);
new Microsoft.Azure.Management.DataMigration.Models.ProjectFileProperties : string * string * Nullable<DateTimeOffset> * string * Nullable<int64> -> Microsoft.Azure.Management.DataMigration.Models.ProjectFileProperties
Public Sub New (Optional extension As String = Nothing, Optional filePath As String = Nothing, Optional lastModified As Nullable(Of DateTimeOffset) = Nothing, Optional mediaType As String = Nothing, Optional size As Nullable(Of Long) = Nothing)

Parameters

extension
String

Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

filePath
String

Relative path of this file resource. This property can be set when creating or updating the file resource.

lastModified
Nullable<DateTimeOffset>

Modification DateTime.

mediaType
String

File content type. This property can be modified to reflect the file content type.

size
Nullable<Int64>

File size.

Applies to