1 instantiation of RemoteException
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\ExceptionConverter.cs (1)
55var exception = new RemoteException(className, message, stackTrace, innerException);
6 references to RemoteException
Microsoft.TestPlatform.CommunicationUtilities (6)
Serialization\ExceptionConverter.cs (6)
18/// On deserialization, produces a <see cref="RemoteException"/> that preserves the original 20/// (all exceptions materialize as <see cref="RemoteException"/>) but <c>ToString()</c> renders 55var exception = new RemoteException(className, message, stackTrace, innerException); 76writer.WriteString("ClassName", value is RemoteException remote 80writer.WriteString("StackTraceString", value is RemoteException re 129sb.Append(ClassName ?? nameof(RemoteException));