Class IPvTransmitterGEV
Interface for GigE Vision (GVSP) packet transmitter.
Implements
Inherited Members
Namespace: eBUSDotNetEdge
Assembly: eBUSDotNetEdge.dll
Syntax
public class IPvTransmitterGEV : IDisposable
Fields
View SourceswigCMemOwn
Determines who is responsible for deleting the underlying C++ object.
Declaration
protected bool swigCMemOwn
Field Value
| Type | Description |
|---|---|
| bool |
Properties
View SourceExtendedIDs
Gets or sets the extended IDs mode. Extended IDs allow for larger block and packet ID values in the GVSP protocol, enabling support for high-resolution images and high frame rates.
Declaration
public virtual bool ExtendedIDs { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | True if extended IDs are enabled, false otherwise. |
IsOpen
Checks if the transmitter is currently open and ready to transmit.
Declaration
public virtual bool IsOpen { get; }
Property Value
| Type | Description |
|---|---|
| bool | True if the transmitter is open, false otherwise. |
IsTransmitting
Checks if the transmitter is currently transmitting data.
Declaration
public virtual bool IsTransmitting { get; }
Property Value
| Type | Description |
|---|---|
| bool | True if actively transmitting, false otherwise. |
Methods
View SourceDispose()
Dispose.
Declaration
public void Dispose()
Dispose(bool)
Dispose
Declaration
protected virtual void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing |
~IPvTransmitterGEV()
Destructor.
Declaration
protected ~IPvTransmitterGEV()
QueuePacketResend(ulong, uint, uint)
Queues a packet resend request for a range of packets.
Declaration
public virtual void QueuePacketResend(ulong aBlockID, uint aFirstPacketID, uint aLastPacketID)
Parameters
| Type | Name | Description |
|---|---|---|
| ulong | aBlockID | The block ID containing the packets to resend. |
| uint | aFirstPacketID | The first packet ID in the range to resend. |
| uint | aLastPacketID | The last packet ID in the range to resend (inclusive). |