Exemple #1
0
 private MaskingNode(MaskingNode parent, ITypedElement source, bool includeAll)
 {
     Source           = source;
     _settings        = parent._settings;
     _includeAll      = includeAll;
     ExceptionHandler = parent.ExceptionHandler;
 }
 private MaskingNode(MaskingNode parent, ITypedElement source)
 {
     Source           = source;
     _settings        = parent._settings;
     ExceptionHandler = parent.ExceptionHandler;
 }