Esempio n. 1
0
        public async Task StartUploadAsync_RequestObject()
        {
            // Snippet: StartUploadAsync(Empty,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            Empty request = new Empty();
            // Make the request
            UploadRef response = await streetViewPublishServiceClient.StartUploadAsync(request);

            // End snippet
        }
Esempio n. 2
0
        public async Task BatchDeletePhotosAsync()
        {
            // Snippet: BatchDeletePhotosAsync(IEnumerable<string>,CallSettings)
            // Additional: BatchDeletePhotosAsync(IEnumerable<string>,CancellationToken)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            IEnumerable <string> photoIds = new List <string>();
            // Make the request
            BatchDeletePhotosResponse response = await streetViewPublishServiceClient.BatchDeletePhotosAsync(photoIds);

            // End snippet
        }
Esempio n. 3
0
        public async Task CreatePhotoAsync()
        {
            // Snippet: CreatePhotoAsync(Photo,CallSettings)
            // Additional: CreatePhotoAsync(Photo,CancellationToken)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            Photo photo = new Photo();
            // Make the request
            Photo response = await streetViewPublishServiceClient.CreatePhotoAsync(photo);

            // End snippet
        }
Esempio n. 4
0
        public async Task DeletePhotoAsync()
        {
            // Snippet: DeletePhotoAsync(string,CallSettings)
            // Additional: DeletePhotoAsync(string,CancellationToken)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            string photoId = "";
            // Make the request
            await streetViewPublishServiceClient.DeletePhotoAsync(photoId);

            // End snippet
        }
Esempio n. 5
0
        public async Task GetPhotoAsync()
        {
            // Snippet: GetPhotoAsync(string,PhotoView,CallSettings)
            // Additional: GetPhotoAsync(string,PhotoView,CancellationToken)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            string    photoId = "";
            PhotoView view    = PhotoView.Basic;
            // Make the request
            Photo response = await streetViewPublishServiceClient.GetPhotoAsync(photoId, view);

            // End snippet
        }
Esempio n. 6
0
        public async Task ListPhotosAsync_RequestObject()
        {
            // Snippet: ListPhotosAsync(ListPhotosRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            ListPhotosRequest request = new ListPhotosRequest
            {
                View   = PhotoView.Basic,
                Filter = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListPhotosResponse, Photo> response =
                streetViewPublishServiceClient.ListPhotosAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Photo item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListPhotosResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Photo item in page)
                {
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int          pageSize   = 10;
            Page <Photo> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (Photo item in singlePage)
            {
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
Esempio n. 7
0
        public async Task CreatePhotoAsync_RequestObject()
        {
            // Snippet: CreatePhotoAsync(CreatePhotoRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            CreatePhotoRequest request = new CreatePhotoRequest
            {
                Photo = new Photo(),
            };
            // Make the request
            Photo response = await streetViewPublishServiceClient.CreatePhotoAsync(request);

            // End snippet
        }
Esempio n. 8
0
        public async Task BatchDeletePhotosAsync_RequestObject()
        {
            // Snippet: BatchDeletePhotosAsync(BatchDeletePhotosRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchDeletePhotosRequest request = new BatchDeletePhotosRequest
            {
                PhotoIds = { },
            };
            // Make the request
            BatchDeletePhotosResponse response = await streetViewPublishServiceClient.BatchDeletePhotosAsync(request);

            // End snippet
        }
Esempio n. 9
0
        public async Task DeletePhotoAsync_RequestObject()
        {
            // Snippet: DeletePhotoAsync(DeletePhotoRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            DeletePhotoRequest request = new DeletePhotoRequest
            {
                PhotoId = "",
            };
            // Make the request
            await streetViewPublishServiceClient.DeletePhotoAsync(request);

            // End snippet
        }
Esempio n. 10
0
        public async Task GetPhotoAsync_RequestObject()
        {
            // Snippet: GetPhotoAsync(GetPhotoRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = await StreetViewPublishServiceClient.CreateAsync();

            // Initialize request argument(s)
            GetPhotoRequest request = new GetPhotoRequest
            {
                PhotoId = "",
                View    = PhotoView.Basic,
            };
            // Make the request
            Photo response = await streetViewPublishServiceClient.GetPhotoAsync(request);

            // End snippet
        }