CmisSync.Lib.Consumer.InteractionNeededException.InitParams C# (CSharp) Méthode

InitParams() private méthode

private InitParams ( ) : void
Résultat void
        private void InitParams() {
            this.AffectedFiles = new List<IFileSystemInfo>();
            this.Actions = new Dictionary<string, Action>();
            this.Title = this.GetType().Name;
            this.Description = this.Message;
            this.Details = string.Empty;
            if (this.InnerException is CmisBaseException) {
                this.Details = (this.InnerException as CmisBaseException).ErrorContent;
            } else if (this.InnerException != null) {
                this.Details = this.InnerException.StackTrace ?? string.Empty;
            }
        }
    }