4 writes to _map
mscorlib (4)
system\runtime\remoting\message.cs (4)
5239
_map
= _methodCachedData.MarshalResponseArgMap;
5241
_map
= _methodCachedData.MarshalRequestArgMap;
5251
_map
= _methodCachedData.MarshalResponseArgMap;
5253
_map
= _methodCachedData.MarshalRequestArgMap;
21 references to _map
mscorlib (21)
system\runtime\remoting\message.cs (21)
5259
get { return
_map
; }
5266
if (
_map
== null)
5272
return
_map
.Length;
5281
if (
_map
== null || argNum < 0 || argNum >=
_map
.Length)
5289
return _mm.GetArg(
_map
[argNum]);
5296
if (
_map
== null || argNum < 0 || argNum >=
_map
.Length)
5304
return _mm.GetArgName(
_map
[argNum]);
5313
if (
_map
== null)
5319
Object[] ret = new Object[
_map
.Length];
5320
for(int i=0; i<
_map
.Length; i++)
5322
ret[i] = _mm.GetArg(
_map
[i]);
5334
if (
_map
!= null)
5337
ret = new Type[
_map
.Length];
5338
for (int i=0; i<
_map
.Length; i++)
5340
ret[i] = pi[
_map
[i]].ParameterType;
5352
if (
_map
!= null)
5355
ret = new String[
_map
.Length];
5356
for (int i=0; i<
_map
.Length; i++)
5358
ret[i] = pi[
_map
[i]].Name;