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
@ -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");
|
||||
|
||||
|
@ -35,22 +35,22 @@ namespace System.ServiceModel.Description
|
||||
public interface IContractBehavior
|
||||
{
|
||||
void AddBindingParameters (
|
||||
ContractDescription description,
|
||||
ContractDescription contractDescription,
|
||||
ServiceEndpoint endpoint,
|
||||
BindingParameterCollection parameters);
|
||||
BindingParameterCollection bindingParameters);
|
||||
|
||||
void ApplyClientBehavior (
|
||||
ContractDescription description,
|
||||
ContractDescription contractDescription,
|
||||
ServiceEndpoint endpoint,
|
||||
ClientRuntime proxy);
|
||||
ClientRuntime clientRuntime);
|
||||
|
||||
void ApplyDispatchBehavior (
|
||||
ContractDescription description,
|
||||
ContractDescription contractDescription,
|
||||
ServiceEndpoint endpoint,
|
||||
DispatchRuntime dispatch);
|
||||
DispatchRuntime dispatchRuntime);
|
||||
|
||||
void Validate (
|
||||
ContractDescription description,
|
||||
ContractDescription contractDescription,
|
||||
ServiceEndpoint endpoint);
|
||||
}
|
||||
}
|
||||
|
@ -34,11 +34,11 @@ namespace System.ServiceModel.Description
|
||||
public interface IEndpointBehavior
|
||||
{
|
||||
void AddBindingParameters (ServiceEndpoint endpoint,
|
||||
BindingParameterCollection parameters);
|
||||
void ApplyDispatchBehavior (ServiceEndpoint serviceEndpoint,
|
||||
EndpointDispatcher dispatcher);
|
||||
void ApplyClientBehavior (ServiceEndpoint serviceEndpoint,
|
||||
ClientRuntime behavior);
|
||||
void Validate (ServiceEndpoint serviceEndpoint);
|
||||
BindingParameterCollection bindingParameters);
|
||||
void ApplyDispatchBehavior (ServiceEndpoint endpoint,
|
||||
EndpointDispatcher endpointDispatcher);
|
||||
void ApplyClientBehavior (ServiceEndpoint endpoint,
|
||||
ClientRuntime clientRuntime);
|
||||
void Validate (ServiceEndpoint endpoint);
|
||||
}
|
||||
}
|
||||
|
@ -34,18 +34,18 @@ namespace System.ServiceModel.Description
|
||||
public interface IOperationBehavior
|
||||
{
|
||||
void AddBindingParameters (
|
||||
OperationDescription description,
|
||||
BindingParameterCollection parameters);
|
||||
OperationDescription operationDescription,
|
||||
BindingParameterCollection bindingParameters);
|
||||
|
||||
void ApplyDispatchBehavior (
|
||||
OperationDescription description,
|
||||
DispatchOperation dispatch);
|
||||
OperationDescription operationDescription,
|
||||
DispatchOperation dispatchOperation);
|
||||
|
||||
void ApplyClientBehavior (
|
||||
OperationDescription description,
|
||||
ClientOperation proxy);
|
||||
OperationDescription operationDescription,
|
||||
ClientOperation clientOperation);
|
||||
|
||||
void Validate (
|
||||
OperationDescription description);
|
||||
OperationDescription operationDescription);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user