SipErrorCodes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates values returned by several types and taken as a parameter of several types.
public enum SipErrorCodes
type SipErrorCodes =
- Inheritance
-
SipErrorCodes
Fields
Name | Value | Description |
---|---|---|
ServerUnreachable | -12 | When the server is not reachable. |
CrossDomainAuthentication | -11 | Cross-domain authentication required. |
DataConnectionLost | -10 | When data connection is lost. |
InProgress | -9 | The client is in a transaction and cannot initiate a new one. |
InvalidCredentials | -8 | When invalid credentials are provided. |
PeerNotReachable | -7 | When the peer is not reachable. |
InvalidRemoteUri | -6 | When the remote URI is not valid. |
TimeOut | -5 | When the transaction gets timed out. |
ClientError | -4 | When some error occurs on the device, possibly due to a bug. |
TransactionTerminted | -3 | When transaction is terminated unexpectedly. |
ServerError | -2 | When server responds with an error. |
SocketError | -1 | When some socket error occurs. |
NoError | 0 | Not an error. |
Remarks
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.