Constructor.

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

Syntax

C#
public SubscribeArgs(
	Type parentEntityType,
	Guid parentEntityId,
	Nullable<bool> isActive,
	Object tag
)
Visual Basic
Public Sub New ( 
	parentEntityType As Type,
	parentEntityId As Guid,
	isActive As Nullable(Of Boolean),
	tag As Object
)
Visual C++
public:
SubscribeArgs(
	Type^ parentEntityType, 
	Guid parentEntityId, 
	Nullable<bool> isActive, 
	Object^ tag
)
F#
new : 
        parentEntityType : Type * 
        parentEntityId : Guid * 
        isActive : Nullable<bool> * 
        tag : Object -> SubscribeArgs

Parameters

parentEntityType
Type: System..::..Type
Parent entity type
parentEntityId
Type: System..::..Guid
Parent entity Id
isActive
Type: System..::..Nullable<(Of <(<'Boolean>)>)>
Is subscriber active
tag
Type: System..::..Object
Tag

See Also