예제 #1
0
 /// <summary>
 /// Creates a <see cref="PushCommand"/>
 /// </summary>
 /// <param name="commandType">The command type.</param>
 /// <param name="id">The associated id</param>
 /// <returns>An instance of <see cref="PushCommand"/>.</returns>
 public static PushCommand Create(PushCommandType commandType, long id)
 {
     return(new PushCommand(commandType, id));
 }
예제 #2
0
        /************************************************************************/

        #region Constructors
        private PushCommand(PushCommandType commandType, long id)
        {
            CommandType = commandType;
            Id          = id;
        }