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

Inserts a new email Address into the blocked sender list if it already does not exist for the currently logged in user.

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

Syntax

C#
public int UpdateBlockedEmailAddress(
	string blockedEmailAddress,
	int userId
)
Visual Basic (Declaration)
Public Function UpdateBlockedEmailAddress ( _
	blockedEmailAddress As String, _
	userId As Integer _
) As Integer
Visual C++
public:
int UpdateBlockedEmailAddress(
	String^ blockedEmailAddress, 
	int userId
)

Parameters

blockedEmailAddress
Type: System..::.String
Email Address which need to be added to the blocked list.
userId
Type: System..::.Int32
Unique id for the user

Return Value

0 if successful, -1 in case of an error

See Also