Android.App.Service.OnRebind Method
Called when new clients have connected to the service, after it had previously been notified that all had disconnected in its Service.OnUnbind(Android.Content.Intent).

Syntax

[Android.Runtime.Register("onRebind", "(Landroid/content/Intent;)V", "GetOnRebind_Landroid_content_Intent_Handler")]
public virtual void OnRebind (Android.Content.Intent intent)

Parameters

intent
The Intent that was used to bind to this service, as given to Android.Content.Context.BindService(Android.Content.Intent, Android.Content.IServiceConnection, Android.Content.IServiceConnection). Note that any extras that were included with the Intent at that point will not be seen here.

Remarks

Called when new clients have connected to the service, after it had previously been notified that all had disconnected in its Service.OnUnbind(Android.Content.Intent). This will only be called if the implementation of Service.OnUnbind(Android.Content.Intent) was overridden to return true.

[Android Documentation]

Requirements

Namespace: Android.App
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1