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

GetPropertyInfo() public method

Fills in a DEBUG_PROPERTY_INFO structure that describes a property. (http://msdn.microsoft.com/en-ca/library/bb145852.aspx)
public GetPropertyInfo ( enum_DEBUGPROP_INFO_FLAGS dwFields, uint dwRadix, uint dwTimeout, IDebugReference2 rgpArgs, uint dwArgCount, DEBUG_PROPERTY_INFO pPropertyInfo ) : int
dwFields enum_DEBUGPROP_INFO_FLAGS A combination of flags from the DEBUGPROP_INFO_FLAGS enumeration that specifies which fields are to /// be filled out in the pPropertyInfo structure.
dwRadix uint Radix to be used in formatting any numerical information.
dwTimeout uint Specifies the maximum time, in milliseconds, to wait before returning from this method. Use /// INFINITE to wait indefinitely.
rgpArgs IDebugReference2 Reserved for future use; set to a null value.
dwArgCount uint Reserved for future use; set to zero.
pPropertyInfo DEBUG_PROPERTY_INFO A DEBUG_PROPERTY_INFO structure that is filled in with the description of the property.
return int
        public int GetPropertyInfo(enum_DEBUGPROP_INFO_FLAGS dwFields, uint dwRadix, uint dwTimeout, IDebugReference2[] rgpArgs, uint dwArgCount, DEBUG_PROPERTY_INFO[] pPropertyInfo)
        {
            pPropertyInfo[0] = new DEBUG_PROPERTY_INFO();
            rgpArgs = null;
            pPropertyInfo[0] = ConstructDebugPropertyInfo(dwFields);

            return VSConstants.S_OK;
        }