IVsPersistSolutionProps.LoadUserOptions Method
Loads user options for a given solution.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function LoadUserOptions ( _
pPersistence As IVsSolutionPersistence, _
grfLoadOpts As UInteger _
) As Integer
int LoadUserOptions(
IVsSolutionPersistence pPersistence,
uint grfLoadOpts
)
int LoadUserOptions(
[InAttribute] IVsSolutionPersistence^ pPersistence,
[InAttribute] unsigned int grfLoadOpts
)
abstract LoadUserOptions :
pPersistence:IVsSolutionPersistence *
grfLoadOpts:uint32 -> int
function LoadUserOptions(
pPersistence : IVsSolutionPersistence,
grfLoadOpts : uint
) : int
Parameters
pPersistence
Type: Microsoft.VisualStudio.Shell.Interop.IVsSolutionPersistence[in] the IVsSolutionPersistence interface on which the VSPackage should call its LoadPackageUserOpts method for each stream name it wants to read from the user options (.opt) file.
grfLoadOpts
Type: System.UInt32[in] User options whose value is taken from the __VSLOADUSEROPTS DWORD.
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 IVsPersistSolutionProps::LoadUserOptions(
[in] IVsSolutionPersistence *pPersistence,
[in] VSLOADUSEROPTS grfLoadOpts
);
This method is invoked by the environment each time a VSPackage invokes the LoadPackageUserOpts method.
.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.