BlogSharp.Core.Impl.Plugins.Pingback.PingbackService.HandleNewPost C# (CSharp) Method

HandleNewPost() public method

public HandleNewPost ( PostAddedEventArgs eventArgs ) : void
eventArgs PostAddedEventArgs
return void
        public void HandleNewPost(PostAddedEventArgs eventArgs)
        {
            string[] links = ExtractUrls(eventArgs.Post.Content);
            foreach (var link in links)
            {
                ProcessLink(link);
            }
        }