Windows Azure Service Bus .NET SDK バージョン 2.2.4 で Notification Hubs を使用しています。次のようなテンプレート化された MPNS 登録を作成しています。
var reg = await _hub.CreateMpnsTemplateRegistrationAsync(deviceToken, MPNS_TILE_TEMPLATE);
reg.TemplateName = "tile";
await _hub.UpdateRegistrationAsync(reg);
var theReg = await _hub.GetRegistrationAsync<MpnsTemplateRegistrationDescription>(reg.RegistrationId);
var tn = theReg.TemplateName; // this is null
ただし、TemplateName は常に null です。
また、TemplateName プロパティ自体は、「登録管理」概要ページ ( http://msdn.microsoft.com/en-us/library/windowsazure/dn530747 ) を除いて、MSDN リファレンス ドキュメントには記載されていないようです。 aspx
何か案は?ありがとうクリス