4 writes to args
mscorlib (4)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (4)
930this.args = args; 1088args = IOUtil.ReadArgs(input); 1097args = returnA; 1107args = (Object[])returnA[arrayPosition++];
7 references to args
mscorlib (7)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (7)
1056sout.WriteInt32(args.Length); 1057for (int i=0; i<args.Length; i++) 1059IOUtil.WriteWithCode(argTypes[i], args[i], sout); 1138return new MethodResponse(methodCallMessage, handlerObject, new BinaryMethodReturnMessage(returnValue, args, exception, (LogicalCallContext)callContext, (Object[])properties)); 1168BinaryUtil.NVTraceI("args Length", args.Length); 1169for (int i=0; i<args.Length; i++) 1171BinaryUtil.NVTraceI("arg["+i+"]", args[i]);