mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
17 lines
400 B
C#
17 lines
400 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ServicePoint;
|
|
|
|
public static class ServicePointExtensions
|
|
{
|
|
public static Packet IntoPacket(this Command command)
|
|
{
|
|
return Packet.FromCommand(command);
|
|
}
|
|
|
|
public static bool TryIntoCommand(this Packet packet, [MaybeNullWhen(false)] out Command command)
|
|
{
|
|
return Command.TryFromPacket(packet, out command);
|
|
}
|
|
}
|