IVsFindSymbol2.SetUserOptions(Guid, UInt32, VSOBSEARCHCRITERIA2[]) Method

Definition

Sets search options.

public:
 int SetUserOptions(Guid % guidScope, System::UInt32 dwSubID, cli::array <Microsoft::VisualStudio::Shell::Interop::VSOBSEARCHCRITERIA2> ^ pobSrch);
public int SetUserOptions (ref Guid guidScope, uint dwSubID, Microsoft.VisualStudio.Shell.Interop.VSOBSEARCHCRITERIA2[] pobSrch);
abstract member SetUserOptions : Guid * uint32 * Microsoft.VisualStudio.Shell.Interop.VSOBSEARCHCRITERIA2[] -> int
Public Function SetUserOptions (ByRef guidScope As Guid, dwSubID As UInteger, pobSrch As VSOBSEARCHCRITERIA2()) As Integer

Parameters

guidScope
Guid

[in] A GUID specifying the search scope.

dwSubID
UInt32

[in] Scope subID. Must be zero unless guidSymbolScope is GUID_VsSymbolScope_Frameworks.

pobSrch
VSOBSEARCHCRITERIA2[]

[in] Bit flags indicating search options. Constructed using values from the _VSOBSEARCHOPTIONS2 enumeration.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell90.idl:

HRESULT SetUserOptions(  
    [in] REFGUID guidScope,   
    [in] DWORD dwSubID,   
    [in] const VSOBSEARCHCRITERIA2 *pobSrch  
);  

Notes to Callers

There are five GUIDs for specifying the search scope defined in vsshell80.idl:

GUID Name Description
GUID_VsSymbolScope_All Search all scopes for the symbol.
GUID_VsSymbolScope_OBSelectedComponents Search items selected in the Object Browser for the symbol.
GUID_VsSymbolScope_FSSelectedComponents Search items selected in the file system.
GUID_VsSymbolScope_Frameworks Search all frameworks for the symbol.
GUID_VsSymbolScope_Solution Search the solution for the symbol.

Applies to