Merge pull request #1510 from BrzVlad/fix-file-map
[mono.git] / mcs / class / System.Web.Extensions / System.Web.UI / AuthenticationServiceManager.cs
index 1a8869bdd11eb7a931b0d242f2b8dc2da2bf663f..ba23f44be910829269edbbab5637a50ce3fb2cc5 100644 (file)
@@ -37,15 +37,19 @@ namespace System.Web.UI
        [DefaultProperty ("Path")]
        public class AuthenticationServiceManager
        {
+               string _path;
+
                [Category ("Behavior")]
                [NotifyParentProperty (true)]
                [DefaultValue ("")]
                public string Path {
                        get {
-                               throw new NotImplementedException ();
+                               if (_path == null)
+                                       return String.Empty;
+                               return _path;
                        }
                        set {
-                               throw new NotImplementedException ();
+                               _path = value;
                        }
                }
        }