ISharePointProjectItem.ProjectUserFileData Property
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.
Gets an IDictionary object that you can use to get or set name/value pairs that are saved in a project user file, such as files with a .csproj.user or .vbproj.user extension.
public:
property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ ProjectUserFileData { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,string> ProjectUserFileData { get; }
member this.ProjectUserFileData : System.Collections.Generic.IDictionary<string, string>
Public ReadOnly Property ProjectUserFileData As IDictionary(Of String, String)
Property Value
An object representing project user file data.
Remarks
Project user files are user-specific and generally not submitted to a source control system. The key in the dictionary is the name and value is the value.