ICON Software Solutions
The Icon.Tools.GetCookieValue function.

Namespace:  Icon
Assembly:  Icon (in Icon.dll) Version: 2010.3.0.0 (2010.3.0.0)

Syntax

C#
public static Object GetCookieValue(
	string strCookieName,
	string strCookieKey
)
Visual Basic (Declaration)
Public Shared Function GetCookieValue ( _
	strCookieName As String, _
	strCookieKey As String _
) As Object
Visual C++
public:
static Object^ GetCookieValue(
	String^ strCookieName, 
	String^ strCookieKey
)
J#
public static Object GetCookieValue(
	String strCookieName,
	String strCookieKey
)

Parameters

strCookieName
Type: System..::.String
The name of the cookie whose key value we want to get, as string.
strCookieKey
Type: System..::.String
The cookie key whose value we want to get.

Return Value

An object expressing the key value.

Remarks

This function will take a cookie name and key, and get the cookie key value.

See Also