How to get IAP ID of a connection
Article Metadata
The code sample below illustrates how to get the IAP ID used by a connection.
_LIT(KIapIdSettingName, "IAP\\Id");
// start a test connection
RSocketServ socketServ;
User::LeaveIfError(socketServ.Connect());
CleanupClosePushL(socketServ);
RConnection connection;
User::LeaveIfError(connection.Open(socketServ));
CleanupClosePushL(connection);
User::LeaveIfError(connection.Start());
// get the IAP ID
TUint32 iapId;
User::LeaveIfError(connection.GetIntSetting(KIapIdSettingName, iapId));
CleanupStack::PopAndDestroy(2); // connection, socketServ


(no comments yet)