Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/smpp-sharp-lib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'SmppServerLib/SmppUdhiParameter.cs')
-rw-r--r--SmppServerLib/SmppUdhiParameter.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/SmppServerLib/SmppUdhiParameter.cs b/SmppServerLib/SmppUdhiParameter.cs
new file mode 100644
index 0000000..83a9122
--- /dev/null
+++ b/SmppServerLib/SmppUdhiParameter.cs
@@ -0,0 +1,29 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Flex.Cluster.Smpp
+{
+ public class SmppUdhiParameter
+ {
+ public readonly byte Tag;
+ public readonly byte Length;
+ public readonly byte[] Value;
+
+ public SmppUdhiParameter(byte tag, byte length, byte[] value)
+ {
+ Tag = tag;
+ Length = length;
+ Value = value;
+ }
+
+ public override string ToString()
+ {
+ var data = new StringBuilder();
+ foreach(var b in Value)
+ data.AppendFormat("{0:X2} ",b);
+ return string.Format("UDHI: {0} = {1}", Tag, data.ToString());
+ }
+ }
+}