5 implementations of Exception
mscorlib (4)
system\runtime\remoting\message.cs (4)
2451public Exception Exception 2743public Exception Exception 4652public Exception Exception 6126public virtual Exception Exception
System.ServiceModel (1)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
567public Exception Exception
31 references to Exception
mscorlib (30)
system\runtime\remoting\activationservices.cs (7)
550if (ctorRetMsg.Exception != null) 552throw ctorRetMsg.Exception; 610else if (retMsg.Exception != null) 612throw retMsg.Exception; 735e = retMsg.Exception; 865if (retMsg.Exception == null) 879e = retMsg.Exception;
system\runtime\remoting\context.cs (4)
699if (msg.Exception != null) 700throw msg.Exception; 723if (msg.Exception != null) 724throw msg.Exception;
system\runtime\remoting\message.cs (6)
1524: base( (msg.Exception!=null)? CRMkeysFault : CRMkeysNoFault, idict) 1526fault = (msg.Exception != null) ; 1777: base((msg.Exception != null) ? MCMkeysFault : MCMkeysNoFault, idict) 1779fault = (msg.Exception != null) ; 1802return _mrmsg.Exception; 5994_exception = _msg.Exception; // (same thing as above goes for _exception)
system\runtime\remoting\messagesmuggler.cs (1)
490Exception excep = mrm.Exception;
system\runtime\remoting\realproxy.cs (3)
206e = msg.Exception; 423Exception e = mrm.Exception; 617Exception e = mrm.Exception;
system\runtime\remoting\redirectionproxy.cs (1)
129COMException comException = replyMsg.Exception as COMException;
system\runtime\remoting\remotingsurrogateselector.cs (7)
284if (msg.Exception == null) 332Exception ex = msg.Exception; 350serverFault = new ServerFault(msg.Exception); // Clr is the Client use full exception 352serverFault = new ServerFault(msg.Exception.GetType().AssemblyQualifiedName, sb.ToString(), msg.Exception.StackTrace); 471if (((IMethodReturnMessage)msg).Exception != null) 473info.AddValue("__fault",((IMethodReturnMessage)msg).Exception, _exceptionType);
system\runtime\serialization\formatters\binary\binaryobjectwriter.cs (1)
259Exception exception = mrm.Exception;
System.Runtime.Remoting (1)
channels\sinks\soapformattersinks.cs (1)
775if ((mrm != null) && (mrm.Exception != null))