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; }
Public Property CanSendRequest As Boolean
Get
Protected Set
public:
property bool CanSendRequest {
bool get ();
protected: void set (bool value);
}
member CanSendRequest : bool with get, set
Property Value
Type:
BooleanRemarks
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