Microsoft.R.Host.Client.PlotMessage.PlotMessage C# (CSharp) Méthode

PlotMessage() public méthode

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
Résultat 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