| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property SubOption As Byte() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As CommandEventArgs Dim value() As Byte value = instance.SubOption | |
| C# | |
|---|---|
public byte[] SubOption {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property byte[]* get_SubOption(); | |
| C++/CLI | |
|---|---|
public: property array<byte>^ SubOption { array<byte>^ get(); } | |
Property Value
A byte array containing formatted data associated with the option.This property contains optional suboption data. Suboption usage is specific to a limited number of options. For the exact format of the suboption data, refer to the RFC that documents the option in question.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code