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

SmppPduBindTransmitterResp.cs « SmppServerLib - github.com/ClusterM/smpp-sharp-lib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 934222d8cff2cf9c2c311226193f72b294162f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Flex.Cluster.Smpp
{
    public class SmppPduBindTransmitterResp : SmppPduBindRespBase
    {
        protected override SmppPdu.SmppCommandType GetCommandType()
        {
            return SmppCommandType.bind_transmitter_resp;
        }

        public SmppPduBindTransmitterResp(uint sequenceId, SmppCommandStatus status, string systemId, SmppOptionalParameter[] optionalParameters = null)
            : base(SmppCommandType.bind_transmitter_resp, sequenceId, status, systemId, optionalParameters)
        {
        }

        public SmppPduBindTransmitterResp(byte[] bytes) : this(bytes, (uint)bytes.Length) { }
        public SmppPduBindTransmitterResp(byte[] bytes, uint length)
            : base(bytes, length)
        {
        }
    }
}