Преглед на файлове

2007-05-09 Igor Zelmanovich <[email protected]>

	* ApplicationHost.cs:
	added MonoNotSupported attribute for TARGATE_JVM.	

	* PassportIdentity.cs:
	added MonoNotSupported attribute.	

svn path=/trunk/mcs/; revision=77015
Igor Zelmanovich преди 18 години
родител
ревизия
c9d826eede

+ 3 - 0
mcs/class/System.Web/System.Web.Hosting/ApplicationHost.cs

@@ -132,6 +132,9 @@ namespace System.Web.Hosting {
 		//
 		//    http://www.west-wind.com/presentations/aspnetruntime/aspnetruntime.asp
 		// 
+#if TARGET_JVM
+		[MonoNotSupported ("")]
+#endif
 		[SecurityPermission (SecurityAction.Demand, UnmanagedCode = true)]
 		public static object CreateApplicationHost (Type hostType, string virtualDir, string physicalDir)
 		{

+ 5 - 0
mcs/class/System.Web/System.Web.Hosting/ChangeLog

@@ -1,3 +1,8 @@
+2007-05-09 Igor Zelmanovich <[email protected]>
+
+	* ApplicationHost.cs:
+	added MonoNotSupported attribute for TARGATE_JVM.	
+
 2007-04-13  Marek Habersack  <[email protected]>
 
 	* ApplicationHost.cs: clear the dynamic base directory before

+ 5 - 0
mcs/class/System.Web/System.Web.Security/ChangeLog

@@ -1,3 +1,8 @@
+2007-05-09 Igor Zelmanovich <[email protected]>
+
+	* PassportIdentity.cs:
+	added MonoNotSupported attribute.	
+
 2007-05-02  Marek Habersack  <[email protected]>
 
 	* FormsAuthentication.cs: user names are stored in lowercase in

+ 1 - 0
mcs/class/System.Web/System.Web.Security/PassportIdentity.cs

@@ -33,6 +33,7 @@ using System.Security.Principal;
 
 namespace System.Web.Security {
 
+	[MonoNotSupported ("")]
 	[MonoTODO("Not implemented")]
 	// CAS - no InheritanceDemand here as the class is sealed
 	[AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]