Context.UnbindService(IServiceConnection) Method

Definition

Disconnect from an application service.

[Android.Runtime.Register("unbindService", "(Landroid/content/ServiceConnection;)V", "GetUnbindService_Landroid_content_ServiceConnection_Handler")]
public abstract void UnbindService (Android.Content.IServiceConnection conn);
[<Android.Runtime.Register("unbindService", "(Landroid/content/ServiceConnection;)V", "GetUnbindService_Landroid_content_ServiceConnection_Handler")>]
abstract member UnbindService : Android.Content.IServiceConnection -> unit

Parameters

conn
IServiceConnection

The connection interface previously supplied to bindService(). This parameter must not be null.

Attributes

Remarks

Disconnect from an application service. You will no longer receive calls as the service is restarted, and the service is now allowed to stop at any time.

Java documentation for android.content.Context.unbindService(android.content.ServiceConnection).

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

See also

  • <xref:Android.Content.Context.BindService(Android.Content.Intent%2c+Android.Content.IServiceConnection%2c+Android.Content.IServiceConnection)>