You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.182
Former-commit-id: 439c182e520038bf50777ca2fe684f216ae28552
This commit is contained in:
parent
c911219690
commit
804b15604f
@ -44,17 +44,17 @@ namespace System.ServiceModel.Channels
|
||||
BindingElementCollection elements; // for internal use
|
||||
|
||||
public BindingContext (CustomBinding binding,
|
||||
BindingParameterCollection parms)
|
||||
BindingParameterCollection parameters)
|
||||
{
|
||||
if (binding == null)
|
||||
throw new ArgumentNullException ("binding");
|
||||
if (parms == null)
|
||||
throw new ArgumentNullException ("parms");
|
||||
if (parameters == null)
|
||||
throw new ArgumentNullException ("parameters");
|
||||
|
||||
this.binding = binding;
|
||||
parameters = new BindingParameterCollection ();
|
||||
foreach (var item in parms)
|
||||
parameters.Add (item);
|
||||
this.parameters = new BindingParameterCollection ();
|
||||
foreach (var item in parameters)
|
||||
this.parameters.Add (item);
|
||||
this.elements = new BindingElementCollection ();
|
||||
foreach (var item in binding.Elements)
|
||||
this.elements.Add (item);
|
||||
|
Reference in New Issue
Block a user