Microsoft.R.Host.Client.PlotMessage.PlotMessage C# (CSharp) 메소드

PlotMessage() 공개 메소드

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
리턴 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