Writes the name and value of a solution global. How and where the method writes the name and value pair is implementation dependent.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'宣言
Function WriteVariablesToData ( _
pVariableName As String, _
ByRef varData As Object _
) As Integer
'使用
Dim instance As IVsGlobalsCallback2
Dim pVariableName As String
Dim varData As Object
Dim returnValue As Integer
returnValue = instance.WriteVariablesToData(pVariableName, _
varData)
int WriteVariablesToData(
string pVariableName,
ref Object varData
)
int WriteVariablesToData(
[InAttribute] String^ pVariableName,
[InAttribute] Object^% varData
)
function WriteVariablesToData(
pVariableName : String,
varData : Object
) : int
Parameters
pVariableName
Type: System.String[in] Pointer to a string containing the variable's name.
varData
Type: System.Object%[in] Pointer to a VARIANT containing the variable's value.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.