Exemple #1
0
 protected new ShellProperty <TRawValue> GetShellProperty(
     ShellRefObject parent)
 {
     return(_shellProperty ??= parent
            .ShellObject
            .Properties
            .GetProperty <TRawValue>(PropertyKey));
 }
Exemple #2
0
 public override void SetValueBase(
     ShellRefObject parentBase,
     TValue value)
 {
     SetValue((TParent)parentBase, value);
 }
Exemple #3
0
 public abstract void SetValueBase(
     ShellRefObject parentBase,
     _TValue value);
Exemple #4
0
 public override TValue GetValueBase(
     ShellRefObject parentBase)
 {
     return(GetValue((TParent)parentBase));
 }
Exemple #5
0
 public abstract _TValue GetValueBase(
     ShellRefObject parentBase);