admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright © 2019 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
 
#pragma once
 
#include "Stdafx.h"
 
#include "include\cef_urlrequest.h"
 
#include "Request.h"
#include "RequestContext.h"
#include "Internals\CefUrlRequestClientAdapter.h"
#include "Internals\CefWrapper.h"
 
namespace CefSharp
{
    ///
        // Class used to make a URL request. URL requests are not associated with
        // a browser instance so no CefClient callbacks will be executed.
        // URL requests can be created on any valid CEF thread in either the browser
        // or render process. Once created the methods of the URL request object must
        // be accessed on the same thread that created it. 
        ///
        /*--cef(source=library)--*/
    public ref class UrlRequest : public IUrlRequest, public CefWrapper
    {
    private:
        MCefRefPtr<CefURLRequest> _urlRequest;
    internal:
        UrlRequest(CefRefPtr<CefURLRequest> &urlRequest)
            : _urlRequest(urlRequest)
        {
        }
 
        !UrlRequest()
        {
            _urlRequest = NULL;
        }
 
        ~UrlRequest()
        {
            this->!UrlRequest();
        }
 
    public:
        UrlRequest(IRequest^ request, IUrlRequestClient^ urlRequestClient)
            : UrlRequest(request, urlRequestClient, nullptr)
        {
        }
 
        UrlRequest(IRequest^ request, IUrlRequestClient^ urlRequestClient, IRequestContext^ requestContext)
        {
            if (request == nullptr)
            {
                throw gcnew ArgumentNullException("request");
            }
            if (urlRequestClient == nullptr)
            {
                throw gcnew ArgumentNullException("urlRequestClient");
            }
 
            _urlRequest = CefURLRequest::Create((Request^)request, new CefUrlRequestClientAdapter(urlRequestClient), (RequestContext^)requestContext);
        }
 
        ///
        // Returns true if the response body was served from the cache. This includes
        // responses for which revalidation was required.
        ///
        /*--cef()--*/
        virtual property bool ResponseWasCached
        {
            bool get();
        }
 
        ///
        // Returns the response, or NULL if no response information is available.
        // Response information will only be available after the upload has completed.
        // The returned object is read-only and should not be modified.
        ///
        /*--cef()--*/
        virtual property IResponse^ Response
        {
            IResponse^ get();
        }
 
        ///
        // Returns the request status.
        ///
        /*--cef(default_retval=UR_UNKNOWN)--*/
        virtual property UrlRequestStatus RequestStatus
        {
            UrlRequestStatus get();
        }
    };
}