📄 reference.cs
字号:
return this.titleField;
}
set {
this.titleField = value;
}
}
/// <remarks/>
public string TitleOfCourtesy {
get {
return this.titleOfCourtesyField;
}
set {
this.titleOfCourtesyField = value;
}
}
/// <remarks/>
public System.DateTime BirthDate {
get {
return this.birthDateField;
}
set {
this.birthDateField = value;
}
}
/// <remarks/>
public System.DateTime HireDate {
get {
return this.hireDateField;
}
set {
this.hireDateField = value;
}
}
/// <remarks/>
public string Address {
get {
return this.addressField;
}
set {
this.addressField = value;
}
}
/// <remarks/>
public string City {
get {
return this.cityField;
}
set {
this.cityField = value;
}
}
/// <remarks/>
public string Region {
get {
return this.regionField;
}
set {
this.regionField = value;
}
}
/// <remarks/>
public string PostalCode {
get {
return this.postalCodeField;
}
set {
this.postalCodeField = value;
}
}
/// <remarks/>
public string Country {
get {
return this.countryField;
}
set {
this.countryField = value;
}
}
/// <remarks/>
public string HomePhone {
get {
return this.homePhoneField;
}
set {
this.homePhoneField = value;
}
}
/// <remarks/>
public string Extension {
get {
return this.extensionField;
}
set {
this.extensionField = value;
}
}
/// <remarks/>
public Image Photo {
get {
return this.photoField;
}
set {
this.photoField = value;
}
}
/// <remarks/>
public string Notes {
get {
return this.notesField;
}
set {
this.notesField = value;
}
}
/// <remarks/>
public int ReportsTo {
get {
return this.reportsToField;
}
set {
this.reportsToField = value;
}
}
/// <remarks/>
public string PhotoPath {
get {
return this.photoPathField;
}
set {
this.photoPathField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.42")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
public abstract partial class Image : MarshalByRefObject {
private object tagField;
private ColorPalette paletteField;
/// <remarks/>
public object Tag {
get {
return this.tagField;
}
set {
this.tagField = value;
}
}
/// <remarks/>
public ColorPalette Palette {
get {
return this.paletteField;
}
set {
this.paletteField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.42")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
public partial class ColorPalette {
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(Image))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.42")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://tempuri.org/")]
public abstract partial class MarshalByRefObject {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
public delegate void GetEmployeesCompletedEventHandler(object sender, GetEmployeesCompletedEventArgs e);
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class GetEmployeesCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
private object[] results;
internal GetEmployeesCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
base(exception, cancelled, userState) {
this.results = results;
}
/// <remarks/>
public Employee[] Result {
get {
this.RaiseExceptionIfNecessary();
return ((Employee[])(this.results[0]));
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "2.0.50727.42")]
public delegate void UpdateEmployeesCompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);
}
#pragma warning restore 1591
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -