Ejemplo n.º 1
0
 public static void Note(this ProtoServer protoServer, string note)
 {
     var proto = new NoteProtoTask(note);
     protoServer.RegisterProtoTask(proto);
 }
Ejemplo n.º 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);
        }
Ejemplo n.º 3
0
        public static void Note(this ProtoServer protoServer, string messageFormat, params object[] args)
        {
            var proto = new NoteProtoTask(messageFormat, args);

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

            protoServer.RegisterProtoTask(proto);
        }
Ejemplo n.º 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);
 }
Ejemplo n.º 6
0
 public static void Note(this ProtoServer protoServer, string messageFormat, params object[] args) {
    var proto = new NoteProtoTask(messageFormat, args);
    protoServer.RegisterProtoTask(proto);
 }