Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Notifies clients of changes made to a directory.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function DirectoryChanged ( _
pszDirectory As String _
) As Integer
int DirectoryChanged(
string pszDirectory
)
int DirectoryChanged(
[InAttribute] String^ pszDirectory
)
abstract DirectoryChanged :
pszDirectory:string -> int
function DirectoryChanged(
pszDirectory : String
) : int
Parameters
- pszDirectory
Type: System.String
[in] Name of the directory that had a change.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsFileChangeEvents::DirectoryChanged(
[in] LPCOLESTR pszDirectory
);
The change could have happened in a sub-directory if sub-directories are also being watched.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.