private void FetchBlockByHeight(UInt64 height, Action <ErrorCode, Block, UInt64> handler) { GCHandle handlerHandle = GCHandle.Alloc(handler); IntPtr handlerPtr = (IntPtr)handlerHandle; ChainNative.chain_fetch_block_by_height(nativeInstance_, handlerPtr, height, internalFetchBlockHandler_); }