Microsoft.R.Host.Client.PlotMessage.PlotMessage C# (CSharp) Method

PlotMessage() public method

public PlotMessage ( System.Guid deviceId, System.Guid plotId, string filePath, int deviceNum, int activePlotIndex, int plotCount, byte data ) : System
deviceId System.Guid
plotId System.Guid
filePath string
deviceNum int
activePlotIndex int
plotCount int
data byte
return System
        public PlotMessage(Guid deviceId, Guid plotId, string filePath, int deviceNum, int activePlotIndex, int plotCount, byte[] data) {
            DeviceId = deviceId;
            PlotId = plotId;
            FilePath = filePath;
            DeviceNum = deviceNum;
            ActivePlotIndex = activePlotIndex;
            PlotCount = plotCount;
            Data = data;
        }
PlotMessage