Gets the external action url.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static RewrittenUrl GetExternalActionUrl<T>(
	string url,
	Guid boardId,
	string actionName,
	T actionValue
)
Visual Basic
Public Shared Function GetExternalActionUrl(Of T) ( 
	url As String,
	boardId As Guid,
	actionName As String,
	actionValue As T
) As RewrittenUrl
Visual C++
public:
generic<typename T>
static RewrittenUrl^ GetExternalActionUrl(
	String^ url, 
	Guid boardId, 
	String^ actionName, 
	T actionValue
)
F#
static member GetExternalActionUrl : 
        url : string * 
        boardId : Guid * 
        actionName : string * 
        actionValue : 'T -> RewrittenUrl 

Parameters

url
Type: System..::..String
Url
boardId
Type: System..::..Guid
Board Id
actionName
Type: System..::..String
Action name
actionValue
Type: T
Action value

Type Parameters

T
Action value type

Return Value

Type: RewrittenUrl

See Also