Skip to content

Commit aa6b36f

Browse files
committed
DevTools - Add ToBase64String not implemented overload to get builds passing.
Will need to be handled at a later time
1 parent 170d008 commit aa6b36f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CefSharp.Core/DevTools/DevToolsDomainBase.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,10 @@ protected string ToBase64String(byte[] bytes)
138138
{
139139
return Convert.ToBase64String(bytes);
140140
}
141+
142+
protected string ToBase64String(byte[][] bytes)
143+
{
144+
throw new NotImplementedException("Not currently supported.");
145+
}
141146
}
142147
}

0 commit comments

Comments
 (0)