DotNetWorkQueue.QueueStatus.QueueInformationError.QueueInformationError C# (CSharp) Method

QueueInformationError() public method

Initializes a new instance of the QueueInformationError class.
public QueueInformationError ( string name, string server, Exception error ) : System
name string The name.
server string The server.
error System.Exception The error.
return System
        public QueueInformationError(string name, string server, Exception error)
        {
            Name = name;
            Server = server;
            _error = error;
        }
        /// <summary>
QueueInformationError