smgpheader.cs

来自「这个是基于SMPP的开发源码」· CS 代码 · 共 46 行

CS
46
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace SMGP3_0
{
	public class SMGPHeader : SMPP.MessagePack
	{
		public SMGPHeader()
		{
			Add(new SMPP.Variable.Integer32());
			Add(new SMPP.Variable.Integer32());
		}

		/// <summary>
		/// 消息标识
		/// </summary>
		public Int32 RequestID
		{
			get
			{
				return (this[0] as SMPP.Variable.Integer32).Value;
			}
			set
			{
				(this[0] as SMPP.Variable.Integer32).Value = value;
			}
		}

		/// <summary>
		/// 消息流水号
		/// </summary>
		public int SequenceID
		{
			get
			{
				return (this[1] as SMPP.Variable.Integer32).Value;
			}
			set
			{
				(this[1] as SMPP.Variable.Integer32).Value = value;
			}
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?