Class ReadOnlyMemoryStream.PropertyNames
Provides property names for ReadOnlyMemoryStream properties
public sealed class ReadOnlyMemoryStream.PropertyNames : Stream.PropertyNames
- Inheritance
-
ReadOnlyMemoryStream.PropertyNames
- Inherited Members
Fields
FreeFuncPointer
The name of a property that holds the pointer to a function that will be called to free the memory buffer when the ReadOnlyMemoryStream is closed or disposed
public const string FreeFuncPointer = "FREE_FUNC_POINTER"
Field Value
Remarks
If the value of the property is unset or null, the unmanaged memory will not be freed when the ReadOnlyMemoryStream is closed or disposed.
Changing the value of the property will also change the automatic freeing behavior.
- See Also
MemoryPointer
The name of a property that holds the pointer to the memory buffer that the ReadOnlyMemoryStream was initialized with
public const string MemoryPointer = "SDL_PROP_IOSTREAM_MEMORY_POINTER"
Field Value
- See Also
SizeNumber
The name of a property that holds the size, in bytes, of the memory buffer that the ReadOnlyMemoryStream was initialized with
public const string SizeNumber = "SDL_PROP_IOSTREAM_MEMORY_SIZE_NUMBER"
Field Value
- See Also