This C# sample code sends an XML-RPC ping to Technorati to get into the Technorati high-priority indexing queue.
Download the Tortuga .NET Component which includes the Technorati class here:
.NET Component
// Technorati Ping C# Example Source Code
Tortuga.Technorati tech = new Tortuga.Technorati();
// The Ping XML-RPC call does not need an API key.
string blogUrl = "http://www.geekswithblogs.net/chilkat";
string blogName = "Blogger and News Syndication Software";
bool ok = tech.Ping(blogUrl,blogName);
MessageBox.Show("ok = " + Convert.ToString(ok));