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)
5259get { return _map; } 5266if (_map == null) 5272return _map.Length; 5281if (_map == null || argNum < 0 || argNum >= _map.Length) 5289return _mm.GetArg(_map[argNum]); 5296if (_map == null || argNum < 0 || argNum >= _map.Length) 5304return _mm.GetArgName(_map[argNum]); 5313if (_map == null) 5319Object[] ret = new Object[_map.Length]; 5320for(int i=0; i<_map.Length; i++) 5322ret[i] = _mm.GetArg(_map[i]); 5334if (_map != null) 5337ret = new Type[_map.Length]; 5338for (int i=0; i<_map.Length; i++) 5340ret[i] = pi[_map[i]].ParameterType; 5352if (_map != null) 5355ret = new String[_map.Length]; 5356for (int i=0; i<_map.Length; i++) 5358ret[i] = pi[_map[i]].Name;