RemoteConference.RegisterCallback Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| RegisterCallback(RemoteConference+Callback) |
Register a callback through which to receive state updates for this conference. |
| RegisterCallback(RemoteConference+Callback, Handler) |
Register a callback through which to receive state updates for this conference. |
RegisterCallback(RemoteConference+Callback)
Register a callback through which to receive state updates for this conference.
[Android.Runtime.Register("registerCallback", "(Landroid/telecom/RemoteConference$Callback;)V", "", ApiSince=23)]
public void RegisterCallback(Android.Telecom.RemoteConference.Callback? callback);
[<Android.Runtime.Register("registerCallback", "(Landroid/telecom/RemoteConference$Callback;)V", "", ApiSince=23)>]
member this.RegisterCallback : Android.Telecom.RemoteConference.Callback -> unit
Parameters
- callback
- RemoteConference.Callback
The callback to notify of state changes.
- Attributes
Remarks
Java documentation for android.telecom.RemoteConference.registerCallback(android.telecom.Callback).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
RegisterCallback(RemoteConference+Callback, Handler)
Register a callback through which to receive state updates for this conference.
[Android.Runtime.Register("registerCallback", "(Landroid/telecom/RemoteConference$Callback;Landroid/os/Handler;)V", "", ApiSince=23)]
public void RegisterCallback(Android.Telecom.RemoteConference.Callback? callback, Android.OS.Handler? handler);
[<Android.Runtime.Register("registerCallback", "(Landroid/telecom/RemoteConference$Callback;Landroid/os/Handler;)V", "", ApiSince=23)>]
member this.RegisterCallback : Android.Telecom.RemoteConference.Callback * Android.OS.Handler -> unit
Parameters
- callback
- RemoteConference.Callback
The callback to notify of state changes.
- handler
- Handler
The handler on which to execute the callbacks.
- Attributes
Remarks
Registers a callback through which to receive state updates for this conference. Callbacks will be notified using the specified handler, if provided.
Android reference for android.telecom.RemoteConference.registerCallback.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.