Box.V2.Managers.BoxMetadataManager.GetMetadata C# (CSharp) Метод

GetMetadata() приватный Метод

private GetMetadata ( Uri hostUri, string id, string scope, string template ) : object>>.Task
hostUri System.Uri
id string
scope string
template string
Результат object>>.Task
        private async Task<Dictionary<string, object>> GetMetadata(Uri hostUri, string id, string scope, string template)
        {
            BoxRequest request = new BoxRequest(hostUri, string.Format(Constants.MetadataPathString, id, scope, template))
                .Method(RequestMethod.Get);
            IBoxResponse<Dictionary<string, object>> response = await ToResponseAsync<Dictionary<string, object>>(request).ConfigureAwait(false);

            return response.ResponseObject;
        }