| 123456789101112131415161718 |
- //-----------------------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace System.ServiceModel
- {
- using System;
- using System.Runtime.Serialization;
- [Serializable]
- public class CommunicationObjectAbortedException : CommunicationException
- {
- public CommunicationObjectAbortedException() { }
- public CommunicationObjectAbortedException(string message) : base(message) { }
- public CommunicationObjectAbortedException(string message, Exception innerException) : base(message, innerException) { }
- protected CommunicationObjectAbortedException(SerializationInfo info, StreamingContext context) : base(info, context) { }
- }
- }
|