// TODO - ShellProperties.cs also has a similar class that is used for creating // a ShellObject specific IShellProperty. These 2 methods should be combined or moved to a // common location. internal static IShellProperty CreateTypedProperty(PropertyKey propKey, IPropertyStore NativePropertyStore) { return(ShellPropertyFactory.CreateShellProperty(propKey, NativePropertyStore)); }
internal IShellProperty CreateTypedProperty(PropertyKey propKey) { return(ShellPropertyFactory.CreateShellProperty(propKey, ParentShellObject)); }