Example #1
0
 public static void Note(this ProtoServer protoServer, string note)
 {
     var proto = new NoteProtoTask(note);
     protoServer.RegisterProtoTask(proto);
 }
Example #2
0
        public static void Note(this ProtoServer protoServer, dropkick.DeploymentModel.DeploymentItemStatus status, string messageFormat, params object[] args)
        {
            var proto = new NoteProtoTask(status, messageFormat, args);

            protoServer.RegisterProtoTask(proto);
        }
Example #3
0
        public static void Note(this ProtoServer protoServer, string messageFormat, params object[] args)
        {
            var proto = new NoteProtoTask(messageFormat, args);

            protoServer.RegisterProtoTask(proto);
        }
Example #4
0
        public static void Note(this ProtoServer protoServer, string note)
        {
            var proto = new NoteProtoTask(note);

            protoServer.RegisterProtoTask(proto);
        }
Example #5
0
 public static void Note(this ProtoServer protoServer, dropkick.DeploymentModel.DeploymentItemStatus status, string messageFormat, params object[] args) {
    var proto = new NoteProtoTask(status, messageFormat, args);
    protoServer.RegisterProtoTask(proto);
 }
Example #6
0
 public static void Note(this ProtoServer protoServer, string messageFormat, params object[] args) {
    var proto = new NoteProtoTask(messageFormat, args);
    protoServer.RegisterProtoTask(proto);
 }