IVsXMLMemberData3 Interface

 

Extracts information about a member from an XML representation. Extends, but does not inherit from, IVsXMLMemberData. Query an object returning IVsXMLMemberData to see if it supports IVsXMLMemberData3.

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

[GuidAttribute("C04165C2-3CAC-4508-B651-DD24906DBD4D")]
[InterfaceTypeAttribute(1)]
public interface IVsXMLMemberData3

NameDescription
System_CAPS_pubmethodGetCompletionListText(String)

Gets the text of a completion list.

System_CAPS_pubmethodGetCompletionListTextAt(Int32, String)

Gets a value from a completion list.

System_CAPS_pubmethodGetExceptionCount(Int32)

Gets the number of exceptions.

System_CAPS_pubmethodGetExceptionTextAt(Int32, String, String)

Gets the exception text from the specified location.

System_CAPS_pubmethodGetFilterPriority(Int32)

Gets the priority of a filter.

System_CAPS_pubmethodGetParamCount(Int32)

Gets the number of parameters.

System_CAPS_pubmethodGetParamTextAt(Int32, String, String)

Gets the text describing a specific parameter.

System_CAPS_pubmethodGetPermissionSet(String)

Gets the permission set.

System_CAPS_pubmethodGetRemarksText(String)

Gets remarks for an item.

System_CAPS_pubmethodGetReturnsText(String)

Gets the description of return values for a method.

System_CAPS_pubmethodGetSummaryText(String)

Gets the summary text for an item.

System_CAPS_pubmethodGetTypeParamCount(Int32)

Gets the number of parameters for a type.

System_CAPS_pubmethodGetTypeParamTextAt(Int32, String, String)

Gets the type of a specific parameter.

System_CAPS_pubmethodSetOptions(UInt32)

Sets the specified options for XML member data elements.

interface IVsXMLMemberData3 : IUnknown
{
    HRESULT     SetOptions([in] XMLMEMBERDATA_OPTIONS options);
    HRESULT     GetSummaryText ([out] BSTR *pbstrSummary);
    HRESULT     GetParamCount ([out] long *piParams);
    HRESULT     GetParamTextAt ([in] long iParam, [out] BSTR *pbstrName, [out] BSTR *pbstrText);
    HRESULT     GetReturnsText ([out] BSTR *pbstrReturns);
    HRESULT     GetRemarksText ([out] BSTR *pbstrRemarks);
    HRESULT     GetExceptionCount ([out] long *piExceptions);
    HRESULT     GetExceptionTextAt ([in] long iException, [out] BSTR *pbstrType, [out] BSTR *pbstrText);
    HRESULT     GetFilterPriority ([out] long *piFilterPriority);
    HRESULT     GetCompletionListText ([out] BSTR *pbstrCompletionList);
    HRESULT     GetCompletionListTextAt ([in] long iParam, [out] BSTR *pbstrCompletionList);
    HRESULT     GetPermissionSet ([out] BSTR *pbstrPermissionSetXML);
    HRESULT     GetTypeParamCount ([out] long *piTypeParams);
    HRESULT     GetTypeParamTextAt ([in] long iTypeParam, [out] BSTR *pbstrName, [out] BSTR *pbstrText);
};
Return to top
Show: