Method | Description | |
---|---|---|
Answer ( ) : void |
Answers an incoming SIP call.
|
|
Answer ( |
Answers an incoming SIP call.
|
|
Call ( |
Places an outgoing SIP call.
|
|
Call ( string destination ) : void |
Places an outgoing SIP call.
|
|
Cancel ( ) : void |
Cancels an outgoing SIP call that hasn't yet been answered.
|
|
Hangup ( ) : void |
Hangsup an established SIP call.
|
|
Redirect ( string destination ) : void |
Redirects an incoming SIP call.
|
|
Reject ( ) : void |
Rejects an incoming SIP call.
|
|
SIPClient ( ) : System | ||
Shutdown ( ) : void |
Shutdown the SIP tranpsort layer and any other resources the SIP client is using. Typically called when the application exits.
|
Method | Description | |
---|---|---|
CallAnswered ( ISIPClientUserAgent uac, |
An outgoing call was successfully answered.
|
|
CallFailed ( ISIPClientUserAgent uac, string errorMessage ) : void |
An outgoing call was rejected by the remote SIP UAS on an outgoing call.
|
|
CallFinished ( ) : void |
Cleans up after a SIP call has completely finished.
|
|
CallRinging ( ISIPClientUserAgent uac, |
A ringing response has been received from the remote SIP UAS on an outgoing call.
|
|
CallTrying ( ISIPClientUserAgent uac, |
A trying response has been received from the remote SIP UAS on an outgoing call.
|
|
InitialiseSIP ( ) : void |
Initialises the SIP transport layer.
|
|
SIPTransportRequestReceived ( |
Handler for processing incoming SIP requests.
|
|
UASCallCancelled ( ISIPServerUserAgent uas ) : void |
An incoming call was cancelled by the caller.
|
public Answer ( |
||
mediaManager | ||
return | void |
public Call ( |
||
mediaManager | ||
destination | string | The SIP URI to place a call to. The destination can be a full SIP URI in which case the all will /// be placed anonymously directly to that URI. Alternatively it can be just the user portion of a URI in which case it will /// be sent to the configured SIP server. |
return | void |
public Call ( string destination ) : void | ||
destination | string | The SIP URI to place a call to. The destination can be a full SIP URI in which case the all will /// be placed anonymously directly to that URI. Alternatively it can be just the user portion of a URI in which case it will /// be sent to the configured SIP server. |
return | void |
public Redirect ( string destination ) : void | ||
destination | string | |
return | void |