IVsGlobalsCallback2.WriteVariablesToData Method
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
'Declaration
Function WriteVariablesToData ( _
pVariableName As String, _
ByRef varData As Object _
) As Integer
int WriteVariablesToData(
string pVariableName,
ref Object varData
)
int WriteVariablesToData(
[InAttribute] String^ pVariableName,
[InAttribute] Object^% varData
)
abstract WriteVariablesToData :
pVariableName:string *
varData:Object byref -> int
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.
.NET Framework Security
- 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.