Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose ChannelTerminatedException in the S.SM.Primitives contract. #2564

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,13 @@ 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