C# Class GSF.TimeSeries.Transport.DataSubscriber.UserCommandArgs

EventArgs implementation for handling user commands.
Inheritance: System.EventArgs
Mostra file Open project: GridProtectionAlliance/gsf

Public Methods

Method Description
UserCommandArgs ( ServerCommand command, ServerResponse response, byte buffer, int startIndex, int length ) : System

Creates a new instance of the UserCommandArgs class.

Method Details

UserCommandArgs() public method

Creates a new instance of the UserCommandArgs class.
public UserCommandArgs ( ServerCommand command, ServerResponse response, byte buffer, int startIndex, int length ) : System
command ServerCommand The code for the user command.
response ServerResponse The code for the server's response.
buffer byte Buffer containing the message from the server.
startIndex int Index into the buffer used to skip the header.
length int The length of the message in the buffer, including the header.
return System