Catel.ExceptionHandling.BufferedEventArgs.BufferedEventArgs C# (CSharp) Method

BufferedEventArgs() public method

Initializes a new instance of the BufferedEventArgs class.
The is null.
public BufferedEventArgs ( Exception bufferedException, System.DateTime dateTime ) : System
bufferedException System.Exception The buffered exception.
dateTime System.DateTime the date time that indicates when the buffering was invoked.
return System
        public BufferedEventArgs(Exception bufferedException, DateTime dateTime)
        {
            Argument.IsNotNull("bufferedException", bufferedException);

            BufferedException = bufferedException;

            DateTime = dateTime;
        }
        #endregion
BufferedEventArgs