hey everyone, i already can share a folder, but i need to change the permission exactly after i share it, what code refrence i should use ?, and how to implement it ?
You can set the access level directly in the AddMember you use with AddFolderMemberAsync in the first place:
https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_AddMember__ctor_1.htm
If you need to modify a member's access level after the fact though, you can use UpdateFolderMemberAsync:
https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_UpdateFolderMemberAsync_1.htm
Thanks Greg work like charm, you're Rock !!!