~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/monomac/samples/CFNetwork/AsyncTests.HttpClientTests/Addin/RequestHandlerAttribute.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// AsyncTests.HttpClientTests.Addin.RequestHandlerAttribute
 
3
//
 
4
// Authors:
 
5
//      Martin Baulig (martin.baulig@gmail.com)
 
6
//
 
7
// Copyright 2012 Xamarin Inc. (http://www.xamarin.com)
 
8
//
 
9
//
 
10
// Permission is hereby granted, free of charge, to any person obtaining
 
11
// a copy of this software and associated documentation files (the
 
12
// "Software"), to deal in the Software without restriction, including
 
13
// without limitation the rights to use, copy, modify, merge, publish,
 
14
// distribute, sublicense, and/or sell copies of the Software, and to
 
15
// permit persons to whom the Software is furnished to do so, subject to
 
16
// the following conditions:
 
17
// 
 
18
// The above copyright notice and this permission notice shall be
 
19
// included in all copies or substantial portions of the Software.
 
20
// 
 
21
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
22
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
23
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
24
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
25
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
26
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
27
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
28
//
 
29
using System;
 
30
using System.Net;
 
31
using System.Threading.Tasks;
 
32
 
 
33
namespace AsyncTests.HttpClientTests.Addin {
 
34
        /*
 
35
         * Use the [RequestHandler] attribute on a public static method
 
36
         * matching the RequestHandlerDelegate signature to automatically register
 
37
         * that method with the HttpListener.
 
38
         * 
 
39
         * Only public types with the [AsyncTestFixture] attribute (or an
 
40
         * attribute derived from it) are searched, as well as their nested
 
41
         * children.
 
42
         * 
 
43
         * The @context may be used to log debugging messages or report
 
44
         * errors using NUnit's Constraint syntax.
 
45
         * 
 
46
         * If you throw any exceptions inside the handler, the listener will
 
47
         * return a 500 containing the error message and stores the exception
 
48
         * object locally.
 
49
         * 
 
50
         * It also adds a header field to the response which can be used to
 
51
         * retreived the stored exception object by calling
 
52
         * Server.GetException (HttpResponseMessage) in your test method.
 
53
         * 
 
54
         * Call Server.GetUrl (Method) to get the URL.
 
55
         * 
 
56
         * The listener also automatically generates an index page, so you
 
57
         * can simply open the root URL (http://localhost:8088 by default)
 
58
         * in a web browser.
 
59
         * 
 
60
         */
 
61
 
 
62
        public delegate void RequestHandlerDelegate (ServerContext context);
 
63
 
 
64
        public delegate Task AsyncRequestHandlerDelegate (ServerContext context);
 
65
 
 
66
        [AttributeUsage (AttributeTargets.Method, AllowMultiple = false)]
 
67
        public class RequestHandlerAttribute : Attribute {
 
68
                AuthenticationSchemes authentication = AuthenticationSchemes.Anonymous;
 
69
 
 
70
                public AuthenticationSchemes Authentication {
 
71
                        get { return authentication; }
 
72
                        set { authentication = value; }
 
73
                }
 
74
        }
 
75
}
 
76