You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -111,9 +111,9 @@ namespace System.ServiceModel.Configuration
|
||||
return new BinaryMessageEncodingBindingElement ();
|
||||
}
|
||||
|
||||
public override void ApplyConfiguration (BindingElement element)
|
||||
public override void ApplyConfiguration (BindingElement bindingElement)
|
||||
{
|
||||
var b = (BinaryMessageEncodingBindingElement) element;
|
||||
var b = (BinaryMessageEncodingBindingElement) bindingElement;
|
||||
b.MaxReadPoolSize = MaxReadPoolSize;
|
||||
b.MaxSessionSize = MaxSessionSize;
|
||||
b.MaxWritePoolSize = MaxWritePoolSize;
|
||||
@ -121,9 +121,9 @@ namespace System.ServiceModel.Configuration
|
||||
ReaderQuotas.ApplyConfiguration (b.ReaderQuotas);
|
||||
}
|
||||
|
||||
public override void CopyFrom (ServiceModelExtensionElement element)
|
||||
public override void CopyFrom (ServiceModelExtensionElement from)
|
||||
{
|
||||
var b = (BinaryMessageEncodingElement) element;
|
||||
var b = (BinaryMessageEncodingElement) from;
|
||||
MaxReadPoolSize = b.MaxReadPoolSize;
|
||||
MaxSessionSize = b.MaxSessionSize;
|
||||
MaxWritePoolSize = b.MaxWritePoolSize;
|
||||
@ -131,9 +131,9 @@ namespace System.ServiceModel.Configuration
|
||||
ReaderQuotas.CopyFrom (b.ReaderQuotas);
|
||||
}
|
||||
|
||||
protected internal override void InitializeFrom (BindingElement element)
|
||||
protected internal override void InitializeFrom (BindingElement bindingElement)
|
||||
{
|
||||
var b = (BinaryMessageEncodingBindingElement) element;
|
||||
var b = (BinaryMessageEncodingBindingElement) bindingElement;
|
||||
MaxReadPoolSize = b.MaxReadPoolSize;
|
||||
MaxSessionSize = b.MaxSessionSize;
|
||||
MaxWritePoolSize = b.MaxWritePoolSize;
|
||||
|
Reference in New Issue
Block a user