aboutsummaryrefslogtreecommitdiff
path: root/Net.Messaging.FBM/src/Client/HeaderCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Net.Messaging.FBM/src/Client/HeaderCommand.cs')
-rw-r--r--Net.Messaging.FBM/src/Client/HeaderCommand.cs57
1 files changed, 0 insertions, 57 deletions
diff --git a/Net.Messaging.FBM/src/Client/HeaderCommand.cs b/Net.Messaging.FBM/src/Client/HeaderCommand.cs
deleted file mode 100644
index 5a57d85..0000000
--- a/Net.Messaging.FBM/src/Client/HeaderCommand.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
-* Copyright (c) 2022 Vaughn Nugent
-*
-* Library: VNLib
-* Package: VNLib.Net.Messaging.FBM
-* File: HeaderCommand.cs
-*
-* HeaderCommand.cs is part of VNLib.Net.Messaging.FBM which is part of the larger
-* VNLib collection of libraries and utilities.
-*
-* VNLib.Net.Messaging.FBM is free software: you can redistribute it and/or modify
-* it under the terms of the GNU Affero General Public License as
-* published by the Free Software Foundation, either version 3 of the
-* License, or (at your option) any later version.
-*
-* VNLib.Net.Messaging.FBM is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU Affero General Public License for more details.
-*
-* You should have received a copy of the GNU Affero General Public License
-* along with this program. If not, see https://www.gnu.org/licenses/.
-*/
-
-namespace VNLib.Net.Messaging.FBM
-{
- /// <summary>
- /// A Fixed Buffer Message header command value
- /// </summary>
- public enum HeaderCommand : byte
- {
- /// <summary>
- /// Default, do not use
- /// </summary>
- NOT_USED,
- /// <summary>
- /// Specifies the header for a message-id
- /// </summary>
- MessageId,
- /// <summary>
- /// Specifies a resource location
- /// </summary>
- Location,
- /// <summary>
- /// Specifies a standard MIME content type header
- /// </summary>
- ContentType,
- /// <summary>
- /// Specifies an action on a request
- /// </summary>
- Action,
- /// <summary>
- /// Specifies a status header
- /// </summary>
- Status
- }
-}