Method
WriteSessionUserNameTitle
(BinaryWriter bw, int session, string userName, string title)
Source from the content-addressed store, hash-verified
| 41 | public virtual void Go(byte[] _) { } |
| 42 | |
| 43 | private void WriteSessionUserNameTitle(BinaryWriter bw, int session, string userName, string title) { |
| 44 | bw.Write(session); |
| 45 | bw.Write(title.Length); |
| 46 | bw.Write(Encoding.UTF8.GetBytes(title)); |
| 47 | bw.Write(userName.Length); |
| 48 | bw.Write(Encoding.UTF8.GetBytes(userName)); |
| 49 | } |
| 50 | |
| 51 | protected void SendScreenShot(byte[] jpgData, int session, string userName, string title) { |
| 52 | |
Callers
nothing calls this directly
Tested by
no test coverage detected