Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2004-01-11 16:47:20 +0300
committerAndreas N <andreas@mono-cvs.ximian.com>2004-01-11 16:47:20 +0300
commite5c18812d6bfab418706b61a319d17a3c9196b34 (patch)
treeafdafbbcbe166968579604165bf925b5e07efd3f /mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs
parent9bf15946b2e5ba0fcaac4572cd1eb411a03e95a0 (diff)
2004-01-11 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* SimpleWorkerRequest.cs: Added missing attribute * IISAPIRuntime.cs: Added attributes, fixed signature * IAppDomainFactory.cs: Added attributes, fixed signature svn path=/trunk/mcs/; revision=21937
Diffstat (limited to 'mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs b/mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs
index a92a1e8329d..d2faf4de3eb 100644
--- a/mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs
+++ b/mcs/class/System.Web/System.Web.Hosting/SimpleWorkerRequest.cs
@@ -1,5 +1,5 @@
//
-// System.Web.Hosting
+// System.Web.Hosting.SimpleWorkerRequest.cs
//
// Authors:
// Patrik Torstensson (Patrik.Torstensson@labs2.com)
@@ -9,11 +9,13 @@
using System;
using System.IO;
using System.Text;
+using System.Runtime.InteropServices;
using System.Web.Util;
namespace System.Web.Hosting
{
[MonoTODO("Implement security demands on the path usage functions (and review)")]
+ [ComVisible (false)]
public class SimpleWorkerRequest : HttpWorkerRequest
{
private string _Page;