From: Tim Coleman Date: Tue, 23 Jul 2002 16:49:47 +0000 (-0000) Subject: 2002-07-23 Tim Coleman X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=1d7cfe4792fe1f95f7fb688662d9604be7842d11;p=mono.git 2002-07-23 Tim Coleman * ServiceDescription.cs: Add XmlIgnore attribute to ServiceDescriptions property * OperationFlow.cs: * ServiceDescriptionImportWarnings.cs: Explicitly set values in enumeration to match .NET. svn path=/trunk/mcs/; revision=6083 --- diff --git a/mcs/class/System.Web.Services/System.Web.Services.Description/OperationFlow.cs b/mcs/class/System.Web.Services/System.Web.Services.Description/OperationFlow.cs index 43c70297849..a3c517aa24b 100644 --- a/mcs/class/System.Web.Services/System.Web.Services.Description/OperationFlow.cs +++ b/mcs/class/System.Web.Services/System.Web.Services.Description/OperationFlow.cs @@ -10,10 +10,10 @@ namespace System.Web.Services.Description { [Serializable] public enum OperationFlow { - None, - Notification, - OneWay, - RequestResponse, - SolicitResponse + None = 0x0, + Notification = 0x2, + OneWay = 0x1, + RequestResponse = 0x3, + SolicitResponse = 0x4 } } diff --git a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescription.cs b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescription.cs index c1c1e83c5a5..6e108cdc993 100644 --- a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescription.cs +++ b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescription.cs @@ -101,6 +101,7 @@ namespace System.Web.Services.Description { get { throw new NotImplementedException (); } } + [XmlIgnore] public ServiceDescriptionCollection ServiceDescriptions { get { if (serviceDescriptions == null) diff --git a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportWarnings.cs b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportWarnings.cs index cfca43945db..5e4c329724a 100644 --- a/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportWarnings.cs +++ b/mcs/class/System.Web.Services/System.Web.Services.Description/ServiceDescriptionImportWarnings.cs @@ -10,11 +10,11 @@ namespace System.Web.Services.Description { [Serializable] public enum ServiceDescriptionImportWarnings { - NoCodeGenerated, - NoMethodsGenerated, - OptionalExtensionsIgnored, - RequiredExtensionsIgnored, - UnsupportedBindingsIgnored, - UnsupportedOperationsIgnored + NoCodeGenerated = 0x1, + NoMethodsGenerated = 0x20, + OptionalExtensionsIgnored = 0x2, + RequiredExtensionsIgnored = 0x4, + UnsupportedBindingsIgnored = 0x10, + UnsupportedOperationsIgnored = 0x8 } }