PostSharpAPI ReferencePost­Sharp.​Patterns.​RecordingRecording­Scope­Option
Open sandboxFocus

RecordingScopeOption Class

Enumerates the kinds of recording scope.

Inheritance
RecordingScopeOption
Namespace: PostSharp.Patterns.Recording
Assembly: PostSharp.Patterns.Model.dll
Syntax
public sealed class RecordingScopeOption : Enum

Fields

Name Description
Atomic

Causes changes in the RecordingScope to be rolled back if the scope execution is not successful. In case of declarative scope (RecordingScopeAttribute), it means that changes done by the method will be rolled back if the method results in an exception. For imperative scopes (OpenScope(RecordingScopeOption), the changes will be rolled back if the scope is disposed by the Dispose() method without previous call to the Complete() method. Unlike normal scopes, atomic scopes are nested. However, only the top scope can be seen in the UndoOperations and RedoOperations collections.

Default

For declarative scopes, a RecordingScope is automatically opened for the first public method of a recordable object on the call stack.

Skip

Prevents a RecordingScope to be automatically opened for the target method. Cannot be used with OpenScope(RecordingScopeOption).

value__

See Also