Implemented interface member:
property
StackTrace
System.Runtime.InteropServices._Exception.StackTrace
1 override of StackTrace
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\Pts.cs (1)
299public override string StackTrace
71 references to StackTrace
mscorlib (15)
system\badimageformatexception.cs (2)
94if (StackTrace != null) 95s += Environment.NewLine + StackTrace;
system\exception.cs (3)
620+ StackTrace 626tmp = StackTrace 695tmpStackTraceString = StackTrace;
system\io\fileloadexception.cs (2)
108if (StackTrace != null) 109s += Environment.NewLine + StackTrace;
system\io\filenotfoundexception.cs (2)
95if (StackTrace != null) 96s += Environment.NewLine + StackTrace;
system\runtime\interopservices\comexception.cs (2)
84if (StackTrace != null) 85s += Environment.NewLine + StackTrace;
system\runtime\interopservices\externalexception.cs (2)
75if (StackTrace != null) 76s += Environment.NewLine + StackTrace;
system\runtime\remoting\remotingsurrogateselector.cs (1)
352serverFault = new ServerFault(msg.Exception.GetType().AssemblyQualifiedName, sb.ToString(), msg.Exception.StackTrace);
system\runtime\remoting\stackbuildersink.cs (1)
180e.Message + e.StackTrace + "\n" );
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\LineServicesCallbacks.cs (1)
3663e.Data[ExceptionContext.Key] = new ExceptionContext(e.Data[ExceptionContext.Key], e.StackTrace, plsrun, lsrun);
PresentationFramework (1)
src\Framework\MS\Internal\PtsHost\Pts.cs (1)
301get { return InnerException.StackTrace; }
SMDiagnostics (1)
System\ServiceModel\Diagnostics\ExceptionUtility.cs (1)
137string stack = exception.StackTrace;
System (2)
net\System\Net\Logging.cs (2)
470if (!ValidationHelper.IsBlankString(e.StackTrace)) { 471infoLine += "\r\n" + e.StackTrace;
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\ErrorReporting.cs (1)
100ShowMessageBox(string.Format(CultureInfo.InvariantCulture, "{0}:\r\n{1}", err.GetType().Name, err.Message), MessageBoxImage.Error, err.StackTrace);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
930Trace.WriteLine(string.Format(CultureInfo.CurrentUICulture, "{0}\r\n{1}", err.Message, err.StackTrace)); 988Trace.WriteLine(string.Format(CultureInfo.CurrentUICulture, "{0}\r\n{1}", err.Message, err.StackTrace));
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\ErrorReporting.cs (1)
100ShowMessageBox(string.Format(CultureInfo.InvariantCulture, "{0}:\r\n{1}", err.GetType().Name, err.Message), MessageBoxImage.Error, err.StackTrace);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
930Trace.WriteLine(string.Format(CultureInfo.CurrentUICulture, "{0}\r\n{1}", err.Message, err.StackTrace)); 988Trace.WriteLine(string.Format(CultureInfo.CurrentUICulture, "{0}\r\n{1}", err.Message, err.StackTrace));
System.Data.Entity (1)
System\Data\Metadata\EdmSchemaError.cs (1)
104_stackTrace = exception.StackTrace;
System.Data.Services (2)
System\Data\Services\ErrorHandler.cs (2)
313string exceptionStackTrace = exception.StackTrace ?? String.Empty; 353string exceptionStackTrace = exception.StackTrace ?? String.Empty;
System.Data.SqlXml (2)
System\Xml\Xsl\XslException.cs (2)
74if (StackTrace != null) { 75result += Environment.NewLine + StackTrace;
System.IdentityModel.Selectors (1)
infocard\Diagnostics\Managed\Microsoft\InfoCards\Diagnostics\InfocardTrace.cs (1)
654e.StackTrace);
System.Runtime.Remoting (2)
channels\core\corechannel.cs (1)
1090InternalRemotingServices.RemotingTrace(e.StackTrace);
channels\http\httpremotinghandler.cs (1)
293InternalRemotingServices.RemotingTrace(e.StackTrace);
System.ServiceModel (1)
System\ServiceModel\ExceptionDetail.cs (1)
30this.stackTrace = exception.StackTrace;
System.ServiceModel.Internals (1)
System\Runtime\Diagnostics\DiagnosticTraceBase.cs (1)
386string retval = exception.StackTrace;
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpHtmlBuilder.cs (2)
170div.Add(new XElement(HtmlPElementName, error.StackTrace ?? String.Empty)); 185div.Add(new XElement(HtmlPElementName, error.StackTrace ?? String.Empty));
System.Transactions (2)
System\Transactions\Trace\DiagnosticTrace.cs (1)
730string retval = exception.StackTrace;
System\Transactions\Trace\TraceRecords.cs (1)
1135xml.WriteElementString("ExceptionStack", this.exception.StackTrace );
System.Web (10)
Hosting\AppDomainFactory.cs (1)
182Debug.Trace("internal", "AppDomainFactory::Create failed with " + e.GetType().FullName + ": " + e.Message + "\r\n" + e.StackTrace);
Hosting\IPipelineRuntime.cs (1)
296sb.Append(current.StackTrace);
Hosting\ProcessHost.cs (1)
346Debug.Trace("internal", "ProcessHost::ctor failed with " + e.GetType().FullName + ": " + e.Message + "\r\n" + e.StackTrace);
HttpResponse.cs (2)
1297if (e.StackTrace != null) 1298_writer.WriteLine(e.StackTrace);
Management\EventlogProvider.cs (1)
140string stackTrace = exception.StackTrace;
PerfCounters.cs (1)
83Debug.Trace("Perfcounters", "Exception: " + e.StackTrace);
UI\TraceContext.cs (2)
287row["ErrorInfoStack"] = errorInfo.StackTrace; 306string eTrace = errorInfo.StackTrace;
Util\Misc.cs (1)
84sb.Append(current.StackTrace);
System.Web.Extensions (1)
Script\Services\RestHandler.cs (1)
241writer.Write(JavaScriptSerializer.SerializeInternal(BuildWebServiceError(ex.Message, ex.StackTrace, ex.GetType().FullName)));
System.Web.Mobile (2)
Mobile\MobileErrorInfo.cs (1)
116String s = e.StackTrace;
UI\MobileControls\Adapters\WmlPageAdapter.cs (1)
288String stackTrace = ex.StackTrace;
System.Web.Services (3)
System\Web\Services\Diagnostics\TraceUtility.cs (1)
193if (IsVerbose && !string.IsNullOrEmpty(e.StackTrace)) {
System\Web\Services\Protocols\ServerProtocol.cs (2)
157if (e.StackTrace != null) { 159builder.Append(e.StackTrace);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
1690Debug.Fail("Failed to get properties: " + e.GetType().Name + "," + e.Message + "\n" + e.StackTrace);
System.Workflow.Runtime (14)
DebugEngine\DebugController.cs (1)
586Debug.WriteLine(string.Format(CultureInfo.CurrentCulture, "WDE: Failure in DebugController.AttachToConduit: {0}, Call stack:{1}", e.Message, e.StackTrace));
Hosting\SqlWorkflowPersistenceService.cs (2)
1136WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "stacktrace : {0}", se.StackTrace); 1152WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "stacktrace : {0}", e.StackTrace);
WorkflowExecutor.cs (11)
749WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Fatal exception thrown in the scheduler. Terminating the workflow instance '{0}'. Exception:{1}\n{2}", this.InstanceIdString, e.Message, e.StackTrace); 1120WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Persist attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1130WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Persist attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1503WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: TryUnloading attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1606WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Unload attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1654WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Terminate attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1702WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Persistence attempt at instance '{0}' termination threw an exception. Aborting the instance. The termination event would be raised. The instance would execute from the last persisted point whenever started by the host explicitly. Exception:{1}\n{2}", this.InstanceIdString, e.Message, e.StackTrace); 1791WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Abort attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 1905WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Suspend attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 2016WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: Resume attempt on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace); 2733WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0, "Workflow Runtime: WorkflowExecutor: dynamic update attempt from outside on instance '{0}' threw an exception '{1}' at {2}", this.InstanceIdString, e.Message, e.StackTrace);