Click or drag to resize

CefBinaryValue Class

Class representing a binary value. Can be used on any process and thread.
Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefBinaryValue

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefBinaryValue : IDisposable

The CefBinaryValue type exposes the following members.

Properties
 NameDescription
Public propertyIsOwned Returns true if this object is currently owned by another object.
Public propertyIsValid Returns true if this object is valid. This object may become invalid if the underlying data is owned by another object (e.g. list or dictionary) and that other object is then modified or destroyed. Do not call any other methods if this method returns false.
Public propertySize Returns the data size.
Top
Methods
 NameDescription
Public methodCopy Returns a copy of this object. The data in this object will also be copied.
Public methodStatic memberCreate Creates a new object that is not owned by any other object. The specified |data| will be copied.
Public methodDisposeReleases all resources used by the CefBinaryValue
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalize
(Overrides ObjectFinalize)
Public methodGetData Read up to |buffer_size| number of bytes into |buffer|. Reading begins at the specified byte |data_offset|. Returns the number of bytes read.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIsEqual Returns true if this object and |that| object have an equivalent underlying value but are not necessarily the same object.
Public methodIsSame Returns true if this object and |that| object have the same underlying data.
Public methodToArray 
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also