Table of Contents

Class CameraDevice.Proxy

Java proxy to handle native callbacks.

public sealed class CameraDevice.Proxy : AndroidJavaProxy
Inheritance
object
CameraDevice.Proxy
Extension Methods

Remarks

All event callbacks will be on a Java thread, and are performance sensitive.

Constructors

Proxy()

public Proxy()

Events

OnClosed

Invoked when the camera is closed.

public event Action? OnClosed

Event Type

Action

OnDisconnected

Invoked when the camera is disconnected.

public event Action? OnDisconnected

Event Type

Action

OnErred

Invoked when the camera encounters an error.

public event Action<CameraDevice.ErrorCode>? OnErred

Event Type

Action<CameraDevice.ErrorCode>

OnOpened

Invoked when the camera is opened.

public event Action? OnOpened

Event Type

Action