~ubuntu-branches/ubuntu/trusty/smuxi/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/Twitterizer/Twitterizer2/Methods/Friendship/NoRetweetIDsCommand.cs

  • Committer: Package Import Robot
  • Author(s): Mirco Bauer
  • Date: 2013-05-25 22:11:31 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20130525221131-nd2mc0kzubuwyx20
Tags: 0.8.11-1
* [22d13d5] Imported Upstream version 0.8.11
* [6d2b95a] Refreshed patches
* [89eb66e] Added ServiceStack libraries to smuxi-engine package
* [848ab10] Enable Campfire engine
* [c6dbdc7] Always build db4o for predictable build result
* [13ec489] Exclude OS X specific libraries from dh_clideps

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------
 
2
// <copyright file="NoRetweetIDsCommand.cs" company="Patrick 'Ricky' Smith">
 
3
//  This file is part of the Twitterizer library (http://www.twitterizer.net)
 
4
// 
 
5
//  Copyright (c) 2010, Patrick "Ricky" Smith (ricky@digitally-born.com)
 
6
//  All rights reserved.
 
7
//  
 
8
//  Redistribution and use in source and binary forms, with or without modification, are 
 
9
//  permitted provided that the following conditions are met:
 
10
// 
 
11
//  - Redistributions of source code must retain the above copyright notice, this list 
 
12
//    of conditions and the following disclaimer.
 
13
//  - Redistributions in binary form must reproduce the above copyright notice, this list 
 
14
//    of conditions and the following disclaimer in the documentation and/or other 
 
15
//    materials provided with the distribution.
 
16
//  - Neither the name of the Twitterizer nor the names of its contributors may be 
 
17
//    used to endorse or promote products derived from this software without specific 
 
18
//    prior written permission.
 
19
// 
 
20
//  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
 
21
//  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 
22
//  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
 
23
//  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
 
24
//  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
 
25
//  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
 
26
//  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 
27
//  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 
28
//  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
 
29
//  POSSIBILITY OF SUCH DAMAGE.
 
30
// </copyright>
 
31
// <author>Ricky Smith</author>
 
32
// <summary>The outgoing friendship command class</summary>
 
33
//-----------------------------------------------------------------------
 
34
 
 
35
namespace Twitterizer.Commands
 
36
{
 
37
    using System.Globalization;
 
38
    using Twitterizer.Core;
 
39
 
 
40
    /// <summary>
 
41
    /// Returns an array of numeric IDs for every user who has a pending request to follow the authenticating user.
 
42
    /// </summary>
 
43
    internal sealed class NoRetweetIDsCommand : TwitterCommand<UserIdCollection>
 
44
    {
 
45
        /// <summary>
 
46
        /// Initializes a new instance of the <see cref="IncomingFriendshipsCommand"/> class.
 
47
        /// </summary>
 
48
        /// <param name="tokens">The tokens.</param>
 
49
        /// <param name="options">The options.</param>
 
50
        public NoRetweetIDsCommand(OAuthTokens tokens, OptionalProperties options)
 
51
            : base(HTTPVerb.GET, "friendships/no_retweet_ids.json", tokens, options)
 
52
        { }
 
53
 
 
54
        /// <summary>
 
55
        /// Inits this instance.
 
56
        /// </summary>
 
57
        public override void Init()
 
58
        { }
 
59
    }
 
60
}