In This Article

ShellObjectChangedEventArgs Class

Provides notification event args for an IShellObject.

public class ShellObjectChangedEventArgs : EventArgs
Inheritance:
object EventArgs object

Constructors

ShellObjectChangedEventArgs(ShellObjectChangeKind, IShellObject)

Initializes an instance of the ShellObjectChangedEventArgs class.

public ShellObjectChangedEventArgs(ShellObjectChangeKind kind, IShellObject childShellObject)
Parameter Type Description
kind ShellObjectChangeKind

The ShellObjectChangeKind that indicates the kind of change notification.

childShellObject IShellObject

The child IShellObject if the change event is related to a child.

Properties

ChildShellObject

Gets the child IShellObject if the change event is related to a child.

public IShellObject ChildShellObject { get; }

Property Value

IShellObject:

The child IShellObject if the change event is related to a child.

Kind

Gets the ShellObjectChangeKind that indicates the kind of change notification.

public ShellObjectChangeKind Kind { get; }

Property Value

ShellObjectChangeKind:

The ShellObjectChangeKind that indicates the kind of change notification.

Inherited Members