Imported Upstream version 4.6.0.182

Former-commit-id: 439c182e520038bf50777ca2fe684f216ae28552
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-09-01 10:46:18 +00:00
parent c911219690
commit 804b15604f
118 changed files with 1007 additions and 891 deletions

View File

@ -51,17 +51,17 @@ namespace System.ServiceModel.Description
}
[MonoTODO]
protected ClientCredentials (ClientCredentials source)
protected ClientCredentials (ClientCredentials other)
{
userpass = source.userpass.Clone ();
digest = source.digest.Clone ();
initiator = source.initiator.Clone ();
recipient = source.recipient.Clone ();
windows = source.windows.Clone ();
userpass = other.userpass.Clone ();
digest = other.digest.Clone ();
initiator = other.initiator.Clone ();
recipient = other.recipient.Clone ();
windows = other.windows.Clone ();
#if !NET_2_1
issued_token = source.issued_token.Clone ();
peer = source.peer.Clone ();
support_interactive = source.support_interactive;
issued_token = other.issued_token.Clone ();
peer = other.peer.Clone ();
support_interactive = other.support_interactive;
#endif
}
@ -159,10 +159,10 @@ namespace System.ServiceModel.Description
[MonoTODO]
public virtual void ApplyClientBehavior (
ServiceEndpoint endpoint, ClientRuntime behavior)
ServiceEndpoint serviceEndpoint, ClientRuntime behavior)
{
if (endpoint == null)
throw new ArgumentNullException ("endpoint");
if (serviceEndpoint == null)
throw new ArgumentNullException ("serviceEndpoint");
if (behavior == null)
throw new ArgumentNullException ("behavior");