-/// This File contains the Api's related to the PushConnectionStateEventArgs class
+/// This File contains the Api's related to the PushConnectionStateEventArgs class
///
/// Copyright 2016 by Samsung Electronics, Inc.,
///
/// <summary>
/// To change the provisioning server IP.
/// </summary>
- ProvisioningIPChange = 2,
+ ProvisioningIPChanged = 2,
/// <summary>
/// Ping interval is changing.
/// </summary>
- PingChange = 3,
+ PingChanged = 3,
/// <summary>
/// Error Occured in Changing State.
/// </summary>
Error = error;
}
}
-}
\ No newline at end of file
+}
result = Interop.Push.GetNotificationRequestId(notification, out requestid);
if ((result == Interop.Push.ServiceError.None) && !(String.IsNullOrEmpty(requestid)))
{
- ob.RequestID = requestid;
+ ob.RequestId = requestid;
}
int time;
result = Interop.Push.GetNotificationTime(notification, out time);
}
}
}
-}
\ No newline at end of file
+}
}
/// <summary>
- /// Gives the request ID of the notification.
+ /// Gives the request Id of the notification.
/// </summary>
/// <value>
- /// It is a string value representing the request ID of the Notification.</value>
- public string RequestID
+ /// It is a string value representing the request Id of the Notification.</value>
+ public string RequestId
{
get;
internal set;
ReceivedAt = new DateTime();
Sender = "";
SessionInfo= "";
- RequestID = "";
+ RequestId = "";
}
}
}