Gets the length in bytes of the stream.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overrides ReadOnly Property Length As Long |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As CodingStream
Dim value As Long
value = instance.Length |
| C# | |
|---|
public override long Length {get;} |
| Managed Extensions for C++ | |
|---|
public: __property long get_Length() override; |
| C++/CLI | |
|---|
public:
property int64 Length {
int64 get() override;
} |
Property Value
A long value representing the length of the Stream in bytes.
Exceptions
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also