[This is preliminary documentation and is subject to change.]

Class responsible for Extranet Authentication

Namespace:  OfficeClip.BusinessLayer.Extranet.Utility
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public static void GetEncodedCookieAndEncryptedArg(
	int groupId,
	AuthTkt tkt,
	TimeSpan tsExpires,
	out HttpCookie cookie,
	out string encryptedArg
)
Visual Basic (Declaration)
Public Shared Sub GetEncodedCookieAndEncryptedArg ( _
	groupId As Integer, _
	tkt As AuthTkt, _
	tsExpires As TimeSpan, _
	<OutAttribute> ByRef cookie As HttpCookie, _
	<OutAttribute> ByRef encryptedArg As String _
)
Visual C++
public:
static void GetEncodedCookieAndEncryptedArg(
	int groupId, 
	AuthTkt^ tkt, 
	TimeSpan tsExpires, 
	[OutAttribute] HttpCookie^% cookie, 
	[OutAttribute] String^% encryptedArg
)

Parameters

groupId
Type: System..::.Int32
The unique id of the group
tkt
Type: OfficeClip.BusinessLayer.Extranet.Utility..::.AuthTkt
The authenticated ticket object
tsExpires
Type: System..::.TimeSpan
time period for the cookie expiration
cookie
Type: System.Web..::.HttpCookie%
The cookie to keep track of the session
encryptedArg
Type: System..::.String%
The encrypted argument

See Also