FileMetadataChange Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the FileMetadataChange class.
public:
FileMetadataChange(System::String ^ relativeFilePath, System::Collections::Generic::IReadOnlyCollection<System::String ^> ^ removedMetadataKeys, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::String ^> ^ updatedMetadata);
public FileMetadataChange (string relativeFilePath, System.Collections.Generic.IReadOnlyCollection<string> removedMetadataKeys, System.Collections.Generic.IReadOnlyDictionary<string,string> updatedMetadata);
new Microsoft.VisualStudio.Workspace.VSIntegration.MetadataService.FileMetadataChange : string * System.Collections.Generic.IReadOnlyCollection<string> * System.Collections.Generic.IReadOnlyDictionary<string, string> -> Microsoft.VisualStudio.Workspace.VSIntegration.MetadataService.FileMetadataChange
Public Sub New (relativeFilePath As String, removedMetadataKeys As IReadOnlyCollection(Of String), updatedMetadata As IReadOnlyDictionary(Of String, String))
Parameters
- relativeFilePath
- String
The path of the file, relative to the workspace root
- removedMetadataKeys
- IReadOnlyCollection<String>
The metadata keys that have been removed from the set of metadata for the file.
- updatedMetadata
- IReadOnlyDictionary<String,String>
The set of new or modified metadata for the file.