PccService.OnBind(Intent) 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.
Returns the communication channel to the service.
[Android.Runtime.Register("onBind", "(Landroid/content/Intent;)Landroid/os/IBinder;", "", ApiSince=37)]
public override sealed Android.OS.IBinder OnBind(Android.Content.Intent? intent);
[<Android.Runtime.Register("onBind", "(Landroid/content/Intent;)Landroid/os/IBinder;", "", ApiSince=37)>]
override this.OnBind : Android.Content.Intent -> Android.OS.IBinder
Parameters
- intent
- Intent
The Intent that was used to bind to this service.
Returns
An IBinder through which clients can call back to the service. A system proxy binder will be returned to the caller, if it is not executing in a PCC UID, or isn't a trusted component.
- Attributes
Remarks
Returns the communication channel to the service.
Android reference for android.app.privatecompute.PccService.onBind.
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.