Ejemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of RemoteError
        /// </summary>
        /// <param name="errorCode">The error that occured</param>
        public RemoteError(RemoteErrorCode errorCode)
        {
            XmlNames.Init(xmlNamespace);

            this.CallId    = Guid.Empty;
            this.ErrorCode = errorCode;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance or ErrorResult with the specified error-code
 /// </summary>
 /// <param name="errorCode">The error-code of the error that occurred</param>
 public ErrorResult(RemoteErrorCode errorCode)
 {
     this.ErrorCode = errorCode;
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Initializes a new instance of RemoteError
        /// </summary>
        /// <param name="errorCode">The error that occured</param>
        public RemoteError(RemoteErrorCode errorCode)
        {
            XmlNames.Init(xmlNamespace);

            this.CallId = Guid.Empty;
            this.ErrorCode = errorCode;
        }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance or ErrorResult with the specified error-code
 /// </summary>
 /// <param name="errorCode">The error-code of the error that occurred</param>
 public ErrorResult(RemoteErrorCode errorCode)
 {
     this.ErrorCode = errorCode;
 }