Click here to Skip to main content
15,886,137 members
Articles / Desktop Programming / XAML

Diagnostic Explorer

Rate me:
Please Sign up or sign in to vote.
4.93/5 (41 votes)
29 Nov 2010LGPL315 min read 82.3K   1.5K   120  
A .NET library and website which allows developers to expose and view arbitrary diagnostic information about their .NET processes.
<%@ Page Language="c#" AutoEventWireup="true" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
		<title>DiagnosticExplorer.Silverlight</title>
		<style type="text/css">
		html, body {
			height: 100%;
			overflow: auto;
		}
		body {
			padding: 0;
			margin: 0;
		}
		#silverlightControlHost {
			height: 100%;
			text-align:center;
		}
		</style>
		<script type="text/javascript" src="Silverlight.js"></script>
		<script type="text/javascript">
			function onSilverlightError(sender, args) {
				var appSource = "";
				if (sender != null && sender != 0) {
					appSource = sender.getHost().Source;
				}

				var errorType = args.ErrorType;
				var iErrorCode = args.ErrorCode;

				if (errorType == "ImageError" || errorType == "MediaError") {
					return;
				}

				var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n";

				errMsg += "Code: " + iErrorCode + "    \n";
				errMsg += "Category: " + errorType + "       \n";
				errMsg += "Message: " + args.ErrorMessage + "     \n";

				if (errorType == "ParserError") {
					errMsg += "File: " + args.xamlFile + "     \n";
					errMsg += "Line: " + args.lineNumber + "     \n";
					errMsg += "Position: " + args.charPosition + "     \n";
				}
				else if (errorType == "RuntimeError") {
					if (args.lineNumber != 0) {
						errMsg += "Line: " + args.lineNumber + "     \n";
						errMsg += "Position: " + args.charPosition + "     \n";
					}
					errMsg += "MethodName: " + args.methodName + "     \n";
				}

				throw new Error(errMsg);
			}
		</script>
</head>
<body>
		<form id="form1" runat="server" style="height:100%">
		<div id="silverlightControlHost">
				<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="99.9%" height="99.9%">
			<param name="source" value="ClientBin/DiagnosticExplorer.xap"/>
			<param name="onError" value="onSilverlightError" />
			<param name="background" value="white" />
			<param name="minRuntimeVersion" value="4.0.50401.0" />
			<param name="autoUpgrade" value="true" />
			<param name="InitParams" value="PollTime=<%=Request["PollTime"] ?? "1500"%>,MenuRefresh=<%=Request["MenuRefresh"] ?? "10000" %>" />
			<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50401.0" style="text-decoration:none">
				<img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>
			</a>
			</object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>
		</form>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer
United Kingdom United Kingdom
I am a software developer originally from Auckland, New Zealand. I have lived and worked in London since 2005.

Comments and Discussions