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

‘선언
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
)
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

See Also

Reference

IVsGlobalsCallback2 Interface

IVsGlobalsCallback2 Members

Microsoft.VisualStudio.Shell.Interop Namespace