ExceptionExtensionsGetHelpTopicReference Method  | 
 Gets the help topic reference associated with an 
Exception.
 
    Namespace: 
   Dundas.BI
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic static string? GetHelpTopicReference(
	this Exception exception
)
<ExtensionAttribute>
Public Shared Function GetHelpTopicReference ( 
	exception As Exception
) As String
public:
[ExtensionAttribute]
static String^ GetHelpTopicReference(
	Exception^ exception
)
[<ExtensionAttribute>]
static member GetHelpTopicReference : 
        exception : Exception -> string 
Parameters
- exception
 - Type: SystemException
The exception from which to extract the data. 
Return Value
Type: 
String
            The help topic reference associated with 
exception, or 
            if none has been assigned.
            
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type 
Exception. When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
Exceptions
Remarks
            The link should be relative to the value of the 
HelpLinkUriFormat configuration setting.
            
See Also