Click or drag to resize

ProjectedDirectoryEnumerationEventArgs Class

Provides data for the DirectoryEnumeration event.
Inheritance Hierarchy

Namespace:  ShellBoost.Core.ProjFS
Assembly:  ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax
C#
public class ProjectedDirectoryEnumerationEventArgs : ProjectedEventArgs

The ProjectedDirectoryEnumerationEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodProjectedDirectoryEnumerationEventArgs
Provides data for the DirectoryEnumeration event.
Top
Properties
  NameDescription
Public propertyCommandId
Gets a value that uniquely identifies a particular invocation of a callback.
(Inherited from ProjectedEventArgs.)
Public propertyEnumerable
Gets or sets a value that receives the enumerated items from the provider. If SearchExpression is not null, the provider must return only those directory entries whose names match the search expression. If SearchExpression is null, the provider must return all directory entries.
Public propertyFilePath
Gets the path to the target file. This path is always specified relative to the virtualization root.
(Inherited from ProjectedEventArgs.)
Public propertyInstanceId
Gets a value that identifies the virtualization instance.
(Inherited from ProjectedEventArgs.)
Public propertySearchExpression
Gets the search expression. The search expression may include wildcard characters. The provider should use the ProjectedFileSystem's DoesNameContainWildCards function to determine whether wildcards are present in searchExpression, and it should use the DoesFileNameMatch function to determine whether an entry in its backing store matches a search expression containing wildcards.
Public propertyTriggeringProcess
Gets the process that triggered this callback. If this information is not available, this will be null.
(Inherited from ProjectedEventArgs.)
Public propertyTriggeringProcessId
Gets the process identifier for the process that triggered this callback. If this information is not available, this will be 0.
(Inherited from ProjectedEventArgs.)
Public propertyVersionInfo
Gets the version information if the target of the callback is a placeholder or partial file.
(Inherited from ProjectedEventArgs.)
Top
See Also