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

SmppPduBindTransceiverResp.cs « SmppServerLib - github.com/ClusterM/smpp-sharp-lib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca03bc2c339d88a6e5abd6be48f854e1b12fa1e6 (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 SmppPduBindTransceiverResp : SmppPduBindRespBase
    {
        protected override SmppPdu.SmppCommandType GetCommandType()
        {
            return SmppCommandType.bind_transceiver_resp;
        }

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

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