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

Gets the archived announcements for the currently logged in user.

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

Syntax

C#
public DataSet GetAnnounceArchive(
	int userId
)
Visual Basic (Declaration)
Public Function GetAnnounceArchive ( _
	userId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetAnnounceArchive(
	int userId
)

Parameters

userId
Type: System..::.Int32
The unique user identifier.

Return Value

DataSet containing a single table with following colums
  • announceId (System.Int32)Id of the announcement.
  • gname (System.String)Name of the group for which the announcement is created.
  • announcet (System.String)title of the annoucement.
  • announced (System.String)Description of the annoucement.
  • closeDate (System.DateTime)Date and Time when this annoucement is closing.
  • uName (System.String) The name of the user who for whom this annoucement is created.

See Also