BernieApp.UWP.Controls.StreamUriResolver.UriToStreamAsync C# (CSharp) Метод

UriToStreamAsync() публичный Метод

public UriToStreamAsync ( Uri uri ) : IAsyncOperation
uri Uri
Результат IAsyncOperation
        public IAsyncOperation<IInputStream> UriToStreamAsync(Uri uri)
        {
            if (uri == null)
            {
                throw new Exception();
            }
            string path = uri.AbsolutePath;

            // Because of the signature of the this method, it can't use await, so we 
            // call into a seperate helper method that can use the C# await pattern.
            return GetContent(path).AsAsyncOperation();
        }