Location:
btsdp.h
Link against: bluetooth.lib
MSdpAgentNotifier
Supported from 6.1
Handles responses to Bluetooth Service Discovery Protocol queries.
Clients that make queries through CSdpAgent
must implement this interface to handle the responses.
Defined in MSdpAgentNotifier
:
AttributeRequestComplete()
, AttributeRequestResult()
, NextRecordRequestComplete()
virtual void AttributeRequestComplete(TSdpServRecordHandle aHandle, TInt aError) = 0;
Called when an attribute request (CSdpAgent::AttributeRequestL()
) finds that there are no more attributes to be returned.
|
virtual void AttributeRequestResult(TSdpServRecordHandle aHandle, TSdpAttributeID aAttrID, CSdpAttrValue* aAttrValue) = 0;
Called by the attribute request function (CSdpAgent::AttributeRequestL()
) to pass the results of a successful attribute request.
|
virtual void NextRecordRequestComplete(TInt aError, TSdpServRecordHandle aHandle, TInt aTotalRecordsCount) = 0;
Called when an service record request (CSdpAgent::NextRecordRequestComplete()
) operation completes.
|