You can pass it as Action<string>
– which means it is a method with a single parameter of type string
that doesn’t return anything (void) :
public void DoRequest(string request, Action<string> callback)
{
// do stuff....
callback("asdf");
}