Delegate VisualizationLinkingCallback

Callback used to return the contents of the target dashboard of a navigation.

Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public delegate void VisualizationLinkingCallback(string dashdboardId, Stream dashboard);
Parameters
Type Name Description
System.String dashdboardId

The id of the dashboard to open

System.IO.Stream dashboard

The contents of the target dashboard in rdash format

Constructors

VisualizationLinkingCallback(Object, IntPtr)

Declaration
public VisualizationLinkingCallback(object object, IntPtr method)
Parameters
Type Name Description
System.Object object
System.IntPtr method

Methods

BeginInvoke(String, Stream, AsyncCallback, Object)

Declaration
public virtual IAsyncResult BeginInvoke(string dashdboardId, Stream dashboard, AsyncCallback callback, object object)
Parameters
Type Name Description
System.String dashdboardId
System.IO.Stream dashboard
System.AsyncCallback callback
System.Object object
Returns
Type Description
System.IAsyncResult

EndInvoke(IAsyncResult)

Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type Name Description
System.IAsyncResult result

Invoke(String, Stream)

Declaration
public virtual void Invoke(string dashdboardId, Stream dashboard)
Parameters
Type Name Description
System.String dashdboardId
System.IO.Stream dashboard