mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
17 lines
402 B
C#
17 lines
402 B
C#
|
using System.Diagnostics.CodeAnalysis;
|
||
|
|
||
|
namespace ServicePoint2;
|
||
|
|
||
|
public static class ServicePoint2Extensions
|
||
|
{
|
||
|
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);
|
||
|
}
|
||
|
}
|