Creates a member index object for the given metadata binary.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function CreateXMLMemberIndex ( _
    pszBinaryName As String, _
    <OutAttribute> ByRef ppIndex As IVsXMLMemberIndex _
) As Integer
int CreateXMLMemberIndex(
    string pszBinaryName,
    out IVsXMLMemberIndex ppIndex
)
int CreateXMLMemberIndex(
    [InAttribute] String^ pszBinaryName, 
    [OutAttribute] IVsXMLMemberIndex^% ppIndex
)
abstract CreateXMLMemberIndex : 
        pszBinaryName:string * 
        ppIndex:IVsXMLMemberIndex byref -> int
function CreateXMLMemberIndex(
    pszBinaryName : String, 
    ppIndex : IVsXMLMemberIndex
) : int
Parameters
- pszBinaryName 
 Type: String- [in] Pointer to a string containing the fully qualified name of the metadata file. 
- ppIndex 
 Type: Microsoft.VisualStudio.Shell.Interop.IVsXMLMemberIndex%- [out] Pointer to an IVsXMLMemberIndex interface providing an index to the metadata. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsXMLMemberIndexService::CreateXMLMemberIndex(
   [in] LPCOLESTR pszBinaryName, 
   [out] IVsXMLMemberIndex **ppIndex
);
.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.