You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
privatestaticreadonlyFunc<string,string>NameNormalize= name =>CommonMethodNameTransforms.CamelCase(name.EndsWith(AsyncSuffix,StringComparison.OrdinalIgnoreCase)?name.Substring(0,name.Length-AsyncSuffix.Length):name);
63
73
64
74
/// <summary>
65
75
/// Initializes a new instance of the <see cref="CamelCaseTransformingDescriptor"/> class.
Copy file name to clipboardExpand all lines: src/Microsoft.ServiceHub.Framework/Reflection/ProxyBase.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ public static IClientProxy CreateProxy(object target, in ProxyInputs proxyInputs
79
79
(targetasIDisposable)?.Dispose();
80
80
}
81
81
82
-
thrownewNotImplementedException($"Unable to find a source generated proxy filling the specified requirements: {proxyInputs.Requirements}. Research the NativeAOT topic in the documentation at https://microsoft.github.io/vs-streamjsonrpc");
82
+
thrownewNotImplementedException($"Unable to find a source generated proxy for *local* services filling the specified requirements: {proxyInputs.Requirements}. Research the NativeAOT topic in the documentation at https://microsoft.github.io/vs-streamjsonrpc");
/// using <see cref="NerdbankMessagePackFormatter"/> (the <see href="https://github.com/AArnott/Nerdbank.MessagePack">Nerdbank.MessagePack serializer</see>).
82
86
/// </summary>
83
87
NerdbankMessagePack,
88
+
89
+
/// <summary>
90
+
/// Format messages with UTF-8 text for a human readable JSON representation using the <see cref="System.Text.Json.JsonSerializer"/> serializer.
0 commit comments