MarshalObjectiveCExceptionMode Enum

Definition

This enum is used to specify what to do when an Objective-C exception is thrown, and that exception reaches managed code.

public enum MarshalObjectiveCExceptionMode
type MarshalObjectiveCExceptionMode = 
Inheritance
MarshalObjectiveCExceptionMode

Fields

Abort 3

Abort when an Objective-C exception reaches managed code.

Default 0

The default mode; this depends on the platform.

Disable 4

Disable marshalling Objective-C exceptions.

ThrowManagedException 2

Convert the Objective-C exception to a managed exception.

UnwindManagedCode 1

Let the Objective-C runtime unwind managed frames.

Applies to

See also