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