You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changed the following types from DataTransferProperty<string[]> to string[]
ShareFileStorageResourceOptions.ContentEncoding
ShareFileStorageResourceOptions.ContentLanguage
Changed the following types from DataTransferProperty<IDictionary<string, string>> to IDictionary<string, string>
ShareFileStorageResourceOptions.FileMetadata
ShareFileStorageResourceOptions.DirectoryMetadata
Changed the following types from DataTransferProperty<DateTimeOffset?> to DateTimeOffset?
ShareFileStorageResourceOptions.FileCreatedOn
ShareFileStorageResourceOptions.FileLastWrittenOn
ShareFileStorageResourceOptions.FileChangedOn
Changed ShareDirectoryClient.StartUploadDirectoryAsync to ShareDirectoryClient.UploadDirectoryAsync and added a required waitUntil parameter.
Changed ShareDirectoryClient.StartDownloadToDirectoryAsync to ShareDirectoryClient.DownloadToDirectoryAsync and added a required waitUntil parameter.
Several refactors to ShareFilesStorageResourceProvider:
Removed nested delegates GetStorageSharedKeyCredential, GetTokenCredential, and GetAzureSasCredential.
Removed default constructor.
Removed constructor overload for GetTokenCredential entirely.
Changed constructor overloads for GetStorageSharedKeyCredential and GetAzureSasCredential to use Func. These callbacks are also now async, returning a ValueTask, and the readOnly parameter was removed.
Changed FromFile and FromDirectory to async, returning a ValueTask, and renamed to FromFileAsync and FromDirectoryAsync respectively.
Changed FromClient methods to static methods.
Bugs Fixed
Fixed File Attributes with ReadOnly does not transfer / copy correctly bug #2167