![]() |
C++/CLI Sample
Demonstrates how to create a C++/CLI library using the VideoXpert SDK
|
The NewDataObject class represents a new data object. More...
#include <NewDataObject.h>
Public Member Functions | |
NewDataObject () | |
Default constructor. More... | |
NewDataObject (VxSdk::VxNewDataObject *vxNewDataObject) | |
Constructor. More... | |
Package Attributes | |
VxSdk::VxNewDataObject * | _newDataObject |
Properties | |
System::String^ | ClientType [get, set] |
Gets or sets the client identifier. Recommend using the Java package naming convention: com.>company<.>project<.>client_name<. More... | |
System::String^ | Data [get, set] |
Gets or sets the serialized data (e.g.: JSON, XML, CSV, etc). The maximum allowable size of this field is 1MB. More... | |
bool | IsPrivate [get, set] |
Gets or sets whether the new data object will not be owned (public) or will be owned by the user submitting the request (private). More... | |
The NewDataObject class represents a new data object.
Definition at line 12 of file NewDataObject.h.
|
inline |
Default constructor.
Definition at line 18 of file NewDataObject.h.
|
inline |
Constructor.
vxNewDataObject | The new data object. |
Definition at line 26 of file NewDataObject.h.
|
package |
Definition at line 62 of file NewDataObject.h.
|
getset |
Gets or sets the client identifier. Recommend using the Java package naming convention: com.>company<.>project<.>client_name<.
The unique friendly name.
Definition at line 34 of file NewDataObject.h.
|
getset |
Gets or sets the serialized data (e.g.: JSON, XML, CSV, etc). The maximum allowable size of this field is 1MB.
The serialized data.
Definition at line 44 of file NewDataObject.h.
|
getset |
Gets or sets whether the new data object will not be owned (public) or will be owned by the user submitting the request (private).
true
if the data object will be public, false
if private.
Definition at line 55 of file NewDataObject.h.