VSNDK.DebugEngine.AD7Property.GetExtendedInfo C# (CSharp) Method

GetExtendedInfo() public method

Returns the extended information of a property. (http://msdn.microsoft.com/en-ca/library/bb145070.aspx) This method exists for the purpose of retrieving information that does not lend itself to being retrieved by calling the IDebugProperty2::GetPropertyInfo method. This includes information about custom viewers, managed type slots and other information. The VSNDK debug engine does not support this. Not implemented.
public GetExtendedInfo ( System &guidExtendedInfo, object &pExtendedInfo ) : int
guidExtendedInfo System GUID that determines the type of extended information to be retrieved.
pExtendedInfo object Returns a VARIANT (C++) or object (C#) that can be used to retrieve the extended property /// information. For example, this parameter might return an IUnknown interface that can be queried for an IDebugDocumentText2 /// interface.
return int
        public int GetExtendedInfo(ref System.Guid guidExtendedInfo, out object pExtendedInfo)
        {
            throw new Exception("The method or operation is not implemented.");
        }