IVsPropertyFileOut.Write(String, Object, String) Method
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.
Writes a property name, value, and comment to the stream.
int Write(std::wstring const & szPropertyName, winrt::Windows::Foundation::IInspectable const & varValue, std::wstring const & szLineComment);
public int Write (string szPropertyName, object varValue, string szLineComment);
abstract member Write : string * obj * string -> int
Public Function Write (szPropertyName As String, varValue As Object, Optional szLineComment As String) As Integer
Parameters
- szPropertyName
- String
[in] String containing the name of the property.
- varValue
- Object
[in] A VARIANT containing the property value.
- szLineComment
- String
[in] An optional string containing a comment.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
Remarks
COM Signature
From vsshell.idl:
[C++]
HRESULT IVsPropertyFileOut::Write(
[in] LPCOLESTR szPropertyName,
[in] VARIANT varValue,
[in, optional] LPCOLESTR szLineComment
);