다음을 통해 공유


BluetoothGattServer Class

Definition

Public API for the Bluetooth GATT Profile server role.

[Android.Runtime.Register("android/bluetooth/BluetoothGattServer", DoNotGenerateAcw=true)]
public sealed class BluetoothGattServer : Java.Lang.Object, Android.Bluetooth.IBluetoothProfile, IDisposable, Java.Interop.IJavaPeerable
[<Android.Runtime.Register("android/bluetooth/BluetoothGattServer", DoNotGenerateAcw=true)>]
type BluetoothGattServer = class
    inherit Object
    interface IBluetoothProfile
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
Inheritance
BluetoothGattServer
Attributes
Implements

Remarks

Public API for the Bluetooth GATT Profile server role.

This class provides Bluetooth GATT server role functionality, allowing applications to create Bluetooth Smart services and characteristics.

BluetoothGattServer is a proxy object for controlling the Bluetooth Service via IPC. Use BluetoothManager#openGattServer to get an instance of this class.

Java documentation for android.bluetooth.BluetoothGattServer.

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.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
ConnectedDevices

Not supported - please use BluetoothManager#getConnectedDevices(int) with BluetoothProfile#GATT as argument

Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
Services

Returns a list of GATT services offered by this device.

ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)
ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)

Methods

AddService(BluetoothGattService)

Add a service to the list of services to be hosted.

CancelConnection(BluetoothDevice)

Disconnects an established connection, or cancels a connection attempt currently in progress.

ClearServices()

Remove all services from the list of provided services.

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Close()

Close this GATT server instance.

Connect(BluetoothDevice, Boolean)

Initiate a connection to a Bluetooth GATT capable device.

Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetConnectionState(BluetoothDevice)

Not supported - please use BluetoothManager#getConnectedDevices(int) with BluetoothProfile#GATT as argument

GetDevicesMatchingConnectionStates(ProfileState[])

Not supported - please use BluetoothManager#getDevicesMatchingConnectionStates(int, int[]) with BluetoothProfile#GATT as first argument

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetService(UUID)

Returns a BluetoothGattService from the list of services offered by this device.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
NotifyCharacteristicChanged(BluetoothDevice, BluetoothGattCharacteristic, Boolean, Byte[])

Send a notification or indication that a local characteristic has been updated.

NotifyCharacteristicChanged(BluetoothDevice, BluetoothGattCharacteristic, Boolean)

Send a notification or indication that a local characteristic has been updated.

ReadPhy(BluetoothDevice)

Read the current transmitter PHY and receiver PHY of the connection.

RemoveService(BluetoothGattService)

Removes a service from the list of services to be provided.

SendResponse(BluetoothDevice, Int32, GattStatus, Int32, Byte[])
SendResponse(BluetoothDevice, Int32, ProfileState, Int32, Byte[])

Send a response to a read or write request to a remote device.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetPreferredPhy(BluetoothDevice, BluetoothPhy, BluetoothPhy, BluetoothPhyOption)

Set the preferred connection PHY for this app.

ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Gets the JNI name of the type of the instance self.

JavaAs<TResult>(IJavaPeerable)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

TryJavaCast<TResult>(IJavaPeerable, TResult)

Try to coerce self to type TResult, checking that the coercion is valid on the Java side.

Applies to