ADL.ScreenCaptureSource.ScreenCaptureSource C# (CSharp) Method

ScreenCaptureSource() private method

private ScreenCaptureSource ( string id, string title, byte imageData ) : System
id string
title string
imageData byte
return System
        internal ScreenCaptureSource(string id, string title, byte[] imageData)
        {
            this._id = id;
            this._title = title;
            this._snapshot = Image.FromStream(new MemoryStream(imageData));
        }
ScreenCaptureSource