Package.IVsPersistSolutionOpts.LoadUserOptions Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Loads user options for a given solution.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Syntax
‘선언
Private Function LoadUserOptions ( _
pPersistance As IVsSolutionPersistence, _
options As UInteger _
) As Integer Implements IVsPersistSolutionOpts.LoadUserOptions
‘사용 방법
Dim instance As Package
Dim pPersistance As IVsSolutionPersistence
Dim options As UInteger
Dim returnValue As Integer
returnValue = CType(instance, IVsPersistSolutionOpts).LoadUserOptions(pPersistance, _
options)
int IVsPersistSolutionOpts.LoadUserOptions(
IVsSolutionPersistence pPersistance,
uint options
)
private:
virtual int LoadUserOptions(
IVsSolutionPersistence^ pPersistance,
unsigned int options
) sealed = IVsPersistSolutionOpts::LoadUserOptions
private abstract LoadUserOptions :
pPersistance:IVsSolutionPersistence *
options:uint32 -> int
private override LoadUserOptions :
pPersistance:IVsSolutionPersistence *
options:uint32 -> int
JScript does not support explicit interface implementations.
Parameters
- pPersistance
Type: Microsoft.VisualStudio.Shell.Interop.IVsSolutionPersistence
IVsSolutionPersistence object.
- options
Type: System.UInt32
User options whose value is taken from the __VSLOADUSEROPTS
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsPersistSolutionOpts.LoadUserOptions(IVsSolutionPersistence, UInt32)
Remarks
Called when a solution is opened, and allows the Visual Studio environment to inspect our options.
.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.