[corlib] Remove System.Core security types
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceDescriptionImportStyle.cs
index 71085eadef10484a807d1cfcc5b92e331af34ad2..5569182cde45ee65e9f596ebfc429110357f4573 100644 (file)
@@ -1,11 +1,11 @@
-// \r
-// System.Web.Services.Description.ServiceDescriptionImportStyle.cs\r
-//\r
-// Author:\r
-//   Tim Coleman (tim@timcoleman.com)\r
-//\r
-// Copyright (C) Tim Coleman, 2002\r
-//\r
+// 
+// System.Web.Services.Description.ServiceDescriptionImportStyle.cs
+//
+// Author:
+//   Tim Coleman (tim@timcoleman.com)
+//
+// Copyright (C) Tim Coleman, 2002
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-namespace System.Web.Services.Description {\r
-       public enum ServiceDescriptionImportStyle {\r
-               Client,\r
-               Server\r
-       }\r
-}\r
+using System.Xml.Serialization;
+
+namespace System.Web.Services.Description {
+       public enum ServiceDescriptionImportStyle {
+               [XmlEnum ("client")]
+               Client,
+               [XmlEnum ("server")]
+               Server,
+               [XmlEnum ("serverInterface")]
+               ServerInterface,
+       }
+}