GetUserApplicationNames() 공개 메소드

Gets all application's names that were installed by the authenticated user.
public GetUserApplicationNames ( ) : Task>
리턴 Task>
예제 #1
0
        public async Task GetUserApplicationNames()
        {
            var result = await marketplace.GetUserApplicationNames();

            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode);
            EnqueueTestComplete();
        }