CommunicationObjectAbortedException.cs 828 B

123456789101112131415161718
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel
  5. {
  6. using System;
  7. using System.Runtime.Serialization;
  8. [Serializable]
  9. public class CommunicationObjectAbortedException : CommunicationException
  10. {
  11. public CommunicationObjectAbortedException() { }
  12. public CommunicationObjectAbortedException(string message) : base(message) { }
  13. public CommunicationObjectAbortedException(string message, Exception innerException) : base(message, innerException) { }
  14. protected CommunicationObjectAbortedException(SerializationInfo info, StreamingContext context) : base(info, context) { }
  15. }
  16. }