Defines all the interfaces for ServiceProvider.
| C# | Visual Basic | Visual C++ |
public interface IServiceProvider
Public Interface IServiceProvider
public interface class IServiceProvider
| All Members | Methods | Events | |||
| Icon | Member | Description |
|---|---|---|
| GetAutoKeepAliveEnabled()()() |
Lets the application know if auto keep alive is enabled.
| |
| GetDeviceIdList(String, Object) |
Sends a GetDeviceIdList message to the server.
| |
| GetDeviceIdList(Object) |
Sends a getDeviceIdList message to the server.
| |
| GetMonitorList(String, Object) |
Sends a getMonitorList message to the server.
| |
| GetMonitorList(Object) |
Sends a getMonitorList message to the server.
| |
| GetSessionIdList(Object) |
Sends a getSessionIdList message to the server.
| |
| OnConvertDialStringToE164Response |
Handler for ConvertDialStringToE164Response responses.
| |
| OnConvertE164ToDialStringResponse |
Handler for ConvertE164ToDialStringResponse responses.
| |
| OnGetDeviceIdListEvent |
Handler for GetDeviceIdListEvent events.
| |
| OnGetDeviceIdListResponse |
Handler for GetDeviceIdListResponse responses.
| |
| OnGetMonitorListEvent |
Handler for GetMonitorListEventHandler events.
| |
| OnGetMonitorListResponse |
Handler for GetMonitorListResponse responses.
| |
| OnGetSessionIdListResponse |
Handler for GetSessionIdListResponse responses.
| |
| OnMissedAtLeastOneKeepAliveEvent |
Handler for Missed Keep Alive events.
| |
| OnResetApplicationSessionResponse |
Handler for ResetApplicationSession responses.
| |
| OnServerConnectionDownEvent |
Handler for Server Connection Down events.
| |
| OnServerConnectionNotActiveEvent |
Handler for Server Connection Not Active events.
| |
| OnSessionManagementStartMonitorResponse |
Event registration for responses to StartSessionManagementMonitor requests.
| |
| OnSessionManagementStopMonitorResponse |
Event registration for responses to StopSessionManagementMonitor requests.
| |
| OnStartApplicationSessionResponse |
Handler for StartApplcationSession responses.
| |
| OnStopApplicationSessionResponse |
Handler for StopApplicaitonSession responses.
| |
| OnTransferMonitorObjectsEvent |
Handler for TransferMonitorObjectsEvent events.
| |
| OnTransferMonitorObjectsResponse |
Handler for TransferMonitorObjectsResponse responses.
| |
| Reconnect(String, Object) |
Sends a StartApplicationSession message to the server. If sessionId is not null then the server will try to reconnect
a session that has timed out or become inactive.
| |
| ResetApplicationSession(Object, Int32) |
Send a ResetApplicationSession XML message to the server.
| |
| SessionManagementStartMonitor(ServiceProvider..::.SessionManagementEvents, String, Object) |
Request monitoring on the links.
| |
| SessionManagementStopMonitor(String, Object) |
Turn a monitor off.
| |
| ShutDown(ServiceProvider..::.ServiceProviderObjectDeactivatedEventArgs..::.ServiceProviderObjectDeactivatedReason, String) |
Allows the application to tell the Service Provider to shutdown. The Service Provider will in turn notify ThirdPartyCallControl,
CallInformationLink, and all the Devices that have been created to also shut down. The Devices in turn will notify their
Phone objects. The Phone Pbjects will in turn notify their Media Objects.
Calling this method will also force the socket to the server to be closed. Therefore, once this method returns control to the application the
application should not invoke any methods which will result in a message being sent to the server. If the application does do this then
exceptions will be thrown back to the application.
Note: The API provides a callback (OnObjectDeactivatedEvent) for all publicly exposed objects. This will allow the application the ability to easily
be notified when an object has bee shutdown (deactivated).
| |
| StartApplicationSession(String, Int32, String, String, String, Int32, Int32, String, Boolean, Object, Boolean, Boolean) |
Sends a StartApplicationSession message to the server.
| |
| StartApplicationSession(String, Int32, String, String, String, Int32, Int32, String, Boolean, Object, Boolean, Boolean, LocalCertificateSelectionCallback) |
Sends a StartApplicationSession message to the server.
| |
| StartAutoKeepAlive(Int32) |
Tell the API to start automatically sending the ResetApplicationSession messages every InernalInMs milliseconds. 1,000 milliseconds is 1 second.
If the API is already sending messages then it will cease doing so on the previous interval.
| |
| StopApplicationSession(String, Object) |
Sends a Stop ApplicationSession XML message to the server. If Devices have objects that are registered the API will attempt to
unregister them BEFORE sending this message. In general, the application should have unregistered all devices (and processed the
unregistration response) BEFORE invoking this method.
| |
| StopAutoKeepAlive()()() |
Stops the ResetApplicationSession messages from automatically being sent to the server.
| |
| TransferMonitorObjects(String, String, Object) |
Sends a transferMonitorObjects message to the server.
|
Assembly: ServiceProvider (Module: ServiceProvider)