1070 lines
42 KiB
C#
1070 lines
42 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.Serialization;
|
|
using System.Xml;
|
|
using System.Xml.Schema;
|
|
using System.Xml.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents an in-memory cache of data.</summary>
|
|
// Token: 0x02000037 RID: 55
|
|
[Token(Token = "0x2000037")]
|
|
[XmlRoot]
|
|
[XmlSchemaProvider("GetDataSetSchema")]
|
|
[DefaultProperty("DataSetName")]
|
|
[XmlRoot("DataSet")]
|
|
[Serializable]
|
|
public class DataSet : MarshalByValueComponent, IListSource, IXmlSerializable, ISupportInitializeNotification, ISupportInitialize, ISerializable
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
|
|
// Token: 0x06000357 RID: 855 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000357")]
|
|
[Address(RVA = "0x5387E0", Offset = "0x5377E0", VA = "0x1805387E0")]
|
|
public DataSet()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class with the given name.</summary>
|
|
/// <param name="dataSetName">The name of the <see cref="T:System.Data.DataSet" />.</param>
|
|
// Token: 0x06000358 RID: 856 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000358")]
|
|
[Address(RVA = "0x5389C0", Offset = "0x5379C0", VA = "0x1805389C0")]
|
|
public DataSet(string dataSetName)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets a <see cref="T:System.Data.SerializationFormat" /> for the <see cref="T:System.Data.DataSet" /> used during remoting.</summary>
|
|
/// <returns>A <see cref="T:System.Data.SerializationFormat" /> object.</returns>
|
|
// Token: 0x17000088 RID: 136
|
|
// (get) Token: 0x06000359 RID: 857 RVA: 0x00002C3C File Offset: 0x00000E3C
|
|
// (set) Token: 0x0600035A RID: 858 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000088")]
|
|
[DefaultValue(null)]
|
|
public SerializationFormat RemotingFormat
|
|
{
|
|
[Token(Token = "0x6000359")]
|
|
[Address(RVA = "0x483340", Offset = "0x482340", VA = "0x180483340")]
|
|
get
|
|
{
|
|
return SerializationFormat.Xml;
|
|
}
|
|
[Token(Token = "0x600035A")]
|
|
[Address(RVA = "0x539900", Offset = "0x538900", VA = "0x180539900")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>A <see cref="T:System.Data.SchemaSerializationMode" /> for a <see cref="T:System.Data.DataSet" />.</returns>
|
|
// Token: 0x17000089 RID: 137
|
|
// (get) Token: 0x0600035B RID: 859 RVA: 0x00002C54 File Offset: 0x00000E54
|
|
[Token(Token = "0x17000089")]
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
[Browsable(false)]
|
|
public virtual SchemaSerializationMode SchemaSerializationMode
|
|
{
|
|
[Token(Token = "0x600035B")]
|
|
[Address(RVA = "0x4E8690", Offset = "0x4E7690", VA = "0x1804E8690", Slot = "27")]
|
|
get
|
|
{
|
|
return (SchemaSerializationMode)0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of a <see cref="T:System.Data.DataSet" /> class that has the given serialization information and context.</summary>
|
|
/// <param name="info">The data needed to serialize or deserialize an object.</param>
|
|
/// <param name="context">The source and destination of a given serialized stream.</param>
|
|
// Token: 0x0600035C RID: 860 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600035C")]
|
|
[Address(RVA = "0x5387B0", Offset = "0x5377B0", VA = "0x1805387B0")]
|
|
protected DataSet(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataSet" /> class.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</param>
|
|
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object.</param>
|
|
/// <param name="ConstructSchema">The boolean value.</param>
|
|
// Token: 0x0600035D RID: 861 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600035D")]
|
|
[Address(RVA = "0x5389F0", Offset = "0x5379F0", VA = "0x1805389F0")]
|
|
protected DataSet(SerializationInfo info, StreamingContext context, bool ConstructSchema)
|
|
{
|
|
}
|
|
|
|
/// <summary>Populates a serialization information object with the data needed to serialize the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data associated with the <see cref="T:System.Data.DataSet" />.</param>
|
|
/// <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source and destination of the serialized stream associated with the <see cref="T:System.Data.DataSet" />.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
|
|
// Token: 0x0600035E RID: 862 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600035E")]
|
|
[Address(RVA = "0x531250", Offset = "0x530250", VA = "0x180531250", Slot = "28")]
|
|
public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Deserialize all of the tables data of the DataSet from the binary or XML stream.</summary>
|
|
// Token: 0x0600035F RID: 863 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600035F")]
|
|
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "29")]
|
|
protected virtual void InitializeDerivedDataSet()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000360 RID: 864 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000360")]
|
|
[Address(RVA = "0x536190", Offset = "0x535190", VA = "0x180536190")]
|
|
private void SerializeDataSet(SerializationInfo info, StreamingContext context, SerializationFormat remotingFormat)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000361 RID: 865 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000361")]
|
|
[Address(RVA = "0x52FD20", Offset = "0x52ED20", VA = "0x18052FD20")]
|
|
internal void DeserializeDataSet(SerializationInfo info, StreamingContext context, SerializationFormat remotingFormat, SchemaSerializationMode schemaSerializationMode)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000362 RID: 866 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000362")]
|
|
[Address(RVA = "0x52F800", Offset = "0x52E800", VA = "0x18052F800")]
|
|
private void DeserializeDataSetSchema(SerializationInfo info, StreamingContext context, SerializationFormat remotingFormat, SchemaSerializationMode schemaSerializationMode)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000363 RID: 867 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000363")]
|
|
[Address(RVA = "0x52F480", Offset = "0x52E480", VA = "0x18052F480")]
|
|
private void DeserializeDataSetData(SerializationInfo info, StreamingContext context, SerializationFormat remotingFormat)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000364 RID: 868 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000364")]
|
|
[Address(RVA = "0x536040", Offset = "0x535040", VA = "0x180536040")]
|
|
private void SerializeDataSetProperties(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000365 RID: 869 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000365")]
|
|
[Address(RVA = "0x52F620", Offset = "0x52E620", VA = "0x18052F620")]
|
|
private void DeserializeDataSetProperties(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000366 RID: 870 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000366")]
|
|
[Address(RVA = "0x536970", Offset = "0x535970", VA = "0x180536970")]
|
|
private void SerializeRelations(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000367 RID: 871 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000367")]
|
|
[Address(RVA = "0x52FEF0", Offset = "0x52EEF0", VA = "0x18052FEF0")]
|
|
private void DeserializeRelations(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000368 RID: 872 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000368")]
|
|
[Address(RVA = "0x530E40", Offset = "0x52FE40", VA = "0x180530E40")]
|
|
internal void FailedEnableConstraints()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets a value indicating whether string comparisons within <see cref="T:System.Data.DataTable" /> objects are case-sensitive.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if string comparisons are case-sensitive; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
|
// Token: 0x1700008A RID: 138
|
|
// (get) Token: 0x06000369 RID: 873 RVA: 0x00002C6C File Offset: 0x00000E6C
|
|
// (set) Token: 0x0600036A RID: 874 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1700008A")]
|
|
[DefaultValue(false)]
|
|
public bool CaseSensitive
|
|
{
|
|
[Token(Token = "0x6000369")]
|
|
[Address(RVA = "0x538C50", Offset = "0x537C50", VA = "0x180538C50")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
[Token(Token = "0x600036A")]
|
|
[Address(RVA = "0x538E60", Offset = "0x537E60", VA = "0x180538E60")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="P:System.ComponentModel.IListSource.ContainsListCollection" />.</returns>
|
|
// Token: 0x1700008B RID: 139
|
|
// (get) Token: 0x0600036B RID: 875 RVA: 0x00002C84 File Offset: 0x00000E84
|
|
[Token(Token = "0x1700008B")]
|
|
bool IListSource.ContainsListCollection
|
|
{
|
|
[Token(Token = "0x600036B")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "16")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a custom view of the data contained in the <see cref="T:System.Data.DataSet" /> to allow filtering, searching, and navigating using a custom <see cref="T:System.Data.DataViewManager" />.</summary>
|
|
/// <returns>A <see cref="T:System.Data.DataViewManager" /> object.</returns>
|
|
// Token: 0x1700008C RID: 140
|
|
// (get) Token: 0x0600036C RID: 876 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700008C")]
|
|
[Browsable(false)]
|
|
public DataViewManager DefaultViewManager
|
|
{
|
|
[Token(Token = "0x600036C")]
|
|
[Address(RVA = "0x538C60", Offset = "0x537C60", VA = "0x180538C60")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets a value indicating whether constraint rules are followed when attempting any update operation.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if rules are enforced; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
|
|
/// <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enforced.</exception>
|
|
// Token: 0x1700008D RID: 141
|
|
// (get) Token: 0x0600036D RID: 877 RVA: 0x00002C9C File Offset: 0x00000E9C
|
|
// (set) Token: 0x0600036E RID: 878 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1700008D")]
|
|
[DefaultValue(true)]
|
|
public bool EnforceConstraints
|
|
{
|
|
[Token(Token = "0x600036D")]
|
|
[Address(RVA = "0x51F220", Offset = "0x51E220", VA = "0x18051F220")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
[Token(Token = "0x600036E")]
|
|
[Address(RVA = "0x5391F0", Offset = "0x5381F0", VA = "0x1805391F0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600036F RID: 879 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600036F")]
|
|
[Address(RVA = "0x51DB50", Offset = "0x51CB50", VA = "0x18051DB50")]
|
|
internal void RestoreEnforceConstraints(bool value)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000370 RID: 880 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000370")]
|
|
[Address(RVA = "0x530570", Offset = "0x52F570", VA = "0x180530570")]
|
|
internal void EnableConstraints()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets the name of the current <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>The name of the <see cref="T:System.Data.DataSet" />.</returns>
|
|
// Token: 0x1700008E RID: 142
|
|
// (get) Token: 0x06000371 RID: 881 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x06000372 RID: 882 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1700008E")]
|
|
[DefaultValue("")]
|
|
public string DataSetName
|
|
{
|
|
[Token(Token = "0x6000371")]
|
|
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x6000372")]
|
|
[Address(RVA = "0x5390C0", Offset = "0x5380C0", VA = "0x1805390C0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>The namespace of the <see cref="T:System.Data.DataSet" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">The namespace already has data.</exception>
|
|
// Token: 0x1700008F RID: 143
|
|
// (get) Token: 0x06000373 RID: 883 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x06000374 RID: 884 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x1700008F")]
|
|
[DefaultValue("")]
|
|
public string Namespace
|
|
{
|
|
[Token(Token = "0x6000373")]
|
|
[Address(RVA = "0x4936E0", Offset = "0x4926E0", VA = "0x1804936E0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x6000374")]
|
|
[Address(RVA = "0x5394B0", Offset = "0x5384B0", VA = "0x1805394B0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets an XML prefix that aliases the namespace of the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>The XML prefix for the <see cref="T:System.Data.DataSet" /> namespace.</returns>
|
|
// Token: 0x17000090 RID: 144
|
|
// (get) Token: 0x06000375 RID: 885 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x06000376 RID: 886 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000090")]
|
|
[DefaultValue("")]
|
|
public string Prefix
|
|
{
|
|
[Token(Token = "0x6000375")]
|
|
[Address(RVA = "0x4975A0", Offset = "0x4965A0", VA = "0x1804975A0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x6000376")]
|
|
[Address(RVA = "0x5397F0", Offset = "0x5387F0", VA = "0x1805397F0")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the collection of customized user information associated with the <see langword="DataSet" />.</summary>
|
|
/// <returns>A <see cref="T:System.Data.PropertyCollection" /> with all custom user information.</returns>
|
|
// Token: 0x17000091 RID: 145
|
|
// (get) Token: 0x06000377 RID: 887 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000091")]
|
|
[Browsable(false)]
|
|
public PropertyCollection ExtendedProperties
|
|
{
|
|
[Token(Token = "0x6000377")]
|
|
[Address(RVA = "0x538D50", Offset = "0x537D50", VA = "0x180538D50")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value that indicates whether the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> to indicate the component has completed initialization; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x17000092 RID: 146
|
|
// (get) Token: 0x06000378 RID: 888 RVA: 0x00002CB4 File Offset: 0x00000EB4
|
|
[Token(Token = "0x17000092")]
|
|
[Browsable(false)]
|
|
public bool IsInitialized
|
|
{
|
|
[Token(Token = "0x6000378")]
|
|
[Address(RVA = "0x538DB0", Offset = "0x537DB0", VA = "0x180538DB0", Slot = "21")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the locale information used to compare strings within the table.</summary>
|
|
/// <returns>A <see cref="T:System.Globalization.CultureInfo" /> that contains data about the user's machine locale. The default is <see langword="null" />.</returns>
|
|
// Token: 0x17000093 RID: 147
|
|
// (get) Token: 0x06000379 RID: 889 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x0600037A RID: 890 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000093")]
|
|
public CultureInfo Locale
|
|
{
|
|
[Token(Token = "0x6000379")]
|
|
[Address(RVA = "0x417720", Offset = "0x416720", VA = "0x180417720")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600037A")]
|
|
[Address(RVA = "0x539340", Offset = "0x538340", VA = "0x180539340")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600037B RID: 891 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600037B")]
|
|
[Address(RVA = "0x536E70", Offset = "0x535E70", VA = "0x180536E70")]
|
|
internal void SetLocaleValue(CultureInfo value, bool userSet)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600037C RID: 892 RVA: 0x00002CCC File Offset: 0x00000ECC
|
|
[Token(Token = "0x600037C")]
|
|
[Address(RVA = "0x4B4FC0", Offset = "0x4B3FC0", VA = "0x1804B4FC0")]
|
|
internal bool ShouldSerializeLocale()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Gets or sets an <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>An <see cref="T:System.ComponentModel.ISite" /> for the <see cref="T:System.Data.DataSet" />.</returns>
|
|
// Token: 0x17000094 RID: 148
|
|
// (get) Token: 0x0600037D RID: 893 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x0600037E RID: 894 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000094")]
|
|
[Browsable(false)]
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public override ISite Site
|
|
{
|
|
[Token(Token = "0x600037D")]
|
|
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "10")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600037E")]
|
|
[Address(RVA = "0x539A40", Offset = "0x538A40", VA = "0x180539A40", Slot = "11")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the collection of relations that link tables and allow navigation from parent tables to child tables.</summary>
|
|
/// <returns>A <see cref="T:System.Data.DataRelationCollection" /> that contains a collection of <see cref="T:System.Data.DataRelation" /> objects. An empty collection is returned if no <see cref="T:System.Data.DataRelation" /> objects exist.</returns>
|
|
// Token: 0x17000095 RID: 149
|
|
// (get) Token: 0x0600037F RID: 895 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000095")]
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
|
public DataRelationCollection Relations
|
|
{
|
|
[Token(Token = "0x600037F")]
|
|
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the collection of tables contained in the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <returns>The <see cref="T:System.Data.DataTableCollection" /> contained by this <see cref="T:System.Data.DataSet" />. An empty collection is returned if no <see cref="T:System.Data.DataTable" /> objects exist.</returns>
|
|
// Token: 0x17000096 RID: 150
|
|
// (get) Token: 0x06000380 RID: 896 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000096")]
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
|
public DataTableCollection Tables
|
|
{
|
|
[Token(Token = "0x6000380")]
|
|
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Occurs after the <see cref="T:System.Data.DataSet" /> is initialized.</summary>
|
|
// Token: 0x14000006 RID: 6
|
|
// (add) Token: 0x06000381 RID: 897 RVA: 0x0000206A File Offset: 0x0000026A
|
|
// (remove) Token: 0x06000382 RID: 898 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x14000006")]
|
|
public event EventHandler Initialized
|
|
{
|
|
[Token(Token = "0x6000381")]
|
|
[Address(RVA = "0x538BB0", Offset = "0x537BB0", VA = "0x180538BB0", Slot = "22")]
|
|
[CompilerGenerated]
|
|
add
|
|
{
|
|
}
|
|
[Token(Token = "0x6000382")]
|
|
[Address(RVA = "0x538DC0", Offset = "0x537DC0", VA = "0x180538DC0", Slot = "23")]
|
|
[CompilerGenerated]
|
|
remove
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Begins the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
// Token: 0x06000383 RID: 899 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000383")]
|
|
[Address(RVA = "0x52E450", Offset = "0x52D450", VA = "0x18052E450", Slot = "24")]
|
|
public void BeginInit()
|
|
{
|
|
}
|
|
|
|
/// <summary>Ends the initialization of a <see cref="T:System.Data.DataSet" /> that is used on a form or used by another component. The initialization occurs at run time.</summary>
|
|
// Token: 0x06000384 RID: 900 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000384")]
|
|
[Address(RVA = "0x530B00", Offset = "0x52FB00", VA = "0x180530B00", Slot = "25")]
|
|
public void EndInit()
|
|
{
|
|
}
|
|
|
|
/// <summary>Clears the <see cref="T:System.Data.DataSet" /> of any data by removing all rows in all tables.</summary>
|
|
// Token: 0x06000385 RID: 901 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000385")]
|
|
[Address(RVA = "0x52E460", Offset = "0x52D460", VA = "0x18052E460")]
|
|
public void Clear()
|
|
{
|
|
}
|
|
|
|
/// <summary>Copies the structure of the <see cref="T:System.Data.DataSet" />, including all <see cref="T:System.Data.DataTable" /> schemas, relations, and constraints. Does not copy any data.</summary>
|
|
/// <returns>A new <see cref="T:System.Data.DataSet" /> with the same schema as the current <see cref="T:System.Data.DataSet" />, but none of the data.</returns>
|
|
// Token: 0x06000386 RID: 902 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000386")]
|
|
[Address(RVA = "0x52E640", Offset = "0x52D640", VA = "0x18052E640", Slot = "30")]
|
|
public virtual DataSet Clone()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000387 RID: 903 RVA: 0x00002CE4 File Offset: 0x00000EE4
|
|
[Token(Token = "0x6000387")]
|
|
[Address(RVA = "0x530CF0", Offset = "0x52FCF0", VA = "0x180530CF0")]
|
|
internal int EstimatedXmlStringSize()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="M:System.ComponentModel.IListSource.GetList" />.</returns>
|
|
// Token: 0x06000388 RID: 904 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000388")]
|
|
[Address(RVA = "0x537730", Offset = "0x536730", VA = "0x180537730", Slot = "17")]
|
|
IList IListSource.GetList()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000389 RID: 905 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000389")]
|
|
[Address(RVA = "0x531280", Offset = "0x530280", VA = "0x180531280")]
|
|
internal string GetRemotingDiffGram(DataTable table)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600038A RID: 906 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600038A")]
|
|
[Address(RVA = "0x5313A0", Offset = "0x5303A0", VA = "0x1805313A0")]
|
|
internal string GetXmlSchemaForRemoting(DataTable table)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Reads the XML schema from the specified <see cref="T:System.Xml.XmlReader" /> into the <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
// Token: 0x0600038B RID: 907 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600038B")]
|
|
[Address(RVA = "0x533550", Offset = "0x532550", VA = "0x180533550")]
|
|
public void ReadXmlSchema(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600038C RID: 908 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600038C")]
|
|
[Address(RVA = "0x533560", Offset = "0x532560", VA = "0x180533560")]
|
|
internal void ReadXmlSchema(XmlReader reader, bool denyResolving)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600038D RID: 909 RVA: 0x00002CFC File Offset: 0x00000EFC
|
|
[Token(Token = "0x600038D")]
|
|
[Address(RVA = "0x531D60", Offset = "0x530D60", VA = "0x180531D60")]
|
|
internal bool MoveToElement(XmlReader reader, int depth)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x0600038E RID: 910 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600038E")]
|
|
[Address(RVA = "0x531E20", Offset = "0x530E20", VA = "0x180531E20")]
|
|
private static void MoveToElement(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600038F RID: 911 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600038F")]
|
|
[Address(RVA = "0x5321D0", Offset = "0x5311D0", VA = "0x1805321D0")]
|
|
internal void ReadEndElement(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000390 RID: 912 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000390")]
|
|
[Address(RVA = "0x5323E0", Offset = "0x5313E0", VA = "0x1805323E0")]
|
|
internal void ReadXSDSchema(XmlReader reader, bool denyResolving)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000391 RID: 913 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000391")]
|
|
[Address(RVA = "0x532280", Offset = "0x531280", VA = "0x180532280")]
|
|
internal void ReadXDRSchema(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000392 RID: 914 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000392")]
|
|
[Address(RVA = "0x5383D0", Offset = "0x5373D0", VA = "0x1805383D0")]
|
|
private void WriteXmlSchema(XmlWriter writer, SchemaFormat schemaFormat, Converter<Type, string> multipleTargetConverter)
|
|
{
|
|
}
|
|
|
|
/// <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" />.</summary>
|
|
/// <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
/// <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
// Token: 0x06000393 RID: 915 RVA: 0x00002D14 File Offset: 0x00000F14
|
|
[Token(Token = "0x6000393")]
|
|
[Address(RVA = "0x534080", Offset = "0x533080", VA = "0x180534080")]
|
|
public XmlReadMode ReadXml(XmlReader reader)
|
|
{
|
|
return XmlReadMode.Auto;
|
|
}
|
|
|
|
// Token: 0x06000394 RID: 916 RVA: 0x00002D2C File Offset: 0x00000F2C
|
|
[Token(Token = "0x6000394")]
|
|
[Address(RVA = "0x5340B0", Offset = "0x5330B0", VA = "0x1805340B0")]
|
|
internal XmlReadMode ReadXml(XmlReader reader, bool denyResolving)
|
|
{
|
|
return XmlReadMode.Auto;
|
|
}
|
|
|
|
// Token: 0x06000395 RID: 917 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000395")]
|
|
[Address(RVA = "0x531520", Offset = "0x530520", VA = "0x180531520")]
|
|
internal void InferSchema(XmlDocument xdoc, string[] excludedNamespaces, XmlReadMode mode)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000396 RID: 918 RVA: 0x00002D44 File Offset: 0x00000F44
|
|
[Token(Token = "0x6000396")]
|
|
[Address(RVA = "0x5317C0", Offset = "0x5307C0", VA = "0x1805317C0")]
|
|
private bool IsEmpty()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000397 RID: 919 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000397")]
|
|
[Address(RVA = "0x532650", Offset = "0x531650", VA = "0x180532650")]
|
|
private void ReadXmlDiffgram(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
/// <summary>Reads XML schema and data into the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlReader" /> and <see cref="T:System.Data.XmlReadMode" />.</summary>
|
|
/// <param name="reader">The <see cref="T:System.Xml.XmlReader" /> from which to read.</param>
|
|
/// <param name="mode">One of the <see cref="T:System.Data.XmlReadMode" /> values.</param>
|
|
/// <returns>The <see langword="XmlReadMode" /> used to read the data.</returns>
|
|
// Token: 0x06000398 RID: 920 RVA: 0x00002D5C File Offset: 0x00000F5C
|
|
[Token(Token = "0x6000398")]
|
|
[Address(RVA = "0x534090", Offset = "0x533090", VA = "0x180534090")]
|
|
public XmlReadMode ReadXml(XmlReader reader, XmlReadMode mode)
|
|
{
|
|
return XmlReadMode.Auto;
|
|
}
|
|
|
|
// Token: 0x06000399 RID: 921 RVA: 0x00002D74 File Offset: 0x00000F74
|
|
[Token(Token = "0x6000399")]
|
|
[Address(RVA = "0x535160", Offset = "0x534160", VA = "0x180535160")]
|
|
internal XmlReadMode ReadXml(XmlReader reader, XmlReadMode mode, bool denyResolving)
|
|
{
|
|
return XmlReadMode.Auto;
|
|
}
|
|
|
|
/// <summary>Writes the current data, and optionally the schema, for the <see cref="T:System.Data.DataSet" /> using the specified <see cref="T:System.Xml.XmlWriter" /> and <see cref="T:System.Data.XmlWriteMode" />. To write the schema, set the value for the <paramref name="mode" /> parameter to <see langword="WriteSchema" />.</summary>
|
|
/// <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> with which to write.</param>
|
|
/// <param name="mode">One of the <see cref="T:System.Data.XmlWriteMode" /> values.</param>
|
|
// Token: 0x0600039A RID: 922 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039A")]
|
|
[Address(RVA = "0x5385D0", Offset = "0x5375D0", VA = "0x1805385D0")]
|
|
public void WriteXml(XmlWriter writer, XmlWriteMode mode)
|
|
{
|
|
}
|
|
|
|
/// <summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema into the current <see langword="DataSet" />.</summary>
|
|
/// <param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
|
|
/// <exception cref="T:System.Data.ConstraintException">One or more constraints cannot be enabled.</exception>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
|
|
// Token: 0x0600039B RID: 923 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039B")]
|
|
[Address(RVA = "0x531C00", Offset = "0x530C00", VA = "0x180531C00")]
|
|
public void Merge(DataSet dataSet)
|
|
{
|
|
}
|
|
|
|
/// <summary>Merges a specified <see cref="T:System.Data.DataSet" /> and its schema with the current <see langword="DataSet" />, preserving or discarding changes in the current <see langword="DataSet" /> and handling an incompatible schema according to the given arguments.</summary>
|
|
/// <param name="dataSet">The <see langword="DataSet" /> whose data and schema will be merged.</param>
|
|
/// <param name="preserveChanges">
|
|
/// <see langword="true" /> to preserve changes in the current <see langword="DataSet" />; otherwise, <see langword="false" />.</param>
|
|
/// <param name="missingSchemaAction">One of the <see cref="T:System.Data.MissingSchemaAction" /> values.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="dataSet" /> is <see langword="null" />.</exception>
|
|
// Token: 0x0600039C RID: 924 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039C")]
|
|
[Address(RVA = "0x5319F0", Offset = "0x5309F0", VA = "0x1805319F0")]
|
|
public void Merge(DataSet dataSet, bool preserveChanges, MissingSchemaAction missingSchemaAction)
|
|
{
|
|
}
|
|
|
|
/// <summary>Raises the <see cref="M:System.Data.DataSet.OnPropertyChanging(System.ComponentModel.PropertyChangedEventArgs)" /> event.</summary>
|
|
/// <param name="pcevent">A <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> that contains the event data.</param>
|
|
// Token: 0x0600039D RID: 925 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039D")]
|
|
[Address(RVA = "0x531FF0", Offset = "0x530FF0", VA = "0x180531FF0", Slot = "31")]
|
|
protected virtual void OnPropertyChanging(PropertyChangedEventArgs pcevent)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600039E RID: 926 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039E")]
|
|
[Address(RVA = "0x531F70", Offset = "0x530F70", VA = "0x180531F70")]
|
|
internal void OnMergeFailed(MergeFailedEventArgs mfevent)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600039F RID: 927 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600039F")]
|
|
[Address(RVA = "0x532060", Offset = "0x531060", VA = "0x180532060")]
|
|
internal void RaiseMergeFailed(DataTable table, string conflict, MissingSchemaAction missingSchemaAction)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A0 RID: 928 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A0")]
|
|
[Address(RVA = "0x531EC0", Offset = "0x530EC0", VA = "0x180531EC0")]
|
|
internal void OnDataRowCreated(DataRow row)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A1 RID: 929 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A1")]
|
|
[Address(RVA = "0x531EA0", Offset = "0x530EA0", VA = "0x180531EA0")]
|
|
internal void OnClearFunctionCalled(DataTable table)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A2 RID: 930 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A2")]
|
|
[Address(RVA = "0x531EE0", Offset = "0x530EE0", VA = "0x180531EE0")]
|
|
private void OnInitialized()
|
|
{
|
|
}
|
|
|
|
/// <summary>Occurs when a <see cref="T:System.Data.DataTable" /> is removed from a <see cref="T:System.Data.DataSet" />.</summary>
|
|
/// <param name="table">The <see cref="T:System.Data.DataTable" /> being removed.</param>
|
|
// Token: 0x060003A3 RID: 931 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A3")]
|
|
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "32")]
|
|
protected internal virtual void OnRemoveTable(DataTable table)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A4 RID: 932 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A4")]
|
|
[Address(RVA = "0x532030", Offset = "0x531030", VA = "0x180532030")]
|
|
internal void OnRemovedTable(DataTable table)
|
|
{
|
|
}
|
|
|
|
/// <summary>Occurs when a <see cref="T:System.Data.DataRelation" /> object is removed from a <see cref="T:System.Data.DataTable" />.</summary>
|
|
/// <param name="relation">The <see cref="T:System.Data.DataRelation" /> being removed.</param>
|
|
// Token: 0x060003A5 RID: 933 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A5")]
|
|
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "33")]
|
|
protected virtual void OnRemoveRelation(DataRelation relation)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A6 RID: 934 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A6")]
|
|
[Address(RVA = "0x532010", Offset = "0x531010", VA = "0x180532010")]
|
|
internal void OnRemoveRelationHack(DataRelation relation)
|
|
{
|
|
}
|
|
|
|
/// <summary>Sends a notification that the specified <see cref="T:System.Data.DataSet" /> property is about to change.</summary>
|
|
/// <param name="name">The name of the property that is about to change.</param>
|
|
// Token: 0x060003A7 RID: 935 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003A7")]
|
|
[Address(RVA = "0x532150", Offset = "0x531150", VA = "0x180532150")]
|
|
protected internal void RaisePropertyChanging(string name)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003A8 RID: 936 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003A8")]
|
|
[Address(RVA = "0x537C60", Offset = "0x536C60", VA = "0x180537C60")]
|
|
internal DataTable[] TopLevelTables()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x060003A9 RID: 937 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003A9")]
|
|
[Address(RVA = "0x537A70", Offset = "0x536A70", VA = "0x180537A70")]
|
|
internal DataTable[] TopLevelTables(bool forSchema)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Clears all tables and removes all relations, foreign constraints, and tables from the <see cref="T:System.Data.DataSet" />. Subclasses should override <see cref="M:System.Data.DataSet.Reset" /> to restore a <see cref="T:System.Data.DataSet" /> to its original state.</summary>
|
|
// Token: 0x060003AA RID: 938 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003AA")]
|
|
[Address(RVA = "0x535DF0", Offset = "0x534DF0", VA = "0x180535DF0", Slot = "34")]
|
|
public virtual void Reset()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060003AB RID: 939 RVA: 0x00002D8C File Offset: 0x00000F8C
|
|
[Token(Token = "0x60003AB")]
|
|
[Address(RVA = "0x537C70", Offset = "0x536C70", VA = "0x180537C70")]
|
|
internal bool ValidateCaseConstraint()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060003AC RID: 940 RVA: 0x00002DA4 File Offset: 0x00000FA4
|
|
[Token(Token = "0x60003AC")]
|
|
[Address(RVA = "0x537FE0", Offset = "0x536FE0", VA = "0x180537FE0")]
|
|
internal bool ValidateLocaleConstraint()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060003AD RID: 941 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003AD")]
|
|
[Address(RVA = "0x530E90", Offset = "0x52FE90", VA = "0x180530E90")]
|
|
internal DataTable FindTable(DataTable baseTable, PropertyDescriptor[] props, int propStart)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Ignores attributes and returns an empty DataSet.</summary>
|
|
/// <param name="reader">The specified XML reader.</param>
|
|
// Token: 0x060003AE RID: 942 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003AE")]
|
|
[Address(RVA = "0x533DD0", Offset = "0x532DD0", VA = "0x180533DD0", Slot = "35")]
|
|
protected virtual void ReadXmlSerializable(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" /> for the DataSet.</summary>
|
|
/// <param name="schemaSet">The specified schema set.</param>
|
|
/// <returns>A copy of <see cref="T:System.Xml.Schema.XmlSchemaSet" />.</returns>
|
|
// Token: 0x060003AF RID: 943 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003AF")]
|
|
[Address(RVA = "0x531000", Offset = "0x530000", VA = "0x180531000")]
|
|
public static XmlSchemaComplexType GetDataSetSchema(XmlSchemaSet schemaSet)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</summary>
|
|
/// <returns>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.GetSchema" />.</returns>
|
|
// Token: 0x060003B0 RID: 944 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60003B0")]
|
|
[Address(RVA = "0x537740", Offset = "0x536740", VA = "0x180537740", Slot = "18")]
|
|
XmlSchema IXmlSerializable.GetSchema()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader)" />.</summary>
|
|
/// <param name="reader">A <see cref="T:System.Xml.XmlReader" />.</param>
|
|
// Token: 0x060003B1 RID: 945 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003B1")]
|
|
[Address(RVA = "0x5378D0", Offset = "0x5368D0", VA = "0x1805378D0", Slot = "19")]
|
|
void IXmlSerializable.ReadXml(XmlReader reader)
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter)" />.</summary>
|
|
/// <param name="writer">A <see cref="T:System.Xml.XmlWriter" />.</param>
|
|
// Token: 0x060003B2 RID: 946 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x60003B2")]
|
|
[Address(RVA = "0x537A20", Offset = "0x536A20", VA = "0x180537A20", Slot = "20")]
|
|
void IXmlSerializable.WriteXml(XmlWriter writer)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000097 RID: 151
|
|
// (get) Token: 0x060003B3 RID: 947 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060003B4 RID: 948 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x17000097")]
|
|
internal string MainTableName
|
|
{
|
|
[Token(Token = "0x60003B3")]
|
|
[Address(RVA = "0x493640", Offset = "0x492640", VA = "0x180493640")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60003B4")]
|
|
[Address(RVA = "0x476170", Offset = "0x475170", VA = "0x180476170")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000098 RID: 152
|
|
// (get) Token: 0x060003B5 RID: 949 RVA: 0x00002DBC File Offset: 0x00000FBC
|
|
[Token(Token = "0x17000098")]
|
|
internal int ObjectID
|
|
{
|
|
[Token(Token = "0x60003B5")]
|
|
[Address(RVA = "0x4F3F50", Offset = "0x4F2F50", VA = "0x1804F3F50")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// Token: 0x040000B6 RID: 182
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x40000B6")]
|
|
private DataViewManager _defaultViewManager;
|
|
|
|
// Token: 0x040000B7 RID: 183
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x40000B7")]
|
|
private readonly DataTableCollection _tableCollection;
|
|
|
|
// Token: 0x040000B8 RID: 184
|
|
[FieldOffset(Offset = "0x30")]
|
|
[Token(Token = "0x40000B8")]
|
|
private readonly DataRelationCollection _relationCollection;
|
|
|
|
// Token: 0x040000B9 RID: 185
|
|
[FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x40000B9")]
|
|
internal PropertyCollection _extendedProperties;
|
|
|
|
// Token: 0x040000BA RID: 186
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x40000BA")]
|
|
private string _dataSetName;
|
|
|
|
// Token: 0x040000BB RID: 187
|
|
[FieldOffset(Offset = "0x48")]
|
|
[Token(Token = "0x40000BB")]
|
|
private string _datasetPrefix;
|
|
|
|
// Token: 0x040000BC RID: 188
|
|
[FieldOffset(Offset = "0x50")]
|
|
[Token(Token = "0x40000BC")]
|
|
internal string _namespaceURI;
|
|
|
|
// Token: 0x040000BD RID: 189
|
|
[FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x40000BD")]
|
|
private bool _enforceConstraints;
|
|
|
|
// Token: 0x040000BE RID: 190
|
|
[FieldOffset(Offset = "0x59")]
|
|
[Token(Token = "0x40000BE")]
|
|
private bool _caseSensitive;
|
|
|
|
// Token: 0x040000BF RID: 191
|
|
[FieldOffset(Offset = "0x60")]
|
|
[Token(Token = "0x40000BF")]
|
|
private CultureInfo _culture;
|
|
|
|
// Token: 0x040000C0 RID: 192
|
|
[FieldOffset(Offset = "0x68")]
|
|
[Token(Token = "0x40000C0")]
|
|
private bool _cultureUserSet;
|
|
|
|
// Token: 0x040000C1 RID: 193
|
|
[FieldOffset(Offset = "0x69")]
|
|
[Token(Token = "0x40000C1")]
|
|
internal bool _fInReadXml;
|
|
|
|
// Token: 0x040000C2 RID: 194
|
|
[FieldOffset(Offset = "0x6A")]
|
|
[Token(Token = "0x40000C2")]
|
|
internal bool _fInLoadDiffgram;
|
|
|
|
// Token: 0x040000C3 RID: 195
|
|
[FieldOffset(Offset = "0x6B")]
|
|
[Token(Token = "0x40000C3")]
|
|
internal bool _fTopLevelTable;
|
|
|
|
// Token: 0x040000C4 RID: 196
|
|
[FieldOffset(Offset = "0x6C")]
|
|
[Token(Token = "0x40000C4")]
|
|
internal bool _fInitInProgress;
|
|
|
|
// Token: 0x040000C5 RID: 197
|
|
[FieldOffset(Offset = "0x6D")]
|
|
[Token(Token = "0x40000C5")]
|
|
internal bool _fEnableCascading;
|
|
|
|
// Token: 0x040000C6 RID: 198
|
|
[FieldOffset(Offset = "0x6E")]
|
|
[Token(Token = "0x40000C6")]
|
|
internal bool _fIsSchemaLoading;
|
|
|
|
// Token: 0x040000C7 RID: 199
|
|
[FieldOffset(Offset = "0x70")]
|
|
[Token(Token = "0x40000C7")]
|
|
internal string _mainTableName;
|
|
|
|
// Token: 0x040000C8 RID: 200
|
|
[FieldOffset(Offset = "0x78")]
|
|
[Token(Token = "0x40000C8")]
|
|
private SerializationFormat _remotingFormat;
|
|
|
|
// Token: 0x040000C9 RID: 201
|
|
[FieldOffset(Offset = "0x80")]
|
|
[Token(Token = "0x40000C9")]
|
|
private object _defaultViewManagerLock;
|
|
|
|
// Token: 0x040000CA RID: 202
|
|
[Token(Token = "0x40000CA")]
|
|
private static int s_objectTypeCount;
|
|
|
|
// Token: 0x040000CB RID: 203
|
|
[FieldOffset(Offset = "0x88")]
|
|
[Token(Token = "0x40000CB")]
|
|
private readonly int _objectID;
|
|
|
|
// Token: 0x040000CC RID: 204
|
|
[Token(Token = "0x40000CC")]
|
|
private static XmlSchemaComplexType s_schemaTypeForWSDL;
|
|
|
|
// Token: 0x040000CD RID: 205
|
|
[FieldOffset(Offset = "0x8C")]
|
|
[Token(Token = "0x40000CD")]
|
|
internal bool _useDataSetSchemaOnly;
|
|
|
|
// Token: 0x040000CE RID: 206
|
|
[FieldOffset(Offset = "0x8D")]
|
|
[Token(Token = "0x40000CE")]
|
|
internal bool _udtIsWrapped;
|
|
|
|
// Token: 0x040000CF RID: 207
|
|
[FieldOffset(Offset = "0x90")]
|
|
[Token(Token = "0x40000CF")]
|
|
[CompilerGenerated]
|
|
private PropertyChangedEventHandler PropertyChanging;
|
|
|
|
// Token: 0x040000D0 RID: 208
|
|
[FieldOffset(Offset = "0x98")]
|
|
[Token(Token = "0x40000D0")]
|
|
[CompilerGenerated]
|
|
private MergeFailedEventHandler MergeFailed;
|
|
|
|
// Token: 0x040000D1 RID: 209
|
|
[FieldOffset(Offset = "0xA0")]
|
|
[Token(Token = "0x40000D1")]
|
|
[CompilerGenerated]
|
|
private DataRowCreatedEventHandler DataRowCreated;
|
|
|
|
// Token: 0x040000D2 RID: 210
|
|
[FieldOffset(Offset = "0xA8")]
|
|
[Token(Token = "0x40000D2")]
|
|
[CompilerGenerated]
|
|
private DataSetClearEventhandler ClearFunctionCalled;
|
|
}
|
|
}
|