DocData.FilesChanged Method
Notifies clients that one or more documents changed.
Namespace: Microsoft.VisualStudio.Modeling.Shell
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.Shell.11.0.dll)
Syntax
'Declaration
Public Function FilesChanged ( _
count As UInteger, _
files As String(), _
changes As UInteger() _
) As Integer
public int FilesChanged(
uint count,
string[] files,
uint[] changes
)
public:
virtual int FilesChanged(
unsigned int count,
array<String^>^ files,
array<unsigned int>^ changes
) sealed
abstract FilesChanged :
count:uint32 *
files:string[] *
changes:uint32[] -> int
override FilesChanged :
count:uint32 *
files:string[] *
changes:uint32[] -> int
public final function FilesChanged(
count : uint,
files : String[],
changes : uint[]
) : int
Parameters
count
Type: UInt32The number of documents that changed.
files
Type: array<String[]The list of documents that changed.
changes
Type: array<UInt32[]The list of changes for each document.
Return Value
Type: Int32
S_OK if the method succeeds; otherwise, it returns an error code.
Implements
IVsFileChangeEvents.FilesChanged(UInt32, array<String[], array<UInt32[])
Remarks
This method implements the IVsFileChangeEvents interface.
.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.