📄 clrds.designer.cs
字号:
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializespContacts() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializetblAggregateTest() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializetblPoint() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializefnPortfolioTable() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void SchemaChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) {
if ((e.Action == System.ComponentModel.CollectionChangeAction.Remove)) {
this.InitVars();
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(System.Xml.Schema.XmlSchemaSet xs) {
CLRDS ds = new CLRDS();
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
return type;
}
public delegate void spContactsRowChangeEventHandler(object sender, spContactsRowChangeEvent e);
public delegate void tblAggregateTestRowChangeEventHandler(object sender, tblAggregateTestRowChangeEvent e);
public delegate void tblPointRowChangeEventHandler(object sender, tblPointRowChangeEvent e);
public delegate void fnPortfolioTableRowChangeEventHandler(object sender, fnPortfolioTableRowChangeEvent e);
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class spContactsDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnContactID;
private System.Data.DataColumn columnNameStyle;
private System.Data.DataColumn columnTitle;
private System.Data.DataColumn columnFirstName;
private System.Data.DataColumn columnMiddleName;
private System.Data.DataColumn columnLastName;
private System.Data.DataColumn columnSuffix;
private System.Data.DataColumn columnEmailAddress;
private System.Data.DataColumn columnEmailPromotion;
private System.Data.DataColumn columnPhone;
private System.Data.DataColumn columnPasswordHash;
private System.Data.DataColumn columnPasswordSalt;
private System.Data.DataColumn columnAdditionalContactInfo;
private System.Data.DataColumn columnrowguid;
private System.Data.DataColumn columnModifiedDate;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public spContactsDataTable() {
this.TableName = "spContacts";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal spContactsDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected spContactsDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ContactIDColumn {
get {
return this.columnContactID;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn NameStyleColumn {
get {
return this.columnNameStyle;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TitleColumn {
get {
return this.columnTitle;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn FirstNameColumn {
get {
return this.columnFirstName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn MiddleNameColumn {
get {
return this.columnMiddleName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn LastNameColumn {
get {
return this.columnLastName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn SuffixColumn {
get {
return this.columnSuffix;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn EmailAddressColumn {
get {
return this.columnEmailAddress;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn EmailPromotionColumn {
get {
return this.columnEmailPromotion;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn PhoneColumn {
get {
return this.columnPhone;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn PasswordHashColumn {
get {
return this.columnPasswordHash;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn PasswordSaltColumn {
get {
return this.columnPasswordSalt;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn AdditionalContactInfoColumn {
get {
return this.columnAdditionalContactInfo;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn rowguidColumn {
get {
return this.columnrowguid;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ModifiedDateColumn {
get {
return this.columnModifiedDate;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public spContactsRow this[int index] {
get {
return ((spContactsRow)(this.Rows[index]));
}
}
public event spContactsRowChangeEventHandler spContactsRowChanging;
public event spContactsRowChangeEventHandler spContactsRowChanged;
public event spContactsRowChangeEventHandler spContactsRowDeleting;
public event spContactsRowChangeEventHandler spContactsRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddspContactsRow(spContactsRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public spContactsRow AddspContactsRow(bool NameStyle, string Title, string FirstName, string MiddleName, string LastName, string Suffix, string EmailAddress, int EmailPromotion, string Phone, string PasswordHash, string PasswordSalt, string AdditionalContactInfo, System.Guid rowguid, System.DateTime ModifiedDate) {
spContactsRow rowspContactsRow = ((spContactsRow)(this.NewRow()));
rowspContactsRow.ItemArray = new object[] {
null,
NameStyle,
Title,
FirstName,
MiddleName,
LastName,
Suffix,
EmailAddress,
EmailPromotion,
Phone,
PasswordHash,
PasswordSalt,
AdditionalContactInfo,
rowguid,
ModifiedDate};
this.Rows.Add(rowspContactsRow);
return rowspContactsRow;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -