forked from cefsharp/CefSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CefPostDataElementWrapper.h
98 lines (81 loc) · 2.71 KB
/
CefPostDataElementWrapper.h
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
// Copyright © 2010-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 "include\cef_request.h"
#include "Internals/TypeConversion.h"
using namespace System::Collections::Specialized;
namespace CefSharp
{
namespace Internals
{
public ref class CefPostDataElementWrapper : public IPostDataElement
{
MCefRefPtr<CefPostDataElement> _postDataElement;
internal:
CefPostDataElementWrapper(CefRefPtr<CefPostDataElement> postDataElement) :
_postDataElement(postDataElement)
{
}
!CefPostDataElementWrapper()
{
_postDataElement = nullptr;
}
~CefPostDataElementWrapper()
{
this->!CefPostDataElementWrapper();
}
public:
virtual property bool IsReadOnly
{
bool get()
{
return _postDataElement->IsReadOnly();
}
}
virtual property String^ File
{
String^ get()
{
return StringUtils::ToClr(_postDataElement->GetFile());
}
void set(String^ val)
{
_postDataElement->SetToFile(StringUtils::ToNative(val));
}
}
virtual void SetToEmpty()
{
_postDataElement->SetToEmpty();
}
virtual property PostDataElementType Type
{
PostDataElementType get()
{
return (PostDataElementType)_postDataElement->GetType();
}
}
virtual property cli::array<Byte>^ Bytes
{
cli::array<Byte>^ get()
{
auto byteCount = _postDataElement->GetBytesCount();
if (byteCount == 0)
{
return nullptr;
}
auto bytes = gcnew cli::array<Byte>(byteCount);
pin_ptr<Byte> src = &bytes[0]; // pin pointer to first element in arr
_postDataElement->GetBytes(byteCount, static_cast<void*>(src));
return bytes;
}
void set(cli::array<Byte>^ val)
{
pin_ptr<Byte> src = &val[0];
_postDataElement->SetToBytes(val->Length, static_cast<void*>(src));
}
}
};
}
}