ISharePointProjectItem.ProjectUserFileData Property

Definition

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.

Applies to