Box.V2.Test.Integration.BoxSharedItemsManagerTestIntegration.SharedLink_LiveSession C# (CSharp) Method

SharedLink_LiveSession() private method

private SharedLink_LiveSession ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        public async Task SharedLink_LiveSession()
        {
            const string sharedLink = "https://app.box.com/s/70pecdxd6pvnd285rs4hqdp7zphgyqva";
            const string password = "demo1234";
            const string expectedId = "16894946307";

            var sharedItem = await _client.SharedItemsManager.SharedItemsAsync(sharedLink, sharedLinkPassword: password);

            Assert.AreEqual(expectedId, sharedItem.Id);
        }
    }
BoxSharedItemsManagerTestIntegration