PortalChkRecurrEvtIds Method
This method verifies if the event ID belongs to a recurring event.

Namespace:  PortalService
 

Syntax
C#
public long ChkRecurrEvtIds(
	long eventId,
	out bool isRecurrEvtId,
	out bool isEventTypePaid,
	out string error
)

Parameters

eventId
Type: SystemInt64
[in]The ID of the event.
isRecurrEvtId
Type: SystemBoolean
[out]This parameter returns one of the following values:
  • TRUE - Indicates that the event is a recurring event.
  • FALSE - Indicates that the event is not a recurring event.
isEventTypePaid
Type: SystemBoolean
[out]This parameter returns one of the following values:
  • TRUE - Indicates that the event is a paid event.
  • FALSE - Indicates that the event is a free event.
error
Type: SystemString
[out]The error message returned if the operation fails.

Return Value

Type: Int64
This method returns 0 if the operation is successful and a negative value if the operation fails.
See Also