示例#1
0
 public void BatchDeletePhotos()
 {
     // Snippet: BatchDeletePhotos(IEnumerable<string>,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     IEnumerable <string> photoIds = new List <string>();
     // Make the request
     BatchDeletePhotosResponse response = streetViewPublishServiceClient.BatchDeletePhotos(photoIds);
     // End snippet
 }
示例#2
0
 public void StartUpload_RequestObject()
 {
     // Snippet: StartUpload(Empty,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     Empty request = new Empty();
     // Make the request
     UploadRef response = streetViewPublishServiceClient.StartUpload(request);
     // End snippet
 }
示例#3
0
 public void CreatePhoto()
 {
     // Snippet: CreatePhoto(Photo,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     Photo photo = new Photo();
     // Make the request
     Photo response = streetViewPublishServiceClient.CreatePhoto(photo);
     // End snippet
 }
示例#4
0
 public void BatchUpdatePhotos()
 {
     // Snippet: BatchUpdatePhotos(IEnumerable<UpdatePhotoRequest>,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     IEnumerable <UpdatePhotoRequest> updatePhotoRequests = new List <UpdatePhotoRequest>();
     // Make the request
     BatchUpdatePhotosResponse response = streetViewPublishServiceClient.BatchUpdatePhotos(updatePhotoRequests);
     // End snippet
 }
示例#5
0
 public void UpdatePhoto()
 {
     // Snippet: UpdatePhoto(Photo,FieldMask,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     Photo     photo      = new Photo();
     FieldMask updateMask = new FieldMask();
     // Make the request
     Photo response = streetViewPublishServiceClient.UpdatePhoto(photo, updateMask);
     // End snippet
 }
示例#6
0
        public void DeletePhoto()
        {
            // Snippet: DeletePhoto(string,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
            // Initialize request argument(s)
            string photoId = "";

            // Make the request
            streetViewPublishServiceClient.DeletePhoto(photoId);
            // End snippet
        }
示例#7
0
 public void GetPhoto()
 {
     // Snippet: GetPhoto(string,PhotoView,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     string    photoId = "";
     PhotoView view    = PhotoView.Basic;
     // Make the request
     Photo response = streetViewPublishServiceClient.GetPhoto(photoId, view);
     // End snippet
 }
示例#8
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
        }
示例#9
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
        }
示例#10
0
 public void CreatePhoto_RequestObject()
 {
     // Snippet: CreatePhoto(CreatePhotoRequest,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     CreatePhotoRequest request = new CreatePhotoRequest
     {
         Photo = new Photo(),
     };
     // Make the request
     Photo response = streetViewPublishServiceClient.CreatePhoto(request);
     // End snippet
 }
示例#11
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
        }
示例#12
0
 public void BatchDeletePhotos_RequestObject()
 {
     // Snippet: BatchDeletePhotos(BatchDeletePhotosRequest,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     BatchDeletePhotosRequest request = new BatchDeletePhotosRequest
     {
         PhotoIds = { },
     };
     // Make the request
     BatchDeletePhotosResponse response = streetViewPublishServiceClient.BatchDeletePhotos(request);
     // End snippet
 }
示例#13
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
        }
示例#14
0
 public void GetPhoto_RequestObject()
 {
     // Snippet: GetPhoto(GetPhotoRequest,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     GetPhotoRequest request = new GetPhotoRequest
     {
         PhotoId = "",
         View    = PhotoView.Basic,
     };
     // Make the request
     Photo response = streetViewPublishServiceClient.GetPhoto(request);
     // End snippet
 }
示例#15
0
        public void DeletePhoto_RequestObject()
        {
            // Snippet: DeletePhoto(DeletePhotoRequest,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
            // Initialize request argument(s)
            DeletePhotoRequest request = new DeletePhotoRequest
            {
                PhotoId = "",
            };

            // Make the request
            streetViewPublishServiceClient.DeletePhoto(request);
            // End snippet
        }
示例#16
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
        }
示例#17
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
        }
示例#18
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
        }
示例#19
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
        }
示例#20
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
        }
示例#21
0
        public void ListPhotos()
        {
            // Snippet: ListPhotos(PhotoView,string,string,int?,CallSettings)
            // Create client
            StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
            // Initialize request argument(s)
            PhotoView view   = PhotoView.Basic;
            string    filter = "";
            // Make the request
            PagedEnumerable <ListPhotosResponse, Photo> response =
                streetViewPublishServiceClient.ListPhotos(view, filter);

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

            // Or iterate over pages (of server-defined size), performing one RPC per page
            foreach (ListPhotosResponse page in response.AsRawResponses())
            {
                // 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 = response.ReadPage(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
        }