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

Gets the the information corresponding to an encrypted event publish info string.

Namespace:  OfficeClip.DBLayer.Desktop
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public void GetPublishUrl(
	string publishInfo,
	ref int groupId,
	ref int createdByUserId,
	ref bool isActivated,
	ref bool showEvents,
	ref bool enableRequestFeature,
	ref int requestToUserId
)
Visual Basic (Declaration)
Public Sub GetPublishUrl ( _
	publishInfo As String, _
	ByRef groupId As Integer, _
	ByRef createdByUserId As Integer, _
	ByRef isActivated As Boolean, _
	ByRef showEvents As Boolean, _
	ByRef enableRequestFeature As Boolean, _
	ByRef requestToUserId As Integer _
)
Visual C++
public:
void GetPublishUrl(
	String^ publishInfo, 
	int% groupId, 
	int% createdByUserId, 
	bool% isActivated, 
	bool% showEvents, 
	bool% enableRequestFeature, 
	int% requestToUserId
)

Parameters

publishInfo
Type: System..::.String
Encrypted publish information related to the event published for a group.
groupId
Type: System..::.Int32%
Id of the group corresponding to which the publish information has to be obtained.
createdByUserId
Type: System..::.Int32%
Id of the user who is publishing the events.
isActivated
Type: System..::.Boolean%
Flag (True/False) indicating whether publish url is activated.
showEvents
Type: System..::.Boolean%
Flag (True/False) indicating whether to show the events or not.
enableRequestFeature
Type: System..::.Boolean%
Flag (True/False) indicating whether the external users can request an event from the published events screen.
requestToUserId
Type: System..::.Int32%
Id of the user to whom the new event requests should be sent.

See Also