MCPcopy Create free account
hub / github.com/CCob/BOF.NET / WriteSessionUserNameTitle

Method WriteSessionUserNameTitle

managed/BOFNET/BeaconObject.cs:43–49  ·  view source on GitHub ↗
(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

Calls 1

WriteMethod · 0.80

Tested by

no test coverage detected