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

Gets the details for a particular annoucement identified by announceId

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

Syntax

C#
public void GetDetail(
	int announceId,
	ref string title,
	ref string desc,
	ref DateTime cdt,
	ref DateTime edt,
	int groupId,
	int userId
)
Visual Basic (Declaration)
Public Sub GetDetail ( _
	announceId As Integer, _
	ByRef title As String, _
	ByRef desc As String, _
	ByRef cdt As DateTime, _
	ByRef edt As DateTime, _
	groupId As Integer, _
	userId As Integer _
)
Visual C++
public:
void GetDetail(
	int announceId, 
	String^% title, 
	String^% desc, 
	DateTime% cdt, 
	DateTime% edt, 
	int groupId, 
	int userId
)

Parameters

announceId
Type: System..::.Int32
The id of the announcement.
title
Type: System..::.String%
title of the announcement.
desc
Type: System..::.String%
Description of the annoucement.
cdt
Type: System..::.DateTime%
Date and Time when this annoucement was created.
edt
Type: System..::.DateTime%
Date and Time when this annoucement expires.
groupId
Type: System..::.Int32
The unique identifier for the group.
userId
Type: System..::.Int32
The unique id for the user.

See Also