Write() public static méthode

public static Write ( string text ) : void
text string
Résultat void
Exemple #1
0
 public override void BatchStart(MessageBatch batch)
 {
     TextFileWriter.Write("Starting: " + batch.Description);
 }
Exemple #2
0
 public override void BatchFinish(MessageBatch batch)
 {
     TextFileWriter.Write("Finishing: " + batch.Description);
 }
Exemple #3
0
 public void Handle(T message)
 {
     TextFileWriter.Write(message.ToString());
 }