Click or drag to resize

DeviceDriverStream Class

This stream encapsulates the interface between a user mode application and a device driver on the controller.
Inheritance Hierarchy

Namespace:  ABB.Robotics.Controllers
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public class DeviceDriverStream : Stream

The DeviceDriverStream type exposes the following members.

Constructors
  NameDescription
Public methodDeviceDriverStream(String)
Opens the stream with Read access aginst the default controller of a FP.
Public methodDeviceDriverStream(String, DeviceAccess)
Opens a stream with the specified name and access.aginst the default controller of a FP.
Public methodDeviceDriverStream(Controller, String)
Opens the stream with Read access.
Public methodDeviceDriverStream(Controller, String, DeviceAccess)
Opens a stream with the specified name and access.
Top
Properties
  NameDescription
Public propertyCanRead
Check if the stream can be read.
(Overrides StreamCanRead.)
Public propertyCanSeek
Checks if the stream can be seeked.
(Overrides StreamCanSeek.)
Public propertyCanTimeout
Gets a value that determines whether the current stream can time out.
(Inherited from Stream.)
Public propertyCanWrite
Checks if the stream can be written.
(Overrides StreamCanWrite.)
Public propertyLength
Not possible to read length from a device stream.
(Overrides StreamLength.)
Public propertyPosition
It is not possible the seek on a device stream.
(Overrides StreamPosition.)
Public propertyReadTimeout
Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out.
(Inherited from Stream.)
Public propertyWriteTimeout
Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out.
(Inherited from Stream.)
Top
Methods
  NameDescription
Public methodBeginRead
Begins an asynchronous read operation.
(Inherited from Stream.)
Public methodBeginWrite
Begins an asynchronous write operation.
(Inherited from Stream.)
Public methodClose
Closes the stream object.
(Overrides StreamClose.)
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Protected methodCreateWaitHandle Obsolete.
Allocates a WaitHandle object.
(Inherited from Stream.)
Public methodDispose
Releases all resources used by the Stream.
(Inherited from Stream.)
Protected methodDispose(Boolean)
Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
(Inherited from Stream.)
Public methodEndRead
Waits for the pending asynchronous read to complete.
(Inherited from Stream.)
Public methodEndWrite
Ends an asynchronous write operation.
(Inherited from Stream.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFlush
Flush data to stream, currently not implemented, all writes are imediate against the controller.
(Overrides StreamFlush.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodMemberwiseClone(Boolean)
Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject.)
Public methodRead
Reads a sequence of bytes from the stream.
(Overrides StreamRead(Byte, Int32, Int32).)
Public methodReadByte
Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
(Inherited from Stream.)
Public methodSeek
Not supported.
(Overrides StreamSeek(Int64, SeekOrigin).)
Public methodSetLength
Not supported.
(Overrides StreamSetLength(Int64).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWrite
Writes a sequence of bytes to the stream.
(Overrides StreamWrite(Byte, Int32, Int32).)
Public methodWriteByte
Writes a byte to the current position in the stream and advances the position within the stream by one byte.
(Inherited from Stream.)
Top
See Also