From d46247724a5467a71269f2bbb80811f7c1838178 Mon Sep 17 00:00:00 2001 From: JoshLove-msft <54595583+JoshLove-msft@users.noreply.github.com> Date: Mon, 26 Jul 2021 13:54:20 -0700 Subject: [PATCH] Improve docs for BinaryData.ToString() (#22880) --- sdk/core/System.Memory.Data/src/BinaryData.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/core/System.Memory.Data/src/BinaryData.cs b/sdk/core/System.Memory.Data/src/BinaryData.cs index acdd2ba87787..b720e21415ee 100644 --- a/sdk/core/System.Memory.Data/src/BinaryData.cs +++ b/sdk/core/System.Memory.Data/src/BinaryData.cs @@ -202,6 +202,11 @@ public static BinaryData FromObjectAsJson( /// /// Converts the value of this instance to a string using UTF-8. /// + /// + /// If the underlying object is a JSON string, calling will retain the wrapping double quotes in the + /// resulting string. If you want to deserialize the JSON string to a string, thereby removing the wrapping double quotes, + /// call instead. + /// /// /// A string from the value of this instance, using UTF-8 to decode the bytes. ///