Upraviť

Zdieľať cez


SseItemParser<T> Delegate

Definition

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 

Type Parameters

T
This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.

Parameters

eventType
String

Return Value

T

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to