SseItemParser<T> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Encapsulates a method for parsing the bytes payload of a server-sent event.
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
Specifies the type of the return value of the parser.
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
The event's type.
- data
- ReadOnlySpan<Byte>
The event's payload bytes.
Return Value
T
The parsed T
.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.