Compartir a través de


IVsSimpleLibrary2.SaveState Method

Asks the library to save its persisted global Browse Containers.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

Syntax

'Declaración
Function SaveState ( _
    pIStream As IStream, _
    lptType As LIB_PERSISTTYPE _
) As Integer
'Uso
Dim instance As IVsSimpleLibrary2
Dim pIStream As IStream
Dim lptType As LIB_PERSISTTYPE
Dim returnValue As Integer

returnValue = instance.SaveState(pIStream, _
    lptType)
int SaveState(
    IStream pIStream,
    LIB_PERSISTTYPE lptType
)
int SaveState(
    [InAttribute] IStream^ pIStream, 
    [InAttribute] LIB_PERSISTTYPE lptType
)
abstract SaveState : 
        pIStream:IStream * 
        lptType:LIB_PERSISTTYPE -> int 
function SaveState(
    pIStream : IStream, 
    lptType : LIB_PERSISTTYPE
) : int

Parameters

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsSimpleLibrary2::SaveState(
   [in] IStream         *pIStream, 
   [in] LIB_PERSISTTYPE  lptType
);

The environment calls this method to indicate that browse container information should be persisted. This method is meaningful only for libraries providing global browse containers. As such, the lptType parameter is always LPT_GLOBAL. Fill the IStream object given in the pIStream parameter with whatever library information you choose to persist.

.NET Framework Security

See Also

Reference

IVsSimpleLibrary2 Interface

IVsSimpleLibrary2 Members

Microsoft.VisualStudio.Shell.Interop Namespace