StorageItemProperties Class
Definition
Provides access to the content-related properties of an item (like a file or folder).
public class StorageItemProperties
Constructors
| Name | Description |
|---|---|
| StorageItemProperties | No summary available. |
StorageItemProperties Constructor
public StorageItemProperties(Nullable<ulong> size, Nullable<DateTimeOffset> dateCreated, Nullable<DateTimeOffset> dateModified)
Parameters
size Nullable<ulong>
dateCreated Nullable<DateTimeOffset>
dateModified Nullable<DateTimeOffset>
Properties
| Name | Description |
|---|---|
| DateCreated | Gets the date and time that the current folder was created. |
| DateModified | Gets the date and time of the last time the file was modified. |
| Size | Gets the size of the file in bytes. |
DateCreated Property
Gets the date and time that the current folder was created.
public Nullable<DateTimeOffset> DateCreated { get; set; }
Remarks
Can be null if property is not available.
DateModified Property
Gets the date and time of the last time the file was modified.
public Nullable<DateTimeOffset> DateModified { get; set; }
Remarks
Can be null if property is not available.
Size Property
Gets the size of the file in bytes.
public Nullable<ulong> Size { get; set; }
Remarks
Can be null if property is not available.