Click or drag to resize

AbstractServiceCanSendRequest Property

Indicate whether this service can send request (implements ISendRequest interface)

Namespace:  Hummingbird.TestFramework.Services
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
public bool CanSendRequest { get; protected set; }

Property Value

Type: Boolean
Remarks
All classes inherited from AbstractClient have this flag True. All classes inherited from AbstractServer has this flag false The implemented service can decide where CanSendRequest is True or False according to the situation: For example: a Socket Server can only send messages to client when at least a client is connected.
See Also