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