Working with trackbacks and pingbacks in .NET
Send Trackbackvar trackback = new Trackback();
var target_url = new Uri("target_url");
var parameters = new LinkbackSendParameters {
Title = "title",
Excerpt = "excerpt",
Url = new Uri("source_url"),
BlogName = "blog_name"
};
var result = trackback.Send(target_url, parameters);Receive Trackbackvar target_url = new Uri("target_url");
var trackback = new Trackback();
var result = trackback.Receive(Request, target_url);
trackback.SendResponse(Response);Send Pingbackvar pingback = new Pingback();
var target_url = new Uri("target_url");
var parameters = new LinkbackSendParameters
{
SourceUrl = new Uri("source_url"),
TargetUrl = new Uri("target_url")
};
var result = pingback.Send(target_url, parameters);Receive Pingbackvar pingback = new Pingback();
var result = pingback.Receive(Request, null);
pingback.SendResponse(Response);Project history28.05.2009 - Switched to Mercurial 15.03.2009 - Version 0.2 updated (download source | download binary) 14.03.2009 - Version 0.2 released (download source) includes ASP.NET MVC RC2 Demo Application for sending/receiving linkbacks 14.03.2009 - Moq dependency upgraded to Moq.3.0.308.2-bin 28.02.2009 - Version 0.1 updated (download source) 28.02.2009 - Switching to Html Agility Pack for html processing (download source and unzip into dependencies folder) Dependencies in the solution: Html Agility Pack v1.3.0.0 src Moq v3.0.204.1 bin xUnit.net v1.1 bin 09.02.2009 - Version 0.1 updated (download source) 31.01.2009 - Version 0.1 released (download source)
30 Day Summary May 19 2013 — Jun 18 2013
|
12 Month Summary Jun 18 2012 — Jun 18 2013
|
Copyright
©
2013
Black Duck Software, Inc.
and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a
Creative Commons Attribution 3.0 Unported License
. Ohloh
®
and the Ohloh logo are trademarks of
Black Duck Software, Inc.
in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.