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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// Copyright © 2015 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 "TypeConversion.h"
#include "CefWrapper.h"
 
using namespace System::Collections::Specialized;
 
namespace CefSharp
{
    namespace Internals
    {
        private ref class CefResponseWrapper : public IResponse, public CefWrapper
        {
            MCefRefPtr<CefResponse> _response;
        internal:
            CefResponseWrapper(CefRefPtr<CefResponse> &response) :
                _response(response)
            {
 
            }
 
            !CefResponseWrapper()
            {
                _response = nullptr;
            }
 
            ~CefResponseWrapper()
            {
                this->!CefResponseWrapper();
 
                _disposed = true;
            }
 
        public:
            virtual property String^ Charset
            {
                String^ get()
                {
                    ThrowIfDisposed();
 
                    return StringUtils::ToClr(_response->GetCharset());
                }
                void set(String^ val)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetCharset(StringUtils::ToNative(val));
                }
            }
 
            virtual property bool IsReadOnly
            {
                bool get()
                {
                    ThrowIfDisposed();
 
                    return _response->IsReadOnly();
                }
            }
 
            virtual property CefErrorCode ErrorCode
            {
                CefErrorCode get()
                {
                    ThrowIfDisposed();
 
                    return (CefErrorCode)_response->GetError();
                }
                void set(CefErrorCode val)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetError((cef_errorcode_t)val);
                }
            }
 
            virtual property int StatusCode
            {
                int get()
                {
                    ThrowIfDisposed();
 
                    return _response->GetStatus();
                }
                void set(int val)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetStatus(val);
                }
            }
 
            virtual property String^ StatusText
            {
                String^ get()
                {
                    ThrowIfDisposed();
 
                    return StringUtils::ToClr(_response->GetStatusText());
                }
                void set(String^ val)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetStatusText(StringUtils::ToNative(val));
                }
            }
 
            virtual property String^ MimeType
            {
                String^ get()
                {
                    ThrowIfDisposed();
 
                    return StringUtils::ToClr(_response->GetMimeType());
                }
                void set(String^ val)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetMimeType(StringUtils::ToNative(val));
                }
            }
 
            virtual property NameValueCollection^ Headers
            {
                NameValueCollection^ get()
                {
                    ThrowIfDisposed();
 
                    //TODO: Extract this code out as it's duplicated in CefRequestWrapper
                    CefRequest::HeaderMap hm;
                    _response->GetHeaderMap(hm);
 
                    auto headers = gcnew HeaderNameValueCollection();
 
                    for (CefRequest::HeaderMap::iterator it = hm.begin(); it != hm.end(); ++it)
                    {
                        String^ name = StringUtils::ToClr(it->first);
                        String^ value = StringUtils::ToClr(it->second);
                        headers->Add(name, value);
                    }
 
                    if (_response->IsReadOnly())
                    {
                        headers->SetReadOnly();
                    }
 
                    return headers;
                }
                void set(NameValueCollection^ headers)
                {
                    ThrowIfDisposed();
                    ThrowIfReadOnly();
 
                    _response->SetHeaderMap(TypeConversion::ToNative(headers));
                }
            }
 
            virtual property NameValueCollection^ ResponseHeaders
            {
                NameValueCollection^ get()
                {
                    return Headers;
                }
                void set(NameValueCollection^ headers)
                {
                    Headers = headers;
                }
            }
 
            void ThrowIfReadOnly()
            {
                if (_response->IsReadOnly())
                {
                    throw gcnew NotSupportedException("IResponse is read-only and cannot be modified. Check IResponse.IsReadOnly to guard against this exception.");
                }
            }
        };
    }
}