-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to set permissions when retrieving SAS-based URL
- Loading branch information
Ron DeFreitas
committed
Sep 14, 2015
1 parent
3c1e1b2
commit ce50208
Showing
5 changed files
with
35 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using Microsoft.WindowsAzure.Storage.Blob; | ||
|
||
namespace AzureBlobFileSystem | ||
{ | ||
/// <summary> | ||
/// Specifies the set of possible permissions for a shared access policy. | ||
/// This mirrors the flags available in the Azure Storage Client Library | ||
/// </summary> | ||
[Flags] | ||
public enum SasPermissionFlags | ||
{ | ||
None = 0, | ||
Read = 1, | ||
Write = 2, | ||
Delete = 4, | ||
List = 8, | ||
} | ||
} |