| ListenerConfigSetClassName Method |
Sets the class name of the IEventListener.
Namespace:
Hazelcast.Config
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax public ListenerConfig SetClassName(
string className
)
Public Function SetClassName (
className As String
) As ListenerConfig
public:
ListenerConfig^ SetClassName(
String^ className
)
member SetClassName :
className : string -> ListenerConfig
Parameters
- className
- Type: SystemString
the name of the class of the IEventListener.
Return Value
Type:
ListenerConfigthe updated ListenerConfig.
Exceptions Exception | Condition |
---|
ArgumentException | if className is null or an empty String. |
Remarks
Sets the class name of the IEventListener.
If a implementation was set, it will be removed.
See Also