32ae352a7b5fef6c4186b6f917ab936fcab61371
[mono.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices.Internal / IISVirtualRoot.cs
1 // System.EnterpriseServices.Internal.IISVirtualRoot.cs
2 //
3 // Author:  Mike Kestner (mkestner@ximian.com)
4 //
5 // Copyright (C) 2004 Novell, Inc.
6
7 using System;
8 using System.Runtime.InteropServices;
9
10 namespace System.EnterpriseServices.Internal
11 {
12 #if NET_1_1
13         [Guid("d8013ef1-730b-45e2-ba24-874b7242c425")]
14         public class IISVirtualRoot : IComSoapIISVRoot {
15
16                 [MonoTODO]
17                 public IISVirtualRoot ()
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22                 [MonoTODO]
23                 public void Create (string RootWeb, string inPhysicalDirectory, string VirtualDirectory, out string Error)
24                 {
25                         throw new NotImplementedException ();
26                 }
27
28                 [MonoTODO]
29                 public void Delete (string RootWeb, string PhysicalDirectory, string VirtualDirectory, out string Error)
30                 {
31                         throw new NotImplementedException ();
32                 }
33
34         }
35 #endif
36 }