IVsSolutionPersistence.SavePackageSolutionProps Method

Writes properties to the solution .sln file.

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

Syntax

‘선언
Function SavePackageSolutionProps ( _
    fPreLoad As Integer, _
    pHierarchy As IVsHierarchy, _
    ppSP As IVsPersistSolutionProps, _
    pszKey As String _
) As Integer
‘사용 방법
Dim instance As IVsSolutionPersistence
Dim fPreLoad As Integer
Dim pHierarchy As IVsHierarchy
Dim ppSP As IVsPersistSolutionProps
Dim pszKey As String
Dim returnValue As Integer

returnValue = instance.SavePackageSolutionProps(fPreLoad, _
    pHierarchy, ppSP, pszKey)
int SavePackageSolutionProps(
    int fPreLoad,
    IVsHierarchy pHierarchy,
    IVsPersistSolutionProps ppSP,
    string pszKey
)
int SavePackageSolutionProps(
    [InAttribute] int fPreLoad, 
    [InAttribute] IVsHierarchy^ pHierarchy, 
    [InAttribute] IVsPersistSolutionProps^ ppSP, 
    [InAttribute] String^ pszKey
)
abstract SavePackageSolutionProps : 
        fPreLoad:int * 
        pHierarchy:IVsHierarchy * 
        ppSP:IVsPersistSolutionProps * 
        pszKey:string -> int 
function SavePackageSolutionProps(
    fPreLoad : int, 
    pHierarchy : IVsHierarchy, 
    ppSP : IVsPersistSolutionProps, 
    pszKey : String
) : int

Parameters

  • fPreLoad
    Type: System.Int32
    [in] true if the solution properties are to be pre-loaded.
  • pszKey
    Type: System.String
    [in] Name of the solution file section (the property bag) for which the properties should be written.

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 vsshell.idl:

HRESULT IVsSolutionPersistence::SavePackageSolutionProps(
   [in] BOOL fPreLoad,
   [in] IVsHierarchy *pHierarchy,
   [in] IVsPersistSolutionProps *pPSP,
   [in] LPCOLESTR pszKey
);

Use this method to obtain the property bag name to be used with WriteSolutionProps

.NET Framework Security

See Also

Reference

IVsSolutionPersistence Interface

IVsSolutionPersistence Members

Microsoft.VisualStudio.Shell.Interop Namespace