Skip to content

Commit

Permalink
Move ChannelTerminatedException to correct namespace section.
Browse files Browse the repository at this point in the history
* Moved ChannelTerminatedException from System.ServiceModel.Channels to System.ServiceModel
  • Loading branch information
StephenBonikowsky committed Feb 13, 2018
1 parent 91ffa06 commit c8643e9
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ protected ChannelFactory(System.Type channelType) { }
public virtual TChannel CreateChannel(System.ServiceModel.EndpointAddress address, System.Uri via) { return default(TChannel); }
protected override System.ServiceModel.Description.ServiceEndpoint CreateDescription() { return default(System.ServiceModel.Description.ServiceEndpoint); }
}
public partial class ChannelTerminatedException : System.ServiceModel.CommunicationException
{
public ChannelTerminatedException() { }
public ChannelTerminatedException(string message) { }
public ChannelTerminatedException(string message, System.Exception innerException) { }
protected ChannelTerminatedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
}
public abstract partial class ClientBase<TChannel> : System.IDisposable, System.ServiceModel.ICommunicationObject where TChannel : class
{
protected ClientBase() { }
Expand Down Expand Up @@ -841,13 +848,6 @@ public void PropagateChannelParameters(System.ServiceModel.Channels.IChannel inn
protected override void RemoveItem(int index) { }
protected override void SetItem(int index, object item) { }
}
public partial class ChannelTerminatedException : System.ServiceModel.CommunicationException
{
public ChannelTerminatedException() { }
public ChannelTerminatedException(string message) { }
public ChannelTerminatedException(string message, System.Exception innerException) { }
protected ChannelTerminatedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
}
public abstract partial class CommunicationObject : System.ServiceModel.ICommunicationObject
{
protected CommunicationObject() { }
Expand Down

0 comments on commit c8643e9

Please sign in to comment.