|   | CachedFileStreamPosition Property | 
        
        
            When overridden in a derived class, gets or sets the position within the current stream.
            
        
        Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic override long Position { get; set; }Public Overrides Property Position As Long
	Get
	Set
public:
virtual property long long Position {
	long long get () override;
	void set (long long value) override;
}abstract Position : int64 with get, set
override Position : int64 with get, set
function get_Position();
function set_Position(value);
Return Value
Int64
            The current position within the stream.
            
 Exceptions
Exceptions| Exception | Condition | 
|---|
| ObjectDisposedException | Methods were called after the stream was closed. | 
 See Also
See Also