/// <summary> /// Reads service properties from a stream. /// </summary> /// <param name="inputStream">The stream from which to read the service properties.</param> /// <returns>The service properties stored in the stream.</returns> public static Task <ServiceProperties> ReadServicePropertiesAsync(Stream inputStream, CancellationToken token) { return(HttpResponseParsers.ReadServicePropertiesAsync(inputStream, token)); }