Hello,
I would like to know if there is an alternative to the follwoing function for .NET that allows to create a link.
CreateSharedLinkArg createSharedLinkArg = new CreateSharedLinkArg(path.ToString(), false, new PendingUploadMode().AsFile);
pathLinkMetadata = await dbx.Sharing.CreateSharedLinkAsync(createSharedLinkArg);
I know about:
sharedLinkMetadata = await dbx.Sharing.CreateSharedLinkWithSettingsAsync(path.ToString());
but it doesn't seem to handle the PendingUploadMode.
Cheers!