User csgero - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T20:51:30Zhttp://stackoverflow.com/feeds/user/21764http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/582222/accessing-session-in-background-service-using-httpmodule/582422#5824221Answer by csgero for Accessing Session in background service using HttpModulecsgero2009-02-24T16:21:36Z2009-02-24T16:21:36Z<p>I'm afraid you are on the wrong track here. You cannot implement a background service an using an HttpModule like this. The HttpContext you are passing around is bound to an HTTP request, and I'm quite sure you should not keep it around like you're trying to do. Also even if you could detect the session time-out, there would be no way to redirect the user to a new page without an active request.
<br/>
You might find <a href="http://stackoverflow.com/questions/140329/how-can-i-redirect-to-a-page-when-the-user-session-expires/140801#140801">this thread</a> helpful.</p>
http://stackoverflow.com/questions/582250/where-should-i-implement-functionality-in-page-object-constructor-or-onpreinit/582341#5823411Answer by csgero for Where should I implement functionality in Page object - constructor or OnPreInit?csgero2009-02-24T16:02:45Z2009-02-24T16:02:45Z<p>Depending on the actual functionality I would suggest using OnInit or OnLoad or even instead of OnPreInit. OnPreInit was introduced to support setting the theme or master page dynamically, what you cannot do later in the lifecycle.</p>
http://stackoverflow.com/questions/569565/uploading-files-in-asp-net-without-using-the-fileupload-server-control/569584#5695841Answer by csgero for Uploading Files in ASP.net without using the FileUpload server controlcsgero2009-02-20T13:39:16Z2009-02-20T13:39:16Z<p>You'll have to set the <code>enctype</code> attribute of the form to "multipart/form-data",
then you can access the uploaded file using the HttpRequest.Files collection.</p>
http://stackoverflow.com/questions/511579/why-am-i-getting-this-generic-non-descript-error-in-gdi-when-trying-to-save-a-p/511784#5117843Answer by csgero for Why am I getting this generic, non-descript error in GDI+ when trying to save a PNG?csgero2009-02-04T15:17:59Z2009-02-04T15:17:59Z<p>According to <a href="http://www.vbdotnetheaven.com/UploadFile/tcurry/PNGsUsingGDIplus04222005063702AM/PNGsUsingGDIplus.aspx" rel="nofollow">this post</a>, Bitmap.Save requires a seekable stream to save as PNG, which HttpResponse.OutputStream isn't. You'll have to save the image into a MemoryStream first, and then copy the contents of it to Response.OutputStream, like:</p>
<pre><code>Dim tempStream as New MemoryStream
oBitmap.Save(tempStream, ImageFormat.Png, oEncoderParams)
Response.OutputStream.Write(tempStream.ToArray(), 0, tempStream.Length)
</code></pre>
<p>Also note that the line </p>
<pre><code>context.Response.Output.Write(oBitmap)
</code></pre>
<p>does something different then what you are probably expecting. <code>HttpResponse.Output</code> is a TextWriter, and the overload you use here, <code>TextWriter.Write(object)</code> will just call ToString on the object and write the results into the stream, what in this case results in writing "System.Drawing.Bitmap" to the output.</p>
http://stackoverflow.com/questions/476084/c-twain-interaction/483062#4830621Answer by csgero for C# TWAIN interactioncsgero2009-01-27T11:33:31Z2009-01-27T11:33:31Z<p>You could try it with the <code>ComponentDispatcher.ThreadFilterMessage</code> event. As far as I understand it serves the same purpose in WPF as <code>Application.AddMessageFilter()</code> in WinForms.</p>
http://stackoverflow.com/questions/472478/asp-net-page-specific-configuration/472504#4725041Answer by csgero for ASP.NET page specific configurationcsgero2009-01-23T10:42:45Z2009-01-26T12:35:04Z<p>You can also try it with the <a href="http://msdn.microsoft.com/en-us/library/ms178692.aspx" rel="nofollow"><code><location></code> tag</a>, however I'm not sure you can use it with <code><httpRuntime></code>.</p>
http://stackoverflow.com/questions/469098/are-there-still-known-memory-leaks-with-xmlserialization-in-net-3-5/469149#4691491Answer by csgero for Are there still known memory leaks with XMLSerialization in .Net 3.5?csgero2009-01-22T13:38:56Z2009-01-22T13:38:56Z<p>I ran into the same issue with 2.0, so I can confirm the memory leak still exists there, but I have no experience with 3.5.
As long as you only use the constructors XmlSerializer(type) and XmlSerializer(type, defaultNameSpace) you should be safe, as the XmlSerializers will be automatically cached. If you use any of the other constructors you'll have to create your own cache.</p>
http://stackoverflow.com/questions/465754/does-redirecting-assembly-binding-work-for-unit-testing-with-a-test-runner/465862#4658621Answer by csgero for Does redirecting assembly binding work for unit testing with a test runner?csgero2009-01-21T16:01:47Z2009-01-21T16:01:47Z<p>This should work if you put the configuration settings in the correct .config file. Which one that is depends on the environment you are using to run the tests, but both NUnit and TestDriven.NET should support using <em>testassembly</em>.dll.config.<br/>
As for this is the appropriate solution, I would say yes. The only other possibility would be to use a publisher policy file, but you would need the private key used to compile NUnit.</p>
http://stackoverflow.com/questions/465669/how-to-parse-a-cut-n-paste-from-excel/465784#4657841Answer by csgero for How to parse a "cut n paste" from Excel.csgero2009-01-21T15:38:45Z2009-01-21T15:38:45Z<p>This looks like a "delimited values" list to me, so basically the same as CSV with TAB as the field delimiter and line break as the row delimiter. You could try it with the <a href="http://www.codeproject.com/KB/database/CsvReader.aspx" rel="nofollow">CSV Reader library from CodeProject</a>, it should be handle to handle different delimiters, not just comma.</p>
http://stackoverflow.com/questions/457454/net-1-1-and-net-2-config-files-working-together/457488#4574880Answer by csgero for .NET 1.1 and .NET 2 config files working togethercsgero2009-01-19T12:53:13Z2009-01-19T13:22:23Z<p>The problem seems to be that because Bravo.dll targets 1.1, the 1.1 version of the framework gets loaded, and, as you say, the applicationSettings section is new in .NET 2.0. The solution is to force the VB exe to load the 2.0 framework. Adding a <code>startup/supportedRuntime</code> element in the Alpha.exe.config file should do the trick. You will also need some comfiguration section declarations, so at the end Alpha.exe.config should look something like this:</p>
<pre><code><configuration>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="Charlie.My.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<appSettings>
<add key="MySetting" value="MyValue" />
</appSettings>
<applicationSettings>
<Charlie.My.MySettings>
<setting name="MySetting" serializeAs="String">
<value>MyValue</value>
</setting>
</Charlie.My.MySettings>
</applicationSettings>
</configuration>
</code></pre>
http://stackoverflow.com/questions/434680/access-sharepoint-list-data-in-sql/434721#4347212Answer by csgero for Access sharepoint list data in SQLcsgero2009-01-12T07:41:31Z2009-01-12T15:51:05Z<p>You really should not query let alone update the SharePoint content database directly using SQL. It is totally unsupported, so if you break something you are left alone, and the database schema may change with future service packs / releases.<br/>
Also as noesgard mentioned it in his comment you do not need it to use today's date in a calculated field, see <a href="http://blogs.msdn.com/cjohnson/archive/2006/03/16/552314.aspx" rel="nofollow">this blog entry</a> on how you can do that.</p>
http://stackoverflow.com/questions/434715/read-csv-file-encoding-error/434759#4347594Answer by csgero for Read Csv file encoding errorcsgero2009-01-12T08:07:06Z2009-01-12T08:07:06Z<p>Try using <code>CharacterSet=UNICODE</code> in your schema.ini file. Although this is not <a href="http://msdn.microsoft.com/en-us/library/ms709353.aspx" rel="nofollow">documented on MSDN</a> it works according to this <a href="http://social.microsoft.com/Forums/en-US/vblanguage/thread/0ab1db1a-bfc4-48b6-b31e-33242abf18b2" rel="nofollow">thread on Microsoft Forums</a>.</p>
http://stackoverflow.com/questions/427799/iterating-over-unknown-data-structure/427992#4279920Answer by csgero for Iterating over unknown data structure?csgero2009-01-09T13:12:59Z2009-01-09T13:12:59Z<p>There is no generic solution that could traverse over any unknown data structure. However you can write a recursive algorithm that works for a known set of types (like scalars, dictionarries, lists, etc.), for example:</p>
<pre><code>public void Dump(object obj)
{
if(obj is IList)
{
DumpList((IList)list);
}
else if(obj is IDictionary)
{
DumpDictionary(dict)
}
else
{
Console.WriteLine(obj);
}
}
public void DumpList(IList list)
{
foreach(object item in list)
{
Dump(item);
}
}
public void DumpDictionary(IDictionary dict)
{
foreach (DictionaryEntry entry in dict)
{
Dump(entry.Key);
Console.Write("=");
Dump(entry.Value);
}
}
</code></pre>
<p>For a nicer and more extensible solution you could use the Chain of Responsibility pattern, but I wanted to keep this example as simple as possible. </p>
http://stackoverflow.com/questions/424920/is-there-a-way-to-make-destructive-string-methods-a-la-ruby/425033#4250330Answer by csgero for Is there a way to make "destructive" string methods a-la Ruby?csgero2009-01-08T16:59:12Z2009-01-08T16:59:12Z<p>No, you cannot do this in an extension method. To reassign the value of a variable passed in as a parameter you have to pass it by reference using the <code>ref</code> parameter modifier, what is not allowed for extension methods.
Even if this would be possible, there might not be a variable to reassign, like in <code>"foo".ConvertToLower()</code>.</p>
http://stackoverflow.com/questions/349286/asp-net-membership-password-expiration/349687#3496872Answer by csgero for ASP.NET membership password expirationcsgero2008-12-08T14:17:29Z2008-12-08T14:17:29Z<p>You could add an event handler for the HttpApplication.PostAuthenticateRequest event in global.asax and handle the redirection there.</p>
http://stackoverflow.com/questions/341103/c-to-vb-net-why-does-this-fail-to-compile-when-converted-to-vb/341195#3411951Answer by csgero for C# to VB.Net: Why does this fail to compile when converted to VB?csgero2008-12-04T16:21:02Z2008-12-04T16:21:02Z<p>I would suspect that the problem is that you used ValueType for as the name for one of the type parameters, which is an actual type in the .NET class library (System.ValueType). I can imagine that C# and VB.NET handles this differently. Try it with a different name, like TValue (and TKey just to be consistent).</p>
http://stackoverflow.com/questions/339776/asynchronous-readdirectorychangesw/339793#3397931Answer by csgero for Asynchronous ReadDirectoryChangesW()?csgero2008-12-04T07:33:15Z2008-12-04T07:33:15Z<p>From the <a href="http://msdn.microsoft.com/en-us/library/aa365465(VS.85).aspx" rel="nofollow">MSDN documentation for ReadDirectoryChnagesW()</a>:</p>
<blockquote>
<p>For asynchronous completion, you can receive notification in one of
three ways:</p>
<ul>
<li>Using the GetOverlappedResult function. To receive notification
through GetOverlappedResult, do not
specify a completion routine in the
lpCompletionRoutine parameter. Be sure
to set the hEvent member of the
OVERLAPPED structure to a unique
event.</li>
<li>Using the GetQueuedCompletionStatus function. To
receive notification through
GetQueuedCompletionStatus, do not
specify a completion routine in
lpCompletionRoutine. Associate the
directory handle hDirectory with a
completion port by calling the
CreateIoCompletionPort function.</li>
<li>Using a completion routine. To receive notification through a
completion routine, do not associate
the directory with a completion port.
Specify a completion routine in
lpCompletionRoutine. This routine is
called whenever the operation has been
completed or canceled while the thread
is in an alertable wait state. The
hEvent member of the OVERLAPPED
structure is not used by the system,
so you can use it yourself.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/339763/does-regularexpressionvalidator-use-other-flavor-than-regex/339779#3397793Answer by csgero for Does RegularExpressionValidator use other flavor than Regex?csgero2008-12-04T07:15:18Z2008-12-04T07:15:18Z<p>The RegularExpressionValidator also supports client-side validation using JavaScript, where the JavaScript Regex engine is used. The difference you see is the difference between the JavaScript and the .NET regex implementation.
You can disable client-side validation and thus force the validator to use the .NET regex engine, at the price of the additional post-back.</p>
http://stackoverflow.com/questions/60456/dynamicpopulateextender-textarea-and-line-feeds/321353#3213531Answer by csgero for DynamicPopulateExtender ,TextArea and line feedscsgero2008-11-26T16:39:28Z2008-11-27T08:18:19Z<p>The problem is that the white space is ignored by default when the XML is processed. Try to add the <code>xml:space="preserve"</code> attribute to the string element. You'll also need to define the xml prefix as <code>xmlns:xml="http://www.w3.org/XML/1998/namespace"</code>.</p>
http://stackoverflow.com/questions/317777/synchronisable-crm-system/317790#3177900Answer by csgero for Synchronisable CRM Systemcsgero2008-11-25T15:51:46Z2008-11-25T15:51:46Z<p>You might want to take a look at the <a href="http://msdn.microsoft.com/en-us/sync/default.aspx" rel="nofollow">Microsoft Synch Framework</a>. I haven't used it yet, so I cannot give a personal opinion on it though.</p>
http://stackoverflow.com/questions/308135/how-can-i-enumerate-the-open-windows-enumwindows-of-another-user-session/313904#3139042Answer by csgero for How can I enumerate the open windows (~EnumWindows) of another user sessioncsgero2008-11-24T11:16:21Z2008-11-24T11:16:21Z<p>According to <a href="http://download.microsoft.com/download/9/c/5/9c5b2167-8017-4bae-9fde-d599bac8184a/Session0_Vista.docx" rel="nofollow">this document</a> you can create a process in an other user's logon session using CreateProcessAsUser, and could enumerate the windows there. You will still need some IPC mechanism to communicate with the service.</p>
http://stackoverflow.com/questions/264022/xmlhttp-post-request-and-system-reflection/289647#2896470Answer by csgero for XMLHTTP POST request and System.Reflectioncsgero2008-11-14T09:48:35Z2008-11-14T09:48:35Z<p>Judging by the exception message this does not look like an authentication problem to me.
Could it be that the invoked method tries to access the ASP.NET Session? That would explain the exception.</p>
http://stackoverflow.com/questions/286334/finding-head-and-tail-events-in-mssql-optimisation/286832#2868320Answer by csgero for Finding head and tail events in MSSQL (Optimisation) csgero2008-11-13T12:48:52Z2008-11-13T12:48:52Z<p>Here is a version with joins:</p>
<pre><code>select distinct e1.* from #event e1
left outer join #event e2 ON
e1.id = e2.id
and e2.date < e1.date
and e2.type <> 1
left outer join #event e3 ON
e1.id = e3.id
and e3.date > e1.date
and e3.type <> 1
where e1.type = 1 AND (e2.id is null or e3.id is null)
</code></pre>
<p>This still has three table scans plus a distinct clause, but it still seems to be faster than the original query.</p>
http://stackoverflow.com/questions/286375/unable-to-post-a-https-webrequest-in-net/286417#2864171Answer by csgero for unable to post a https WebRequest in .net?csgero2008-11-13T07:16:43Z2008-11-13T07:16:43Z<p>You could make a trace of the HTTP traffic using <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a> or a network packet sniffing tool like <a href="http://www.wireshark.org/" rel="nofollow"><s>Ethereal</s> Whireshark</a> on the machine where it is working, and on one of the other machines, and compare the results. This is fairly low-level, but might throw some light on the issue.</p>
http://stackoverflow.com/questions/85142/formsauthentication-selective-to-url/286404#2864041Answer by csgero for FormsAuthentication selective to urlcsgero2008-11-13T07:03:32Z2008-11-13T07:03:32Z<p>This can be achieved, but you'll have to implement your own IHttpModule for it. Alas FormsAuthenticationModule is sealed, meaning that you would have to start from scratch, but <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> can be a great help there.</p>
http://stackoverflow.com/questions/268906/visualizing-the-code-involved-in-an-action/269357#2693570Answer by csgero for Visualizing the code involved in an action?csgero2008-11-06T16:37:32Z2008-11-12T15:55:24Z<p>You could use a code coverage tool like <a href="http://www.ncover.com/" rel="nofollow">NCover</a> even without any unit testing frameworks. Just run the application through NCover, and check the results.</p>
<p>Edit: you might also want to check out <a href="http://sourceforge.net/projects/partcover/" rel="nofollow">PartCover</a>, an open source alternative.</p>
http://stackoverflow.com/questions/283419/how-to-just-load-the-latest-version-of-dll-from-gac/283880#2838801Answer by csgero for How to just load the latest version of dll from GACcsgero2008-11-12T13:07:37Z2008-11-12T13:07:37Z<p><code>Assembly.LoadWithPartialName(string)</code> will do exactly what you want.</p>
http://stackoverflow.com/questions/259005/handling-wcf-deserialization-of-datetime-objects/265564#2655641Answer by csgero for Handling WCF Deserialization of DateTime objectscsgero2008-11-05T15:51:08Z2008-11-05T15:51:08Z<p>If I understand the problem correctly, you could solve this in post processing by simply using <code>DateTime.ToUniversalTime()</code> on the service side. For your example this should get you a DateTime with the value "2008-11-03 00:00:00" and Kind=DateTimeKind.Utc. Now if you need this same value, but as Local or Unspecified, you could use <code>DateTime.SpecifyKind(DateTime, DateTimeKind)</code> to set the Kind without changing the value.</p>
http://stackoverflow.com/questions/216664/creating-an-mjpeg-video-stream-in-c/264781#2647810Answer by csgero for Creating an MJPEG video stream in c#csgero2008-11-05T10:22:51Z2008-11-05T10:22:51Z<p>I'm far from being an expert in MJPEG streaming, but looking at the source of <a href="http://sourceforge.net/projects/mjpg-streamer/" rel="nofollow">mjpg-streamer</a> on sourcefourge I think you should send each frame separately, writing the boundary before and after each of them. You should of course not write the content-type in the closing boundary.</p>
http://stackoverflow.com/questions/244084/asp-net-session-scope-where-can-it-be-accessed-from/253106#2531062Answer by csgero for ASP.NET Session Scope: where can it be accessed from?csgero2008-10-31T10:36:37Z2008-10-31T10:36:37Z<p>AFAIK the <strong>in-process</strong> session has an AppDomain scope, so no, two web applications running in the same pool cannot share an in-process session. Actually the name "in-AppDomain" would be more appropriate.</p>
http://stackoverflow.com/questions/469098/are-there-still-known-memory-leaks-with-xmlserialization-in-net-3-5/469148#469148Comment by csgero on Are there still known memory leaks with XMLSerialization in .Net 3.5?csgero2009-01-23T10:38:06Z2009-01-23T10:38:06ZAs far as I understood in the article they still say that you might have memory leaks if you use any of the "special" constructors.http://stackoverflow.com/questions/457454/net-1-1-and-net-2-config-files-working-together/457488#457488Comment by csgero on .NET 1.1 and .NET 2 config files working togethercsgero2009-01-19T13:23:46Z2009-01-19T13:23:46ZI have updated again, adding supportedRuntime, I hope this finally solves the issue.http://stackoverflow.com/questions/424920/is-there-a-way-to-make-destructive-string-methods-a-la-ruby/424972#424972Comment by csgero on Is there a way to make "destructive" string methods a-la Ruby?csgero2009-01-08T16:51:00Z2009-01-08T16:51:00ZI agree that it won't work, but not because the immutability of strings. It will not work because setting the value of a parameter will not change the actual variable passed in, unless the parameter is passed by reference (using the ref keyword), what you cannot use for extension methods.http://stackoverflow.com/questions/358647/programatically-add-user-permission-to-a-list-in-sharepoint/358685#358685Comment by csgero on programatically add user permission to a list in sharepointcsgero2008-12-11T08:44:43Z2008-12-11T08:44:43ZI think your comment "Ensure we don't inherit permissions from parent" is not consistent with the code, it should be myList,BreakRoleInheritance(false) for that.http://stackoverflow.com/questions/333287/httpmodule-get-html-content-or-controls-for-modifications-cComment by csgero on HttpModule - get HTML content or controls for modifications (C#)csgero2008-12-02T08:42:51Z2008-12-02T08:42:51ZCould you also post the stack trace of the exception? That could help diagnosing the problem.http://stackoverflow.com/questions/283419/how-to-just-load-the-latest-version-of-dll-from-gac/298903#298903Comment by csgero on How to just load the latest version of dll from GACcsgero2008-11-19T17:30:22Z2008-11-19T17:30:22ZHave you put the assembly itself (with version 3.0.0.1) in the GAC?http://stackoverflow.com/questions/299198/implement-c-generic-timeout/299273#299273Comment by csgero on Implement C# Generic Timeoutcsgero2008-11-18T16:57:39Z2008-11-18T16:57:39ZWhy the catch(ThreadAbortException)? AFAIK you cannot really catch a ThreadAbortException (it will be rethrown after when the catch block is left).http://stackoverflow.com/questions/268906/visualizing-the-code-involved-in-an-action/269357#269357Comment by csgero on Visualizing the code involved in an action?csgero2008-11-12T15:48:23Z2008-11-12T15:48:23ZDepends on the tool. With NCover you can restrict amongst others to only cover specific assemblies using command line switches (see <a href="http://www.ncover.com/documentation/console/flags" rel="nofollow">ncover.com/documentation/console/flags</a> for details).http://stackoverflow.com/questions/260233/how-do-i-extend-ado-net-entity-framework-objects-with-partial-classes/260784#260784Comment by csgero on How do I extend ADO.NET Entity Framework objects with partial classes?csgero2008-11-04T07:33:42Z2008-11-04T07:33:42ZYou can find a blog entry with quite a detailed explanation of the issue here: <a href="http://blog.genom-e.com/PermaLink,guid,4c486a95-12ad-4abf-aba1-7eb893c91ba7.aspx" rel="nofollow">blog.genom-e.com/PermaLink,guid,4c486a95-12ad-4ab…</a>http://stackoverflow.com/questions/178863/change-theme-css-based-on-userComment by csgero on Change Theme / CSS based on usercsgero2008-10-16T07:26:57Z2008-10-16T07:26:57ZJust a note: you should not need "!" to override the base styles, just make sure that the overriding CSS is loaded later than the original. The order is determined by the order of the <link> elements, with inline CSS always overriding any linked files.http://stackoverflow.com/questions/159373/xmlroot-attribute-not-included-in-the-generated-proxy-class/177169#177169Comment by csgero on [XmlRoot] attribute not included in the generated proxy classcsgero2008-10-10T12:34:30Z2008-10-10T12:34:30ZSorry, you are right, I missed the point. There is also a somewhat simpler solution using the XmlSerializer constructor that takes an XmlRootAttribute parameter.http://stackoverflow.com/questions/159373/xmlroot-attribute-not-included-in-the-generated-proxy-class/177169#177169Comment by csgero on [XmlRoot] attribute not included in the generated proxy classcsgero2008-10-08T15:36:35Z2008-10-08T15:36:35ZI think the issue is not with using XmlSerializer, but with the code generated for the proxy. In a real world scenario XML serialization will be handled by WCF, so you have no direct influence on the XmlSerializer being used.http://stackoverflow.com/questions/182066/linq-to-sql-table-dependency/182359#182359Comment by csgero on LINQ to SQL Table Dependencycsgero2008-10-08T12:18:59Z2008-10-08T12:18:59ZShouldn't it better be loadOption.LoadWith(p => p.Category)?http://stackoverflow.com/questions/159373/xmlroot-attribute-not-included-in-the-generated-proxy-classComment by csgero on [XmlRoot] attribute not included in the generated proxy classcsgero2008-10-07T08:31:43Z2008-10-07T08:31:43ZI'm not surprised that no XmlRoot is generated. What I find strange is that the generated class is not called "SomethingElse". Did you generate the proxy after you added the XmlRoot attribute?http://stackoverflow.com/questions/53621/why-is-the-resource-pool-not-supported-on-the-current-platform/176457#176457Comment by csgero on Why is the 'Resource Pool' not supported on the current platform?csgero2008-10-07T08:15:00Z2008-10-07T08:15:00ZYou have to load System.EnterpriseServices in Reflector.
The constructor of ResourcePool contains the following line:
Platform.Assert(Platform.W2K, "ResourcePool");
This does not answer the question, but at least we have the source of the exception.