Subtext.Framework.XmlRpc.MetaWeblog.AddCommunityCredits C# (CSharp) Méthode

AddCommunityCredits() private méthode

private AddCommunityCredits ( Entry entry ) : void
entry Subtext.Framework.Components.Entry
Résultat void
        private void AddCommunityCredits(Entry entry)
        {
            string result = string.Empty;

            try
            {
                CommunityCreditNotification.AddCommunityCredits(entry);
            }
            catch (CommunityCreditNotificationException ex)
            {
                Log.WarnFormat("Community Credit ws returned the following response while notifying for the url {0}: {1}", entry.FullyQualifiedUrl.ToString(), ex.Message);
            }
            catch (Exception ex)
            {
                Log.Error("Error while connecting to the Community Credit webservice", ex);
            }
        }