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

Updates a New Forum into the Database

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

Syntax

C#
public void Update(
	int forumId,
	string forumName,
	string forumDesc,
	int userId,
	int groupId
)
Visual Basic (Declaration)
Public Sub Update ( _
	forumId As Integer, _
	forumName As String, _
	forumDesc As String, _
	userId As Integer, _
	groupId As Integer _
)
Visual C++
public:
void Update(
	int forumId, 
	String^ forumName, 
	String^ forumDesc, 
	int userId, 
	int groupId
)

Parameters

forumId
Type: System..::.Int32
The Id of the forum being updated
forumName
Type: System..::.String
The Name of the Forum
forumDesc
Type: System..::.String
Forum Description
userId
Type: System..::.Int32
The unique id for the user.
groupId
Type: System..::.Int32
The unique id for the group.

See Also