X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web.Services%2FSystem.Web.Services.Description%2FServiceDescriptionImportStyle.cs;h=5569182cde45ee65e9f596ebfc429110357f4573;hb=853884299eadd5ab5d1e9e9ee1fde5fc9e75700d;hp=71085eadef10484a807d1cfcc5b92e331af34ad2;hpb=0443306d611d0830e27327e1f0a3ef3457dfa535;p=mono.git diff --git a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportStyle.cs b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportStyle.cs index 71085eadef1..5569182cde4 100644 --- a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportStyle.cs +++ b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportStyle.cs @@ -1,11 +1,11 @@ -// -// System.Web.Services.Description.ServiceDescriptionImportStyle.cs -// -// Author: -// Tim Coleman (tim@timcoleman.com) -// -// Copyright (C) Tim Coleman, 2002 -// +// +// 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 @@ -27,10 +27,15 @@ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // - -namespace System.Web.Services.Description { - public enum ServiceDescriptionImportStyle { - Client, - Server - } -} +using System.Xml.Serialization; + +namespace System.Web.Services.Description { + public enum ServiceDescriptionImportStyle { + [XmlEnum ("client")] + Client, + [XmlEnum ("server")] + Server, + [XmlEnum ("serverInterface")] + ServerInterface, + } +}