Delete subscriber.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual bool DeleteSubscriber(
	Type parentEntityType,
	Guid parentEntityId,
	Nullable<Guid> userId,
	string email
)
Visual Basic
Public Overridable Function DeleteSubscriber ( 
	parentEntityType As Type,
	parentEntityId As Guid,
	userId As Nullable(Of Guid),
	email As String
) As Boolean
Visual C++
public:
virtual bool DeleteSubscriber(
	Type^ parentEntityType, 
	Guid parentEntityId, 
	Nullable<Guid> userId, 
	String^ email
)
F#
abstract DeleteSubscriber : 
        parentEntityType : Type * 
        parentEntityId : Guid * 
        userId : Nullable<Guid> * 
        email : string -> bool 
override DeleteSubscriber : 
        parentEntityType : Type * 
        parentEntityId : Guid * 
        userId : Nullable<Guid> * 
        email : string -> bool 

Parameters

parentEntityType
Type: System..::..Type
Parent entity type
parentEntityId
Type: System..::..Guid
Parent entity id
userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
User Id
email
Type: System..::..String
Email

Return Value

Type: Boolean
True if subscriber is deleted, otherwise False

Implements

ISubscribeEngineBLL..::..DeleteSubscriber(Type, Guid, Nullable<(Of <<'(Guid>)>>), String)

See Also