1 write to Arguments
Microsoft.AspNetCore.SignalR.Common (1)
Protocol\HubMethodInvocationMessage.cs (1)
55
Arguments
= arguments;
20 references to Arguments
Microsoft.AspNetCore.Components.Server (6)
src\aspnetcore\src\SignalR\common\Protocols.MessagePack\src\Protocol\MessagePackHubProtocolWorker.cs (6)
441
if (message.
Arguments
is null)
447
writer.WriteArrayHeader(message.
Arguments
.Length);
448
foreach (var arg in message.
Arguments
)
466
if (message.
Arguments
is null)
472
writer.WriteArrayHeader(message.
Arguments
.Length);
473
foreach (var arg in message.
Arguments
)
Microsoft.AspNetCore.SignalR.Common (6)
Protocol\HubMethodInvocationMessage.cs (6)
104
args =
Arguments
== null ? string.Empty : string.Join(", ",
Arguments
.Select(a => a?.ToString()));
120
return $"InvocationMessage {{ {nameof(InvocationId)}: \"{InvocationId}\", {nameof(Target)}: \"{Target}\", {nameof(
Arguments
)}: [ {args} ], {nameof(StreamIds)}: [ {streamIds} ] }}";
159
args =
Arguments
== null ? string.Empty : string.Join(", ",
Arguments
.Select(a => a?.ToString()));
175
return $"StreamInvocation {{ {nameof(InvocationId)}: \"{InvocationId}\", {nameof(Target)}: \"{Target}\", {nameof(
Arguments
)}: [ {args} ], {nameof(StreamIds)}: [ {streamIds} ] }}";
Microsoft.AspNetCore.SignalR.Core (6)
Internal\DefaultHubDispatcher.cs (6)
333
if (!await IsHubMethodAuthorized(scope.ServiceProvider, connection, descriptor, hubMethodInvocationMessage.
Arguments
, hub))
362
var arguments = hubMethodInvocationMessage.
Arguments
;
748
else if (hubMethodInvocationMessage.
Arguments
?.Length > hubInvocationArgumentPointer &&
749
(hubMethodInvocationMessage.
Arguments
[hubInvocationArgumentPointer] == null ||
750
descriptor.OriginalParameterTypes[parameterPointer].IsAssignableFrom(hubMethodInvocationMessage.
Arguments
[hubInvocationArgumentPointer]?.GetType())))
753
arguments[parameterPointer] = hubMethodInvocationMessage.
Arguments
[hubInvocationArgumentPointer];
Microsoft.AspNetCore.SignalR.Protocols.Json (2)
Protocol\JsonHubProtocol.cs (2)
645
WriteArguments(message.
Arguments
, writer);
655
WriteArguments(message.
Arguments
, writer);