From b28eb6091ad86d3758a5a3d8cf66e762c2b9d7ff Mon Sep 17 00:00:00 2001 From: linvi Date: Wed, 20 Jul 2016 11:51:41 +0100 Subject: [PATCH] Removed uncessary delegates definition file --- Tweetinvi.Core/Core/Events/Delegates.cs | 26 ------------------------- Tweetinvi.Core/Tweetinvi.Core.csproj | 1 - 2 files changed, 27 deletions(-) delete mode 100644 Tweetinvi.Core/Core/Events/Delegates.cs diff --git a/Tweetinvi.Core/Core/Events/Delegates.cs b/Tweetinvi.Core/Core/Events/Delegates.cs deleted file mode 100644 index 7c39c1ed5..000000000 --- a/Tweetinvi.Core/Core/Events/Delegates.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Collections.Generic; -using System.Net; - -namespace Tweetinvi.Core.Events -{ - /// - /// Delegate used to handle WebExceptions - /// - /// WebException to handle - public delegate void WebExceptionHandlingDelegate(WebException ex); - - /// - /// Delegate used to handle information retrieved and passed through a Dictionary[string, object] - /// - /// Information retrieved - public delegate void ObjectResponseDelegate(Dictionary responseObject); - - /// - /// Delegate used to handle queries that require the use of cursors - /// - /// Response given by the Twitter API - /// Cursor used during the previous query - /// Cursor to be used in the next query - /// /// Nb of objects processed - public delegate int DynamicResponseDelegate(Dictionary responseObject, long previousCursor, long nextCursor); -} \ No newline at end of file diff --git a/Tweetinvi.Core/Tweetinvi.Core.csproj b/Tweetinvi.Core/Tweetinvi.Core.csproj index 4057d10fa..b81fa5e82 100644 --- a/Tweetinvi.Core/Tweetinvi.Core.csproj +++ b/Tweetinvi.Core/Tweetinvi.Core.csproj @@ -62,7 +62,6 @@ -