CmisSync.Lib.Events.CmisConnectionExceptionEvent.CmisConnectionExceptionEvent C# (CSharp) Method

CmisConnectionExceptionEvent() public method

Initializes a new instance of the CmisSync.Lib.Events.CmisConnectionExceptionEvent class. The OccuredAt property will be set automatically to the actual time when the constructor is called.
public CmisConnectionExceptionEvent ( DotCMIS.Exceptions.CmisConnectionException connectionException ) : System
connectionException DotCMIS.Exceptions.CmisConnectionException Connection exception.
return System
        public CmisConnectionExceptionEvent(CmisConnectionException connectionException) : base(connectionException) {
            this.OccuredAt = DateTime.Now;
        }
CmisConnectionExceptionEvent