DocData.FilesChanged Method

Notifies clients that one or more documents changed.

Namespace:  Microsoft.VisualStudio.Modeling.Shell
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Shell (in Microsoft.VisualStudio.Modeling.Sdk.Shell.dll)

Syntax

'宣言
Public Function FilesChanged ( _
    count As UInteger, _
    files As String(), _
    changes As UInteger() _
) As Integer
'使用
Dim instance As DocData
Dim count As UInteger
Dim files As String()
Dim changes As UInteger()
Dim returnValue As Integer

returnValue = instance.FilesChanged(count, _
    files, changes)
public int FilesChanged(
    uint count,
    string[] files,
    uint[] changes
)
public:
virtual int FilesChanged(
    unsigned int count, 
    array<String^>^ files, 
    array<unsigned int>^ changes
) sealed
public final function FilesChanged(
    count : uint, 
    files : String[], 
    changes : uint[]
) : int

Parameters

  • count
    Type: System.UInt32

    The number of documents that changed.

  • files
    Type: []

    The list of documents that changed.

  • changes
    Type: []

    The list of changes for each document.

Return Value

Type: System.Int32

S_OK if the method succeeds; otherwise, it returns an error code.

Implements

IVsFileChangeEvents.FilesChanged(UInt32, [], [])

Remarks

This method implements the IVsFileChangeEvents interface.

Permissions

See Also

Reference

DocData Class

DocData Members

Microsoft.VisualStudio.Modeling.Shell Namespace