[System.ServiceModel.Discovery] Rename method parameters to match .NET contract
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Wed, 15 Mar 2017 16:21:23 +0000 (17:21 +0100)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Thu, 16 Mar 2017 12:02:09 +0000 (13:02 +0100)
mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery.Configuration/DiscoveryEndpointElement.cs
mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery.Configuration/UdpAnnouncementEndpointElement.cs
mcs/class/System.ServiceModel.Discovery/System.ServiceModel.Discovery.Configuration/UdpDiscoveryEndpointElement.cs

index 9dbb1ed60719bb9ec3b7873eb4b5362afd5ba3ab..7166a0330f70f23d5d48e8e69cbc01dfa55f77d9 100644 (file)
@@ -126,7 +126,7 @@ namespace System.ServiceModel.Discovery.Configuration
                        // It seems to do nothing.
                }
                
-               protected override void OnInitializeAndValidate (ServiceEndpointElement channelEndpointElement)
+               protected override void OnInitializeAndValidate (ServiceEndpointElement serviceEndpointElement)
                {
                        // It seems to do nothing.
                }
index ad09f0567cb291cfaf2d026be3f347baf51ccbba..5e6af3f8eebf17175a2d1d5b7681243660fa5b0d 100644 (file)
@@ -142,10 +142,10 @@ namespace System.ServiceModel.Discovery.Configuration
                        base.OnInitializeAndValidate (channelEndpointElement);
                }
 
-               protected override void OnInitializeAndValidate (ServiceEndpointElement channelEndpointElement)
+               protected override void OnInitializeAndValidate (ServiceEndpointElement serviceEndpointElement)
                {
                        // It seems to do nothing.
-                       base.OnInitializeAndValidate (channelEndpointElement);
+                       base.OnInitializeAndValidate (serviceEndpointElement);
                }
        }
 }
index 8ac3d43a3e0bfd9f595df6f7f276babe94636b88..ece16ae6fcc4923f10801e04e53db55b2b43cf87 100644 (file)
@@ -150,10 +150,10 @@ namespace System.ServiceModel.Discovery.Configuration
                        base.OnInitializeAndValidate (channelEndpointElement);
                }
 
-               protected override void OnInitializeAndValidate (ServiceEndpointElement channelEndpointElement)
+               protected override void OnInitializeAndValidate (ServiceEndpointElement serviceEndpointElement)
                {
                        // It seems to do nothing.
-                       base.OnInitializeAndValidate (channelEndpointElement);
+                       base.OnInitializeAndValidate (serviceEndpointElement);
                }
        }
 }