Well, the problem is that you want to run a background task on a website.
So basically you need to find a technology allowing you to perform long operation in your server and communicate this information back to your clients.
Usually I would use WebSocket to do that. But your problem is not with Tweetinvi, your problem is about choosing the right technologies to implement what you want to do.
If you want to perform a search you can do it with a classical ASP.NET website.
If you want live information you will need to use a stream and therefore WebSocket.
I hope this makes some sense.
Linvi
So basically you need to find a technology allowing you to perform long operation in your server and communicate this information back to your clients.
Usually I would use WebSocket to do that. But your problem is not with Tweetinvi, your problem is about choosing the right technologies to implement what you want to do.
If you want to perform a search you can do it with a classical ASP.NET website.
If you want live information you will need to use a stream and therefore WebSocket.
I hope this makes some sense.
Linvi