AppDomainSetup.SandboxInterop Property

Definition

Gets or sets a value that indicates whether interface caching is disabled for interop calls in the application domain, so that a QueryInterface is performed on each call.

public:
 property bool SandboxInterop { bool get(); void set(bool value); };
public bool SandboxInterop { get; set; }
member this.SandboxInterop : bool with get, set
Public Property SandboxInterop As Boolean

Property Value

true if interface caching is disabled for interop calls in application domains created with the current AppDomainSetup object; otherwise, false.

Remarks

Disabling interface caching has a significant impact on the performance of interop calls.

This member is introduced in the .NET Framework 3.5.

Applies to