Class UserCancelledException
Exception thrown to indicate that the user has explicitly requested an operation to be aborted.
Inherited Members
Namespace: Sdl.FileTypeSupport .Framework
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public class UserCancelledException : Exception, ISerializable, _Exception
Remarks
Applications can use this exception to handle user interaction in event handlers and other delegates. If the user cancels the operation during a callback the application can throw this exception from the callback and handle it separate from other exception types in the top-level originating call.
This exception is explicitly NOT derived from File
Constructors
UserCancelledException()
Cancel without message.
Declaration
public UserCancelledException()
UserCancelledException(SerializationInfo, StreamingContext)
Protected constructor used for de-serialization.
Declaration
protected UserCancelledException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
Serialization |
info | |
Streaming |
context |
UserCancelledException(string)
Cancel with a message.
Declaration
public UserCancelledException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message |
UserCancelledException(string, Exception)
Cancel with a message and a related exception.
Declaration
public UserCancelledException(string message, Exception inner)