Question:You write the following code. public delegate void FaxDocs(object sender, FaxArgs args); You need to create an event that will invoke FaxDocs. Which code segment should you use? 

A public class FaxArgs : EventArgs {
private string coverPageInfo;
public FaxArgs(string coverInfo) {
this.coverPageInfo = coverPageInfo;
}
public string CoverPageInformation {
get {return this.coverPageInfo;}
}
} 

B public static event Fax FaxDocs; 

C public class FaxArgs : EventArgs {
private string coverPageInfo;
public string CoverPageInformation {
get {return this.coverPageInfo;}
"A Composite Solution With Just One Click" - Certification Guaranteed 259 Microsoft 70-536 Exam
}
} 

D public static event FaxDocs Fax; 

+ Answer
+ Report
Total Preview: 3033

Copyright © 2024. Powered by Intellect Software Ltd