SocketAsyncEventArgs 建構函式

定義

多載

SocketAsyncEventArgs()

來源:
SocketAsyncEventArgs.cs
來源:
SocketAsyncEventArgs.cs
來源:
SocketAsyncEventArgs.cs

建立空的 SocketAsyncEventArgs 執行個體。

public SocketAsyncEventArgs ();

例外狀況

不支援平台。

範例

下列程式代碼範例代表可重複使用 SocketAsyncEventArgs 物件的集合。

// Represents a collection of reusable SocketAsyncEventArgs objects.
class SocketAsyncEventArgsPool
{
    Stack<SocketAsyncEventArgs> m_pool;

    // Initializes the object pool to the specified size
    //
    // The "capacity" parameter is the maximum number of
    // SocketAsyncEventArgs objects the pool can hold
    public SocketAsyncEventArgsPool(int capacity)
    {
        m_pool = new Stack<SocketAsyncEventArgs>(capacity);
    }

    // Add a SocketAsyncEventArg instance to the pool
    //
    //The "item" parameter is the SocketAsyncEventArgs instance
    // to add to the pool
    public void Push(SocketAsyncEventArgs item)
    {
        if (item == null) { throw new ArgumentNullException("Items added to a SocketAsyncEventArgsPool cannot be null"); }
        lock (m_pool)
        {
            m_pool.Push(item);
        }
    }

    // Removes a SocketAsyncEventArgs instance from the pool
    // and returns the object removed from the pool
    public SocketAsyncEventArgs Pop()
    {
        lock (m_pool)
        {
            return m_pool.Pop();
        }
    }

    // The number of SocketAsyncEventArgs instances in the pool
    public int Count
    {
        get { return m_pool.Count; }
    }
}

備註

呼叫此建構函式之後,所有屬性都會有其預設值:

呼叫端必須先設定適當的屬性,才能將 對象傳遞至適當的異步套接字 (xxxAsync) 方法。

適用於

.NET 9 及其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

SocketAsyncEventArgs(Boolean)

來源:
SocketAsyncEventArgs.cs
來源:
SocketAsyncEventArgs.cs
來源:
SocketAsyncEventArgs.cs

初始化 SocketAsyncEventArgs

public SocketAsyncEventArgs (bool unsafeSuppressExecutionContextFlow);

參數

unsafeSuppressExecutionContextFlow
Boolean

是否要停用執行內容的擷取和流程。 只有當執行內容流程是由較高層處理時,才應停用。

適用於

.NET 9 及其他版本
產品 版本
.NET 5, 6, 7, 8, 9