// Copyright © 2014 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. namespace CefSharp { /// /// Post data elements may represent either bytes or files. /// public enum PostDataElementType { /// /// An enum constant representing the empty option. /// Empty = 0, /// /// An enum constant representing the bytes option. /// Bytes, /// /// An enum constant representing the file option. /// File } }