e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
73 lines
2.0 KiB
C#
73 lines
2.0 KiB
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*============================================================
|
|
**
|
|
** Class: OperationCanceledException
|
|
**
|
|
**
|
|
** Purpose: Exception for cancelled IO requests.
|
|
**
|
|
**
|
|
===========================================================*/
|
|
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
using System.Threading;
|
|
|
|
namespace System {
|
|
|
|
[Serializable]
|
|
[System.Runtime.InteropServices.ComVisible(true)]
|
|
public class OperationCanceledException : SystemException
|
|
{
|
|
[NonSerialized]
|
|
private CancellationToken _cancellationToken;
|
|
|
|
public CancellationToken CancellationToken
|
|
{
|
|
get { return _cancellationToken;}
|
|
private set { _cancellationToken = value;}
|
|
}
|
|
|
|
public OperationCanceledException()
|
|
: base(Environment.GetResourceString("OperationCanceled")) {
|
|
SetErrorCode(__HResults.COR_E_OPERATIONCANCELED);
|
|
}
|
|
|
|
public OperationCanceledException(String message)
|
|
: base(message) {
|
|
SetErrorCode(__HResults.COR_E_OPERATIONCANCELED);
|
|
}
|
|
|
|
public OperationCanceledException(String message, Exception innerException)
|
|
: base(message, innerException) {
|
|
SetErrorCode(__HResults.COR_E_OPERATIONCANCELED);
|
|
}
|
|
|
|
|
|
public OperationCanceledException(CancellationToken token)
|
|
:this()
|
|
{
|
|
CancellationToken = token;
|
|
}
|
|
|
|
public OperationCanceledException(String message, CancellationToken token)
|
|
: this(message)
|
|
{
|
|
CancellationToken = token;
|
|
}
|
|
|
|
public OperationCanceledException(String message, Exception innerException, CancellationToken token)
|
|
: this(message, innerException)
|
|
{
|
|
CancellationToken = token;
|
|
}
|
|
|
|
protected OperationCanceledException(SerializationInfo info, StreamingContext context) : base (info, context) {
|
|
}
|
|
}
|
|
}
|