Tag Return Null in Submit Response

Post Reply
vineet
Posts: 28
Joined: Sat May 06, 2017 7:06 pm

Tag Return Null in Submit Response

Post by vineet » Mon Apr 15, 2019 8:25 am

Hi,

we are setting the tag property like this

ISubmitSmBuilder builder = SMS.ForSubmit()
.Text(messageText)
.From(sourceAddress)
.To(destinationAddress)
.Coding(coding)
.Set(s => s.Tag = 23);

batch.AddRange(builder.Create(SMPPClient));

but tag always return null in

var resp = (await SMPPClient.Submit(batch)).ToArray();

what is the correct way to get the tag in resp.

Thanks
alt
Site Admin
Posts: 985
Joined: Tue Apr 25, 2006 9:45 am

Re: Tag Return Null in Submit Response

Post by alt » Fri Apr 19, 2019 10:58 am

fixed in v 2.6.9
Post Reply