public virtual Response <DeletedSite> Get(string deletedSiteId, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(deletedSiteId, nameof(deletedSiteId)); using var scope = _deletedSiteGlobalClientDiagnostics.CreateScope("DeletedSiteCollection.Get"); scope.Start(); try { var response = _deletedSiteGlobalRestClient.GetDeletedWebApp(Id.SubscriptionId, deletedSiteId, cancellationToken); if (response.Value == null) { throw _deletedSiteGlobalClientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new DeletedSite(Client, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual Response <DeletedSite> Get(CancellationToken cancellationToken = default) { using var scope = _clientDiagnostics.CreateScope("DeletedSite.Get"); scope.Start(); try { var response = _globalRestClient.GetDeletedWebApp(Id.SubscriptionId, Id.Name, cancellationToken); if (response.Value == null) { throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); } return(Response.FromValue(new DeletedSite(this, response.Value), response.GetRawResponse())); } catch (Exception e) { scope.Failed(e); throw; } }