DataPA Enterprise Dashboard Controls API Reference
Function to return a ServerSecurity object from a byte array.
Namespace: DataPAServerSecurityAssembly: DataPAServerSecurity (in DataPAServerSecurity.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public static ServerSecurity DeserializeFromByteArray(
byte[] Array,
ref string ErrMessage = ""
) |
Visual Basic |
---|
Public Shared Function DeserializeFromByteArray (
Array As Byte(),
Optional ByRef ErrMessage As String = ""
) As ServerSecurity |
Visual C++ |
---|
public:
static ServerSecurity^ DeserializeFromByteArray(
array<unsigned char>^ Array,
String^% ErrMessage = L""
) |
Parameters
- Array
- Type: array<System..::..Byte>[]()[][]
The byte array that contains the binary representation of the ServerSecurity object.
- ErrMessage (Optional)
- Type: System..::..String%
Any returned error message.
Return Value
Type:
ServerSecurityThe a de-serialized ServerSecurity object.
Remarks
See Also