コード例 #1
0
        public async Task <Response <ServerCommunicationLinkData> > GetAsync(string subscriptionId, string resourceGroupName, string serverName, string communicationLinkName, CancellationToken cancellationToken = default)
        {
            if (subscriptionId == null)
            {
                throw new ArgumentNullException(nameof(subscriptionId));
            }
            if (resourceGroupName == null)
            {
                throw new ArgumentNullException(nameof(resourceGroupName));
            }
            if (serverName == null)
            {
                throw new ArgumentNullException(nameof(serverName));
            }
            if (communicationLinkName == null)
            {
                throw new ArgumentNullException(nameof(communicationLinkName));
            }

            using var message = CreateGetRequest(subscriptionId, resourceGroupName, serverName, communicationLinkName);
            await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);

            switch (message.Response.Status)
            {
            case 200:
            {
                ServerCommunicationLinkData value = default;
                using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);

                value = ServerCommunicationLinkData.DeserializeServerCommunicationLinkData(document.RootElement);
                return(Response.FromValue(value, message.Response));
            }
コード例 #2
0
        ServerCommunicationLinkResource IOperationSource <ServerCommunicationLinkResource> .CreateResult(Response response, CancellationToken cancellationToken)
        {
            using var document = JsonDocument.Parse(response.ContentStream);
            var data = ServerCommunicationLinkData.DeserializeServerCommunicationLinkData(document.RootElement);

            return(new ServerCommunicationLinkResource(_client, data));
        }