Bläddra i källkod

2002-03-17 Nick Drochak <[email protected]>

	* ApplicationDirectoryMembershipCondition.cs: New file (stub)

svn path=/trunk/mcs/; revision=3159
Nick Drochak 24 år sedan
förälder
incheckning
2f77b8c11a

+ 66 - 0
mcs/class/corlib/System.Security.Policy/ApplicationDirectoryMembershipCondition.cs

@@ -0,0 +1,66 @@
+// System.Security.Policy.ApplicationDirectoryMembershipCondition
+//
+// Author(s):
+//   Nick Drochak ([email protected])
+//
+// (C) 2002 Nick Drochak, All rights reserved.
+
+using System.Security;
+
+namespace System.Security.Policy
+{
+
+	// FIXME: This class is mostly just method stubs.
+
+	[Serializable]
+	public sealed class ApplicationDirectoryMembershipCondition :
+		IMembershipCondition, 
+		ISecurityEncodable, 
+		ISecurityPolicyEncodable
+	{
+		// Methods
+		[MonoTODO]
+		public bool Check(Evidence evidence) { 
+			throw new NotImplementedException (); 
+		}
+
+		[MonoTODO]
+		public IMembershipCondition Copy() { 
+			throw new NotImplementedException (); 
+		}
+		
+		public override bool Equals(object o) { 
+			return o is ApplicationDirectoryMembershipCondition; 
+		}
+		
+		[MonoTODO]
+		public void FromXml(SecurityElement e) { 
+			throw new NotImplementedException (); 
+		}
+		
+		[MonoTODO]
+		public void FromXml(SecurityElement e, PolicyLevel level) { 
+			throw new NotImplementedException (); 
+		}
+		
+		[MonoTODO]
+		public override int GetHashCode() { 
+			throw new NotImplementedException (); 
+		}
+		
+		[MonoTODO]
+		public override string ToString() { 
+			throw new NotImplementedException (); 
+		}
+		
+		[MonoTODO]
+		public SecurityElement ToXml() { 
+			throw new NotImplementedException (); 
+		}
+		
+		[MonoTODO]
+		public SecurityElement ToXml(PolicyLevel level) { 
+			throw new NotImplementedException (); 
+		}
+	}
+}

+ 4 - 0
mcs/class/corlib/System.Security.Policy/ChangeLog

@@ -1,3 +1,7 @@
+2002-03-17  Nick Drochak  <[email protected]>
+
+	* ApplicationDirectoryMembershipCondition.cs: New file (stub)
+
 2002-02-14  Nick Drochak  <[email protected]>
 
 	* FileCodeGroup.cs: Finish Equals()