765 lines
32 KiB
C#
765 lines
32 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents a row of data in a <see cref="T:System.Data.DataTable" />.</summary>
|
|
// Token: 0x0200002A RID: 42
|
|
[Token(Token = "0x200002A")]
|
|
public class DataRow
|
|
{
|
|
/// <summary>Initializes a new instance of the DataRow. Constructs a row from the builder. Only for internal usage.</summary>
|
|
/// <param name="builder">builder</param>
|
|
// Token: 0x060002D4 RID: 724 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002D4")]
|
|
[Address(RVA = "0xCEC180", Offset = "0xCEB180", VA = "0x180CEC180")]
|
|
protected internal DataRow(DataRowBuilder builder)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000075 RID: 117
|
|
// (get) Token: 0x060002D5 RID: 725 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060002D6 RID: 726 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000075")]
|
|
internal DataColumn LastChangedColumn
|
|
{
|
|
[Token(Token = "0x60002D5")]
|
|
[Address(RVA = "0xCEC370", Offset = "0xCEB370", VA = "0x180CEC370")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60002D6")]
|
|
[Address(RVA = "0xCECD70", Offset = "0xCEBD70", VA = "0x180CECD70")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000076 RID: 118
|
|
// (get) Token: 0x060002D7 RID: 727 RVA: 0x0000296C File Offset: 0x00000B6C
|
|
[Token(Token = "0x17000076")]
|
|
internal bool HasPropertyChanged
|
|
{
|
|
[Token(Token = "0x60002D7")]
|
|
[Address(RVA = "0xCEC250", Offset = "0xCEB250", VA = "0x180CEC250")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000077 RID: 119
|
|
// (get) Token: 0x060002D8 RID: 728 RVA: 0x00002984 File Offset: 0x00000B84
|
|
// (set) Token: 0x060002D9 RID: 729 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000077")]
|
|
internal int RBTreeNodeId
|
|
{
|
|
[Token(Token = "0x60002D8")]
|
|
[Address(RVA = "0x56DD20", Offset = "0x56CD20", VA = "0x18056DD20")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
[Token(Token = "0x60002D9")]
|
|
[Address(RVA = "0xCECD80", Offset = "0xCEBD80", VA = "0x180CECD80")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the custom error description for a row.</summary>
|
|
/// <returns>The text describing an error.</returns>
|
|
// Token: 0x17000078 RID: 120
|
|
// (get) Token: 0x060002DA RID: 730 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060002DB RID: 731 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000078")]
|
|
public string RowError
|
|
{
|
|
[Token(Token = "0x60002DA")]
|
|
[Address(RVA = "0xCEC380", Offset = "0xCEB380", VA = "0x180CEC380")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60002DB")]
|
|
[Address(RVA = "0xCECE20", Offset = "0xCEBE20", VA = "0x180CECE20")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x060002DC RID: 732 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002DC")]
|
|
[Address(RVA = "0xCEB590", Offset = "0xCEA590", VA = "0x180CEB590")]
|
|
private void RowErrorChanged()
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000079 RID: 121
|
|
// (get) Token: 0x060002DD RID: 733 RVA: 0x0000299C File Offset: 0x00000B9C
|
|
// (set) Token: 0x060002DE RID: 734 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000079")]
|
|
internal long rowID
|
|
{
|
|
[Token(Token = "0x60002DD")]
|
|
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
|
|
get
|
|
{
|
|
return 0L;
|
|
}
|
|
[Token(Token = "0x60002DE")]
|
|
[Address(RVA = "0xCED000", Offset = "0xCEC000", VA = "0x180CED000")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the current state of the row with regard to its relationship to the <see cref="T:System.Data.DataRowCollection" />.</summary>
|
|
/// <returns>One of the <see cref="T:System.Data.DataRowState" /> values.</returns>
|
|
// Token: 0x1700007A RID: 122
|
|
// (get) Token: 0x060002DF RID: 735 RVA: 0x000029B4 File Offset: 0x00000BB4
|
|
[Token(Token = "0x1700007A")]
|
|
public DataRowState RowState
|
|
{
|
|
[Token(Token = "0x60002DF")]
|
|
[Address(RVA = "0xCEC3D0", Offset = "0xCEB3D0", VA = "0x180CEC3D0")]
|
|
get
|
|
{
|
|
return (DataRowState)0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Data.DataTable" /> for which this row has a schema.</summary>
|
|
/// <returns>The <see cref="T:System.Data.DataTable" /> to which this row belongs.</returns>
|
|
// Token: 0x1700007B RID: 123
|
|
// (get) Token: 0x060002E0 RID: 736 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700007B")]
|
|
public DataTable Table
|
|
{
|
|
[Token(Token = "0x60002E0")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060002E1 RID: 737 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002E1")]
|
|
[Address(RVA = "0xCE9520", Offset = "0xCE8520", VA = "0x180CE9520")]
|
|
internal void CheckForLoops(DataRelation rel)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060002E2 RID: 738 RVA: 0x000029CC File Offset: 0x00000BCC
|
|
[Token(Token = "0x60002E2")]
|
|
[Address(RVA = "0xCEA520", Offset = "0xCE9520", VA = "0x180CEA520")]
|
|
internal int GetNestedParentCount()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Gets or sets the data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
/// <param name="column">A <see cref="T:System.Data.DataColumn" /> that contains the data.</param>
|
|
/// <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The column does not belong to this table.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> is null.</exception>
|
|
/// <exception cref="T:System.Data.DeletedRowInaccessibleException">An attempt was made to set a value on a deleted row.</exception>
|
|
/// <exception cref="T:System.InvalidCastException">The data types of the value and the column do not match.</exception>
|
|
// Token: 0x1700007C RID: 124
|
|
[Token(Token = "0x1700007C")]
|
|
public object this[DataColumn column]
|
|
{
|
|
[Token(Token = "0x60002E3")]
|
|
[Address(RVA = "0xCEC260", Offset = "0xCEB260", VA = "0x180CEC260")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60002E4")]
|
|
[Address(RVA = "0xCEC9D0", Offset = "0xCEB9D0", VA = "0x180CEC9D0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the specified version of data stored in the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
/// <param name="column">A <see cref="T:System.Data.DataColumn" /> that contains information about the column.</param>
|
|
/// <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version that you want. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
/// <returns>An <see cref="T:System.Object" /> that contains the data.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The column does not belong to the table.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="column" /> argument contains null.</exception>
|
|
/// <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
// Token: 0x1700007D RID: 125
|
|
[Token(Token = "0x1700007D")]
|
|
public object this[DataColumn column, DataRowVersion version]
|
|
{
|
|
[Token(Token = "0x60002E5")]
|
|
[Address(RVA = "0xCEC300", Offset = "0xCEB300", VA = "0x180CEC300")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets all the values for this row through an array.</summary>
|
|
/// <returns>An array of type <see cref="T:System.Object" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The array is larger than the number of columns in the table.</exception>
|
|
/// <exception cref="T:System.InvalidCastException">A value in the array does not match its <see cref="P:System.Data.DataColumn.DataType" /> in its respective <see cref="T:System.Data.DataColumn" />.</exception>
|
|
/// <exception cref="T:System.Data.ConstraintException">An edit broke a constraint.</exception>
|
|
/// <exception cref="T:System.Data.ReadOnlyException">An edit tried to change the value of a read-only column.</exception>
|
|
/// <exception cref="T:System.Data.NoNullAllowedException">An edit tried to put a null value in a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> of the <see cref="T:System.Data.DataColumn" /> object is <see langword="false" />.</exception>
|
|
/// <exception cref="T:System.Data.DeletedRowInaccessibleException">The row has been deleted.</exception>
|
|
// Token: 0x1700007E RID: 126
|
|
// (set) Token: 0x060002E6 RID: 742 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1700007E")]
|
|
public object[] ItemArray
|
|
{
|
|
[Token(Token = "0x60002E6")]
|
|
[Address(RVA = "0xCEC550", Offset = "0xCEB550", VA = "0x180CEC550")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Commits all the changes made to this row since the last time <see cref="M:System.Data.DataRow.AcceptChanges" /> was called.</summary>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
// Token: 0x060002E7 RID: 743 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002E7")]
|
|
[Address(RVA = "0xCE9090", Offset = "0xCE8090", VA = "0x180CE9090")]
|
|
public void AcceptChanges()
|
|
{
|
|
}
|
|
|
|
/// <summary>Starts an edit operation on a <see cref="T:System.Data.DataRow" /> object.</summary>
|
|
/// <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
/// <exception cref="T:System.Data.DeletedRowInaccessibleException">The method was called upon a deleted row.</exception>
|
|
// Token: 0x060002E8 RID: 744 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002E8")]
|
|
[Address(RVA = "0xCE93E0", Offset = "0xCE83E0", VA = "0x180CE93E0")]
|
|
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
|
public void BeginEdit()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060002E9 RID: 745 RVA: 0x000029E4 File Offset: 0x00000BE4
|
|
[Token(Token = "0x60002E9")]
|
|
[Address(RVA = "0xCE9310", Offset = "0xCE8310", VA = "0x180CE9310")]
|
|
private bool BeginEditInternal()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Cancels the current edit on the row.</summary>
|
|
/// <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
// Token: 0x060002EA RID: 746 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002EA")]
|
|
[Address(RVA = "0xCE93F0", Offset = "0xCE83F0", VA = "0x180CE93F0")]
|
|
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
|
public void CancelEdit()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060002EB RID: 747 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002EB")]
|
|
[Address(RVA = "0xCE9460", Offset = "0xCE8460", VA = "0x180CE9460")]
|
|
private void CheckColumn(DataColumn column)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060002EC RID: 748 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002EC")]
|
|
[Address(RVA = "0xCE9650", Offset = "0xCE8650", VA = "0x180CE9650")]
|
|
internal void CheckInTable()
|
|
{
|
|
}
|
|
|
|
/// <summary>Deletes the <see cref="T:System.Data.DataRow" />.</summary>
|
|
/// <exception cref="T:System.Data.DeletedRowInaccessibleException">The <see cref="T:System.Data.DataRow" /> has already been deleted.</exception>
|
|
// Token: 0x060002ED RID: 749 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002ED")]
|
|
[Address(RVA = "0xCE9BB0", Offset = "0xCE8BB0", VA = "0x180CE9BB0")]
|
|
public void Delete()
|
|
{
|
|
}
|
|
|
|
/// <summary>Ends the edit occurring on the row.</summary>
|
|
/// <exception cref="T:System.Data.InRowChangingEventException">The method was called inside the <see cref="E:System.Data.DataTable.RowChanging" /> event.</exception>
|
|
/// <exception cref="T:System.Data.ConstraintException">The edit broke a constraint.</exception>
|
|
/// <exception cref="T:System.Data.ReadOnlyException">The row belongs to the table and the edit tried to change the value of a read-only column.</exception>
|
|
/// <exception cref="T:System.Data.NoNullAllowedException">The edit tried to put a null value into a column where <see cref="P:System.Data.DataColumn.AllowDBNull" /> is false.</exception>
|
|
// Token: 0x060002EE RID: 750 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002EE")]
|
|
[Address(RVA = "0xCE9C20", Offset = "0xCE8C20", VA = "0x180CE9C20")]
|
|
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
|
public void EndEdit()
|
|
{
|
|
}
|
|
|
|
/// <summary>Sets the error description for a column specified by index.</summary>
|
|
/// <param name="columnIndex">The zero-based index of the column.</param>
|
|
/// <param name="error">The error description.</param>
|
|
/// <exception cref="T:System.IndexOutOfRangeException">The <paramref name="columnIndex" /> argument is out of range</exception>
|
|
// Token: 0x060002EF RID: 751 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002EF")]
|
|
[Address(RVA = "0xCEB5E0", Offset = "0xCEA5E0", VA = "0x180CEB5E0")]
|
|
public void SetColumnError(int columnIndex, string error)
|
|
{
|
|
}
|
|
|
|
/// <summary>Sets the error description for a column specified as a <see cref="T:System.Data.DataColumn" />.</summary>
|
|
/// <param name="column">The <see cref="T:System.Data.DataColumn" /> to set the error description for.</param>
|
|
/// <param name="error">The error description.</param>
|
|
// Token: 0x060002F0 RID: 752 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002F0")]
|
|
[Address(RVA = "0xCEB670", Offset = "0xCEA670", VA = "0x180CEB670")]
|
|
public void SetColumnError(DataColumn column, string error)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the error description for a column, specified by name.</summary>
|
|
/// <param name="columnName">The name of the column.</param>
|
|
/// <returns>The text of the error description.</returns>
|
|
// Token: 0x060002F1 RID: 753 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F1")]
|
|
[Address(RVA = "0xCEA080", Offset = "0xCE9080", VA = "0x180CEA080")]
|
|
public string GetColumnError(string columnName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the error description of the specified <see cref="T:System.Data.DataColumn" />.</summary>
|
|
/// <param name="column">A <see cref="T:System.Data.DataColumn" />.</param>
|
|
/// <returns>The text of the error description.</returns>
|
|
// Token: 0x060002F2 RID: 754 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F2")]
|
|
[Address(RVA = "0xCE9F40", Offset = "0xCE8F40", VA = "0x180CE9F40")]
|
|
public string GetColumnError(DataColumn column)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Clears the errors for the row. This includes the <see cref="P:System.Data.DataRow.RowError" /> and errors set with <see cref="M:System.Data.DataRow.SetColumnError(System.Int32,System.String)" />.</summary>
|
|
// Token: 0x060002F3 RID: 755 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002F3")]
|
|
[Address(RVA = "0xCE9700", Offset = "0xCE8700", VA = "0x180CE9700")]
|
|
public void ClearErrors()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060002F4 RID: 756 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60002F4")]
|
|
[Address(RVA = "0xCE96A0", Offset = "0xCE86A0", VA = "0x180CE96A0")]
|
|
internal void ClearError(DataColumn column)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a value that indicates whether there are errors in a row.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the row contains an error; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x1700007F RID: 127
|
|
// (get) Token: 0x060002F5 RID: 757 RVA: 0x000029FC File Offset: 0x00000BFC
|
|
[Token(Token = "0x1700007F")]
|
|
public bool HasErrors
|
|
{
|
|
[Token(Token = "0x60002F5")]
|
|
[Address(RVA = "0xCEC210", Offset = "0xCEB210", VA = "0x180CEC210")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets an array of columns that have errors.</summary>
|
|
/// <returns>An array of <see cref="T:System.Data.DataColumn" /> objects that contain errors.</returns>
|
|
// Token: 0x060002F6 RID: 758 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F6")]
|
|
[Address(RVA = "0xCEA1E0", Offset = "0xCE91E0", VA = "0x180CEA1E0")]
|
|
public DataColumn[] GetColumnsInError()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the child rows of this <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The relation is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
/// <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
// Token: 0x060002F7 RID: 759 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F7")]
|
|
[Address(RVA = "0xCE9D10", Offset = "0xCE8D10", VA = "0x180CE9D10")]
|
|
public DataRow[] GetChildRows(DataRelation relation)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the child rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get. Possible values are <see langword="Default" />, <see langword="Original" />, <see langword="Current" />, and <see langword="Proposed" />.</param>
|
|
/// <returns>An array of <see cref="T:System.Data.DataRow" /> objects.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The relation and row do not belong to the same table.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
/// <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
// Token: 0x060002F8 RID: 760 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F8")]
|
|
[Address(RVA = "0xCE9D20", Offset = "0xCE8D20", VA = "0x180CE9D20")]
|
|
public DataRow[] GetChildRows(DataRelation relation, DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060002F9 RID: 761 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002F9")]
|
|
[Address(RVA = "0xCEA360", Offset = "0xCE9360", VA = "0x180CEA360")]
|
|
internal DataColumn GetDataColumn(string columnName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="relation" /> does not belong to the <see cref="T:System.Data.DataTable" />.
|
|
/// -or-
|
|
/// The row is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
/// <exception cref="T:System.Data.InvalidConstraintException">This row does not belong to the child table of the <see cref="T:System.Data.DataRelation" /> object.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
|
|
// Token: 0x060002FA RID: 762 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FA")]
|
|
[Address(RVA = "0xCEA8C0", Offset = "0xCE98C0", VA = "0x180CEA8C0")]
|
|
public DataRow GetParentRow(DataRelation relation)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the parent row of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
|
|
/// <returns>The parent <see cref="T:System.Data.DataRow" /> of the current row.</returns>
|
|
/// <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.
|
|
/// -or-
|
|
/// The <paramref name="relation" /> does not belong to this table's parent relations.</exception>
|
|
/// <exception cref="T:System.Data.DataException">A child row has multiple parents.</exception>
|
|
/// <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a table.</exception>
|
|
/// <exception cref="T:System.Data.VersionNotFoundException">The row does not have this version of data.</exception>
|
|
// Token: 0x060002FB RID: 763 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FB")]
|
|
[Address(RVA = "0xCEA730", Offset = "0xCE9730", VA = "0x180CEA730")]
|
|
public DataRow GetParentRow(DataRelation relation, DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060002FC RID: 764 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FC")]
|
|
[Address(RVA = "0xCEA600", Offset = "0xCE9600", VA = "0x180CEA600")]
|
|
internal DataRow GetNestedParentRow(DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
|
|
// Token: 0x060002FD RID: 765 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FD")]
|
|
[Address(RVA = "0xCEAAF0", Offset = "0xCE9AF0", VA = "0x180CEAAF0")]
|
|
public DataRow[] GetParentRows(DataRelation relation)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the parent rows of a <see cref="T:System.Data.DataRow" /> using the specified <see cref="T:System.Data.DataRelation" />, and <see cref="T:System.Data.DataRowVersion" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> to use.</param>
|
|
/// <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values specifying the version of the data to get.</param>
|
|
/// <returns>An array of <see cref="T:System.Data.DataRow" /> objects or an array of length zero.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.DataRelation" /> does not belong to this row's <see cref="T:System.Data.DataSet" />.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The row is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Data.InvalidConstraintException">The relation's child table is not the table the row belongs to.</exception>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to a <see cref="T:System.Data.DataTable" />.</exception>
|
|
/// <exception cref="T:System.Data.VersionNotFoundException">The row does not have the requested <see cref="T:System.Data.DataRowVersion" />.</exception>
|
|
// Token: 0x060002FE RID: 766 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FE")]
|
|
[Address(RVA = "0xCEA8D0", Offset = "0xCE98D0", VA = "0x180CEA8D0")]
|
|
public DataRow[] GetParentRows(DataRelation relation, DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060002FF RID: 767 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002FF")]
|
|
[Address(RVA = "0xCEA120", Offset = "0xCE9120", VA = "0x180CEA120")]
|
|
internal object[] GetColumnValues(DataColumn[] columns)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000300 RID: 768 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000300")]
|
|
[Address(RVA = "0xCEA180", Offset = "0xCE9180", VA = "0x180CEA180")]
|
|
internal object[] GetColumnValues(DataColumn[] columns, DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000301 RID: 769 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000301")]
|
|
[Address(RVA = "0xCEA480", Offset = "0xCE9480", VA = "0x180CEA480")]
|
|
internal object[] GetKeyValues(DataKey key)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000302 RID: 770 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000302")]
|
|
[Address(RVA = "0xCEA4F0", Offset = "0xCE94F0", VA = "0x180CEA4F0")]
|
|
internal object[] GetKeyValues(DataKey key, DataRowVersion version)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000303 RID: 771 RVA: 0x00002A14 File Offset: 0x00000C14
|
|
[Token(Token = "0x6000303")]
|
|
[Address(RVA = "0xCEA310", Offset = "0xCE9310", VA = "0x180CEA310")]
|
|
internal int GetCurrentRecordNo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000304 RID: 772 RVA: 0x00002A2C File Offset: 0x00000C2C
|
|
[Token(Token = "0x6000304")]
|
|
[Address(RVA = "0xCEA3F0", Offset = "0xCE93F0", VA = "0x180CEA3F0")]
|
|
internal int GetDefaultRecord()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000305 RID: 773 RVA: 0x00002A44 File Offset: 0x00000C44
|
|
[Token(Token = "0x6000305")]
|
|
[Address(RVA = "0xCEA6E0", Offset = "0xCE96E0", VA = "0x180CEA6E0")]
|
|
internal int GetOriginalRecordNo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000306 RID: 774 RVA: 0x00002A5C File Offset: 0x00000C5C
|
|
[Token(Token = "0x6000306")]
|
|
[Address(RVA = "0xCEAB00", Offset = "0xCE9B00", VA = "0x180CEAB00")]
|
|
private int GetProposedRecordNo()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000307 RID: 775 RVA: 0x00002A74 File Offset: 0x00000C74
|
|
[Token(Token = "0x6000307")]
|
|
[Address(RVA = "0xCEAB50", Offset = "0xCE9B50", VA = "0x180CEAB50")]
|
|
internal int GetRecordFromVersion(DataRowVersion version)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000308 RID: 776 RVA: 0x00002A8C File Offset: 0x00000C8C
|
|
[Token(Token = "0x6000308")]
|
|
[Address(RVA = "0xCEA450", Offset = "0xCE9450", VA = "0x180CEA450")]
|
|
internal DataRowVersion GetDefaultRowVersion(DataViewRowState viewState)
|
|
{
|
|
return (DataRowVersion)0;
|
|
}
|
|
|
|
// Token: 0x06000309 RID: 777 RVA: 0x00002AA4 File Offset: 0x00000CA4
|
|
[Token(Token = "0x6000309")]
|
|
[Address(RVA = "0xCEACA0", Offset = "0xCE9CA0", VA = "0x180CEACA0")]
|
|
internal DataViewRowState GetRecordState(int record)
|
|
{
|
|
return DataViewRowState.None;
|
|
}
|
|
|
|
// Token: 0x0600030A RID: 778 RVA: 0x00002ABC File Offset: 0x00000CBC
|
|
[Token(Token = "0x600030A")]
|
|
[Address(RVA = "0xCEACF0", Offset = "0xCE9CF0", VA = "0x180CEACF0")]
|
|
internal bool HasKeyChanged(DataKey key)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x0600030B RID: 779 RVA: 0x00002AD4 File Offset: 0x00000CD4
|
|
[Token(Token = "0x600030B")]
|
|
[Address(RVA = "0xCEAD20", Offset = "0xCE9D20", VA = "0x180CEAD20")]
|
|
internal bool HasKeyChanged(DataKey key, DataRowVersion version1, DataRowVersion version2)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Gets a value that indicates whether a specified version exists.</summary>
|
|
/// <param name="version">One of the <see cref="T:System.Data.DataRowVersion" /> values that specifies the row version.</param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the version exists; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x0600030C RID: 780 RVA: 0x00002AEC File Offset: 0x00000CEC
|
|
[Token(Token = "0x600030C")]
|
|
[Address(RVA = "0xCEADC0", Offset = "0xCE9DC0", VA = "0x180CEADC0")]
|
|
public bool HasVersion(DataRowVersion version)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x0600030D RID: 781 RVA: 0x00002B04 File Offset: 0x00000D04
|
|
[Token(Token = "0x600030D")]
|
|
[Address(RVA = "0xCEAFE0", Offset = "0xCE9FE0", VA = "0x180CEAFE0")]
|
|
internal bool HaveValuesChanged(DataColumn[] columns)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x0600030E RID: 782 RVA: 0x00002B1C File Offset: 0x00000D1C
|
|
[Token(Token = "0x600030E")]
|
|
[Address(RVA = "0xCEAE80", Offset = "0xCE9E80", VA = "0x180CEAE80")]
|
|
internal bool HaveValuesChanged(DataColumn[] columns, DataRowVersion version1, DataRowVersion version2)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Rejects all changes made to the row since <see cref="M:System.Data.DataRow.AcceptChanges" /> was last called.</summary>
|
|
/// <exception cref="T:System.Data.RowNotInTableException">The row does not belong to the table.</exception>
|
|
// Token: 0x0600030F RID: 783 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600030F")]
|
|
[Address(RVA = "0xCEB140", Offset = "0xCEA140", VA = "0x180CEB140")]
|
|
public void RejectChanges()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000310 RID: 784 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000310")]
|
|
[Address(RVA = "0xCEB580", Offset = "0xCEA580", VA = "0x180CEB580")]
|
|
internal void ResetLastChangedColumn()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000311 RID: 785 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000311")]
|
|
[Address(RVA = "0xCEB8C0", Offset = "0xCEA8C0", VA = "0x180CEB8C0")]
|
|
internal void SetKeyValues(DataKey key, object[] keyValues)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000312 RID: 786 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000312")]
|
|
[Address(RVA = "0xCEBAA0", Offset = "0xCEAAA0", VA = "0x180CEBAA0")]
|
|
internal void SetNestedParentRow(DataRow parentRow, bool setNonNested)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000313 RID: 787 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000313")]
|
|
[Address(RVA = "0xCEBDC0", Offset = "0xCEADC0", VA = "0x180CEBDC0")]
|
|
internal void SetParentRowToDBNull()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000314 RID: 788 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000314")]
|
|
[Address(RVA = "0xCEBFB0", Offset = "0xCEAFB0", VA = "0x180CEBFB0")]
|
|
internal void SetParentRowToDBNull(DataRelation relation)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000315 RID: 789 RVA: 0x00002B34 File Offset: 0x00000D34
|
|
[Token(Token = "0x6000315")]
|
|
[Address(RVA = "0xCE97F0", Offset = "0xCE87F0", VA = "0x180CE97F0")]
|
|
internal int CopyValuesIntoStore(ArrayList storeList, ArrayList nullbitList, int storeIndex)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x04000083 RID: 131
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000083")]
|
|
private readonly DataTable _table;
|
|
|
|
// Token: 0x04000084 RID: 132
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000084")]
|
|
private readonly DataColumnCollection _columns;
|
|
|
|
// Token: 0x04000085 RID: 133
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4000085")]
|
|
internal int _oldRecord;
|
|
|
|
// Token: 0x04000086 RID: 134
|
|
[FieldOffset(Offset = "0x24")]
|
|
[Token(Token = "0x4000086")]
|
|
internal int _newRecord;
|
|
|
|
// Token: 0x04000087 RID: 135
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x4000087")]
|
|
internal int _tempRecord;
|
|
|
|
// Token: 0x04000088 RID: 136
|
|
[FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x4000088")]
|
|
internal long _rowID;
|
|
|
|
// Token: 0x04000089 RID: 137
|
|
[FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x4000089")]
|
|
internal DataRowAction _action;
|
|
|
|
// Token: 0x0400008A RID: 138
|
|
[FieldOffset(Offset = "0x3C")]
|
|
[Token(Token = "0x400008A")]
|
|
internal bool _inChangingEvent;
|
|
|
|
// Token: 0x0400008B RID: 139
|
|
[FieldOffset(Offset = "0x3D")]
|
|
[Token(Token = "0x400008B")]
|
|
internal bool _inDeletingEvent;
|
|
|
|
// Token: 0x0400008C RID: 140
|
|
[FieldOffset(Offset = "0x3E")]
|
|
[Token(Token = "0x400008C")]
|
|
internal bool _inCascade;
|
|
|
|
// Token: 0x0400008D RID: 141
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x400008D")]
|
|
private DataColumn _lastChangedColumn;
|
|
|
|
// Token: 0x0400008E RID: 142
|
|
[FieldOffset(Offset = "0x48")]
|
|
[Token(Token = "0x400008E")]
|
|
private int _countColumnChange;
|
|
|
|
// Token: 0x0400008F RID: 143
|
|
[FieldOffset(Offset = "0x50")]
|
|
[Token(Token = "0x400008F")]
|
|
private DataError _error;
|
|
|
|
// Token: 0x04000090 RID: 144
|
|
[FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x4000090")]
|
|
private int _rbTreeNodeId;
|
|
|
|
// Token: 0x04000091 RID: 145
|
|
[Token(Token = "0x4000091")]
|
|
private static int s_objectTypeCount;
|
|
|
|
// Token: 0x04000092 RID: 146
|
|
[FieldOffset(Offset = "0x5C")]
|
|
[Token(Token = "0x4000092")]
|
|
internal readonly int _objectID;
|
|
}
|
|
}
|