diff --git a/Source/BlueCollar/MachineProxy.cs b/Source/BlueCollar/MachineProxy.cs
index 1a85c83..86d3e9d 100644
--- a/Source/BlueCollar/MachineProxy.cs
+++ b/Source/BlueCollar/MachineProxy.cs
@@ -9,9 +9,9 @@ namespace BlueCollar
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
+ using System.Globalization;
using System.Linq;
using System.Reflection;
- using System.Text.RegularExpressions;
using System.Web;
///
@@ -19,12 +19,13 @@ namespace BlueCollar
///
public sealed class MachineProxy : MarshalByRefObject, IDisposable
{
- private static string[] assemblyBlackList = new string[] { "/^system/", "/^microsoft" };
-
+ private static readonly string[] AssemblyBlacklist = new string[] { "System.", "Microsoft." };
+ private static readonly string[] HttpApplicationEntryPoints = new[] { "Application_Start", "Application_OnStart" };
+ private static readonly string[] HttpApplicationExitPoints = new[] { "Application_End", "Application_OnEnd" };
+ private List httpApplications = new List();
private Machine machine;
private bool disposed;
- private List