2006-12-01 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Fri, 1 Dec 2006 09:17:08 +0000 (09:17 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Fri, 1 Dec 2006 09:17:08 +0000 (09:17 -0000)
* SoapDocumentationHandler.cs, SoapExtension.cs :
  WebServicesSection.Instance -> .Current.

svn path=/branches/atsushi/mcs/; revision=68816

mcs/class/System.Web.Services/System.Web.Services.Protocols/ChangeLog
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapDocumentationHandler.cs
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapExtension.cs

index ad091970e7be44f22a313cd639b8699c8221df5d..8e988b8c9c99c703a79758f3abc925cb5ac72279 100644 (file)
@@ -1,3 +1,8 @@
+2006-12-01  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * SoapDocumentationHandler.cs, SoapExtension.cs :
+         WebServicesSection.Instance -> .Current.
+
 2006-11-30  Atsushi Enomoto  <atsushi@ximian.com>
 
        * SoapHeaderMapping.cs : Now HeaderInfo became this type to implement
index f6f9322aa3637bac8ec85accb0a9335047107073..e799a6f335ada8bcadca26df43179ce3172dbc4f 100644 (file)
@@ -77,7 +77,7 @@ namespace System.Web.Services.Protocols
                                return;
                                
 #if NET_2_0
-                       string help = WebServicesSection.Instance.WsdlHelpGenerator.Href;
+                       string help = WebServicesSection.Current.WsdlHelpGenerator.Href;
                        string path = Path.GetDirectoryName (ConfigurationManager.OpenMachineConfiguration().FilePath);
 #else
                        string help = WSConfig.Instance.WsdlHelpPage;
index e26d602a525f844fc4d708673887e1a88627eac6..43af540d90331caa365d1d354a53c09916745842 100644 (file)
@@ -116,7 +116,7 @@ namespace System.Web.Services.Protocols {
                        globalExtensions = new ArrayList[2];
                        
 #if NET_2_0
-                       SoapExtensionTypeElementCollection exts = WebServicesSection.Instance.SoapExtensionTypes;
+                       SoapExtensionTypeElementCollection exts = WebServicesSection.Current.SoapExtensionTypes;
 #else
                        ArrayList exts = WSConfig.Instance.ExtensionTypes;
                        if (exts == null) return;