SseItemParser<T> 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
封裝方法來剖析伺服器傳送事件的位元組承載。
generic <typename T>
public delegate T SseItemParser(System::String ^ eventType, ReadOnlySpan<System::Byte> data);
public delegate T SseItemParser<out T>(string eventType, ReadOnlySpan<byte> data);
type SseItemParser<'T> = delegate of string * ReadOnlySpan<byte> -> 'T
Public Delegate Function SseItemParser(Of Out T)(eventType As String, data As ReadOnlySpan(Of Byte)) As T
類型參數
參數
- eventType
- String
事件的型別。
- data
- ReadOnlySpan<Byte>
事件的承載位元組。
傳回值
T
剖析 T
。
擴充方法
GetMethodInfo(Delegate) |
取得 物件,表示指定委派所表示的方法。 |