main
1<?xml version="1.0" encoding="utf-8"?>
2<doc>
3 <assembly>
4 <name>System.Data.SqlServerCe</name>
5 </assembly>
6 <members>
7 <member name="N:System.Data.SqlServerCe">
8 <summary>The <see cref="N:System.Data.SqlServerCe"></see> namespace is the managed data provider for SQL Server Compact 3.5. This namespace is a collection of classes that provide access to SQL Server Compact 3.5 databases. By using <see cref="N:System.Data.SqlServerCe"></see>, you can create, manage, and synchronize SQL Server Compact 3.5 databases from a smart device or a computer. </summary>
9 </member>
10 <member name="T:System.Data.SqlServerCe.AddOption">
11 <summary>Determines whether the subscription will be added to an existing database or whether a new database will be created when the subscription is added.</summary>
12 </member>
13 <member name="F:System.Data.SqlServerCe.AddOption.CreateDatabase">
14 <summary>Causes a new SQL Server Compact 3.5 database to be created when the subscription is created.</summary>
15 </member>
16 <member name="F:System.Data.SqlServerCe.AddOption.ExistingDatabase">
17 <summary>Adds the subscription to the existing database that defined in the connection string.</summary>
18 </member>
19 <member name="T:System.Data.SqlServerCe.CommitMode">
20 <summary>When passed to the <see cref="M:System.Data.SqlServerCe.SqlCeTransaction.Commit"></see> function, the CommitMode specifies when the commit occurs. </summary>
21 </member>
22 <member name="F:System.Data.SqlServerCe.CommitMode.Deferred">
23 <summary>Changes are committed to disk after user-specified flush interval. The default flush interval is 10 seconds but can be modified within the <see cref="P:System.Data.SqlServerCe.SqlCeConnection.ConnectionString"></see>. </summary>
24 </member>
25 <member name="F:System.Data.SqlServerCe.CommitMode.Immediate">
26 <summary>Changes are committed immediately.</summary>
27 </member>
28 <member name="T:System.Data.SqlServerCe.DbInsertOptions">
29 <summary>Specifies the options to use when using the <see cref="System.Data.SqlServerCe.SqlCeResultSet.Insert"></see> method. </summary>
30 </member>
31 <member name="F:System.Data.SqlServerCe.DbInsertOptions.KeepCurrentPosition">
32 <summary>Maintains the current position after inserting a new row.</summary>
33 </member>
34 <member name="F:System.Data.SqlServerCe.DbInsertOptions.PositionOnInsertedRow">
35 <summary>Positions the cursor on the newly-inserted row.</summary>
36 </member>
37 <member name="T:System.Data.SqlServerCe.DbRangeOptions">
38 <summary>Specifies the options used by the <see cref="M:System.Data.SqlServerCe.SqlCeCommand.SetRange(System.Data.SqlServerCe.DbRangeOptions,System.Object[],System.Object[])"></see> method when specifying the index range over which to seek.</summary>
39 </member>
40 <member name="F:System.Data.SqlServerCe.DbRangeOptions.Default">
41 <summary>Equivalent to setting both the <see cref="F:System.Data.SqlServerCe.DbRangeOptions.InclusiveStart"></see> and <see cref="F:System.Data.SqlServerCe.DbRangeOptions.InclusiveEnd"></see> flags.</summary>
42 </member>
43 <member name="F:System.Data.SqlServerCe.DbRangeOptions.ExcludeNulls">
44 <summary>Excludes null values from the range.</summary>
45 </member>
46 <member name="F:System.Data.SqlServerCe.DbRangeOptions.ExclusiveEnd">
47 <summary>Excludes the endData value from the range.</summary>
48 </member>
49 <member name="F:System.Data.SqlServerCe.DbRangeOptions.ExclusiveStart">
50 <summary>Excludes the startData value from the range.</summary>
51 </member>
52 <member name="F:System.Data.SqlServerCe.DbRangeOptions.InclusiveEnd">
53 <summary>Includes the endData value in the range.</summary>
54 </member>
55 <member name="F:System.Data.SqlServerCe.DbRangeOptions.InclusiveStart">
56 <summary>Includes the startData value in the range.</summary>
57 </member>
58 <member name="F:System.Data.SqlServerCe.DbRangeOptions.Match">
59 <summary>Specifies a range in which index values match the value of startData. When using the Match option, endData must be set to null.</summary>
60 </member>
61 <member name="F:System.Data.SqlServerCe.DbRangeOptions.Prefix">
62 <summary>Specifies a range in which index values begin with the value of startData. When using the Prefix option, endData must be set to null.</summary>
63 </member>
64 <member name="T:System.Data.SqlServerCe.DbSeekOptions">
65 <summary>Options that specify how the <see cref="M:System.Data.SqlServerCe.SqlCeDataReader.Seek(System.Data.SqlServerCe.DbSeekOptions,System.Object[])"></see> method will seek on an index.</summary>
66 </member>
67 <member name="F:System.Data.SqlServerCe.DbSeekOptions.After">
68 <summary>Advances to the first row with values (in index order) after the seek value.</summary>
69 </member>
70 <member name="F:System.Data.SqlServerCe.DbSeekOptions.AfterEqual">
71 <summary>Advances to the last matching row on the index. If there are no matching rows, advances to the first row with values after the seek value, in index order.</summary>
72 </member>
73 <member name="F:System.Data.SqlServerCe.DbSeekOptions.Before">
74 <summary>Advances to the last row with values (in index order) before the seek value.</summary>
75 </member>
76 <member name="F:System.Data.SqlServerCe.DbSeekOptions.BeforeEqual">
77 <summary>Advances to the first matching row on the index. If there are no matching rows, advances to the last row with values before the seek value, in index order.</summary>
78 </member>
79 <member name="F:System.Data.SqlServerCe.DbSeekOptions.FirstEqual">
80 <summary>Advances to the first matching row (in index order) on the index.</summary>
81 </member>
82 <member name="F:System.Data.SqlServerCe.DbSeekOptions.LastEqual">
83 <summary>Advances to the last matching row (in index order) on the index. </summary>
84 </member>
85 <member name="T:System.Data.SqlServerCe.DropOption">
86 <summary>Specifies whether to leave or delete the database when dropping a subscription using the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.DropSubscription(System.Data.SqlServerCe.DropOption)"></see> method.</summary>
87 </member>
88 <member name="F:System.Data.SqlServerCe.DropOption.DropDatabase">
89 <summary>Deletes the SQL Server Compact 3.5 database when you drop a subscription using the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.DropSubscription(System.Data.SqlServerCe.DropOption)"></see> method.</summary>
90 </member>
91 <member name="F:System.Data.SqlServerCe.DropOption.LeaveDatabase">
92 <summary>Deletes the replication system tables and all replication system columns in the user tables when you drop a subscription using the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.DropSubscription(System.Data.SqlServerCe.DropOption)"></see> method, but does not delete the SQL Server Compact 3.5 database.</summary>
93 </member>
94 <member name="F:System.Data.SqlServerCe.DropOption.UnregisterSubscription">
95 <summary>Unregisters the SQL Server Compact 3.5 database from a subscription. </summary>
96 </member>
97 <member name="T:System.Data.SqlServerCe.ExchangeType">
98 <summary>Specifies whether data is merged up to the Publisher only, or merge in both directions between the Publisher and the Subscriber.</summary>
99 </member>
100 <member name="F:System.Data.SqlServerCe.ExchangeType.BiDirectional">
101 <summary>Merges all changes between the Publisher and Subscriber. This is the default setting.</summary>
102 </member>
103 <member name="F:System.Data.SqlServerCe.ExchangeType.None">
104 <summary>No <see cref="ExchangeType"></see> options are specified.</summary>
105 </member>
106 <member name="F:System.Data.SqlServerCe.ExchangeType.Upload">
107 <summary>Merges only the Subscriber changes with the Publisher.</summary>
108 </member>
109 <member name="T:System.Data.SqlServerCe.NetworkType">
110 <summary>Specifies the network protocol to use when setting the <see cref="P:System.Data.SqlServerCe.SqlCeReplication.DistributorNetwork"></see> or <see cref="P:System.Data.SqlServerCe.SqlCeReplication.PublisherNetwork"></see> properties of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object.</summary>
111 </member>
112 <member name="F:System.Data.SqlServerCe.NetworkType.DefaultNetwork">
113 <summary>Use the currently-configured Net-Library when setting the <see cref="P:System.Data.SqlServerCe.SqlCeReplication.DistributorNetwork"></see> or <see cref="P:System.Data.SqlServerCe.SqlCeReplication.PublisherNetwork"></see> properties of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object.</summary>
114 </member>
115 <member name="F:System.Data.SqlServerCe.NetworkType.MultiProtocol">
116 <summary>Use the Multiprotocol Net-Library when setting the <see cref="P:System.Data.SqlServerCe.SqlCeReplication.DistributorNetwork"></see> or <see cref="P:System.Data.SqlServerCe.SqlCeReplication.PublisherNetwork"></see> properties of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object.</summary>
117 </member>
118 <member name="F:System.Data.SqlServerCe.NetworkType.TcpIpSockets">
119 <summary>Use the TCP/IP Sockets Net-Library when setting the <see cref="P:System.Data.SqlServerCe.SqlCeReplication.DistributorNetwork"></see> or <see cref="P:System.Data.SqlServerCe.SqlCeReplication.PublisherNetwork"></see> properties of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object.</summary>
120 </member>
121 <member name="T:System.Data.SqlServerCe.OnStartTableDownload">
122 <summary>A user-defined delegate to the event that fires at the start of downloading table changes from the server.</summary>
123 </member>
124 <member name="T:System.Data.SqlServerCe.OnStartTableUpload">
125 <summary>A user-defined delegate to the event that fires at the start of uploading table changes to the server.</summary>
126 </member>
127 <member name="T:System.Data.SqlServerCe.OnSynchronization">
128 <summary>A user-defined delegate that consumes the ongoing synchronization events reported during the reconciler work.</summary>
129 </member>
130 <member name="T:System.Data.SqlServerCe.RdaBatchOption">
131 <summary>Specifies whether or not the rows associated with the <see cref="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Push(System.String,System.String)"></see> should be batched together in a single transaction.</summary>
132 </member>
133 <member name="F:System.Data.SqlServerCe.RdaBatchOption.BatchingOff">
134 <summary>Indicates that SQL Server Compact 3.5 does not batch rows pushed to SQL Server. The server processes each row separately. This is the default setting. </summary>
135 </member>
136 <member name="F:System.Data.SqlServerCe.RdaBatchOption.BatchingOn">
137 <summary>Indicates that SQL Server Compact 3.5 batches the rows pushed to SQL Server into a single transaction.</summary>
138 </member>
139 <member name="T:System.Data.SqlServerCe.RdaTrackOption">
140 <summary>Specifies whether or not the table being pulled to the device is tracked.</summary>
141 </member>
142 <member name="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOff">
143 <summary>Indicates that SQL Server Compact 3.5 does not track changes to the pulled table. No PRIMARY KEY constraints are created locally.</summary>
144 </member>
145 <member name="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOffWithIndexes">
146 <summary>Indicates that SQL Server Compact 3.5 does not track changes to the pulled table. Indexes and PRIMARY KEY constraints that existed on the SQL Server table specified in sqlSelectString are created on the local table.</summary>
147 </member>
148 <member name="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOn">
149 <summary>Indicates that SQL Server Compact 3.5 tracks all changes to the pulled table. PRIMARY KEY constraints related to the value specified for sqlSelectString are created on the local table. This is the default setting. </summary>
150 </member>
151 <member name="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOnWithIndexes">
152 <summary>Indicates that SQL Server Compact 3.5 tracks all changes to the pulled table. Indexes and PRIMARY KEY constraints that existed on the SQL Server table specified in sqlSelectString are created on the local table.</summary>
153 </member>
154 <member name="T:System.Data.SqlServerCe.RepairOption">
155 <summary>When passed to the <see cref="M:System.Data.SqlServerCe.SqlCeEngine.Repair(System.String,System.Data.SqlServerCe.RepairOption)"></see> method, <see cref="T:System.Data.SqlServerCe.RepairOption"></see> specifies the type of database repair to perform.</summary>
156 </member>
157 <member name="F:System.Data.SqlServerCe.RepairOption.DeleteCorruptedRows">
158 <summary>Deletes all corrupted rows without attempting to fix them.</summary>
159 </member>
160 <member name="F:System.Data.SqlServerCe.RepairOption.RecoverCorruptedRows">
161 <summary>Attempts to fix all corrupted rows rather than deleting them.</summary>
162 </member>
163 <member name="T:System.Data.SqlServerCe.ResultSetEnumerator">
164 <summary>An enumerator that can be used to iterate through a collection of records in a ResultSet object. The <see cref="T:System.Data.SqlServerCe.ResultSetEnumerator"></see> is not designed to be used directly from within your code. You will get more functionality by working directly with the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> object.</summary>
165 </member>
166 <member name="M:System.Data.SqlServerCe.ResultSetEnumerator.#ctor(System.Data.SqlServerCe.SqlCeResultSet)">
167 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.ResultSetEnumerator"></see> class. </summary>
168 <param name="resultSet">A <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> object containing the records to be enumerated.</param>
169 </member>
170 <member name="M:System.Data.SqlServerCe.ResultSetEnumerator.Reset">
171 <summary>Positions the cursor before the first record in the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</summary>
172 </member>
173 <member name="T:System.Data.SqlServerCe.ResultSetOptions">
174 <summary>Sets options for the <see cref="M:System.Data.SqlServerCe.ResultSetEnumerator.#ctor(System.Data.SqlServerCe.SqlCeResultSet)"></see>.</summary>
175 </member>
176 <member name="F:System.Data.SqlServerCe.ResultSetOptions.Insensitive">
177 <summary>The ResultSet does not detect changes made to the data source. </summary>
178 </member>
179 <member name="F:System.Data.SqlServerCe.ResultSetOptions.None">
180 <summary>No ResultSet options are specified.</summary>
181 </member>
182 <member name="F:System.Data.SqlServerCe.ResultSetOptions.Scrollable">
183 <summary>The ResultSet can be scrolled both forward and backward.</summary>
184 </member>
185 <member name="F:System.Data.SqlServerCe.ResultSetOptions.Sensitive">
186 <summary>The ResultSet detects changes made to the data source.</summary>
187 </member>
188 <member name="F:System.Data.SqlServerCe.ResultSetOptions.Updatable">
189 <summary>The ResultSet allows updates.</summary>
190 </member>
191 <member name="T:System.Data.SqlServerCe.ResultSetSensitivity">
192 <summary>Sets the sensitivity of the <see cref="M:System.Data.SqlServerCe.ResultSetEnumerator.#ctor(System.Data.SqlServerCe.SqlCeResultSet)"></see>.</summary>
193 </member>
194 <member name="F:System.Data.SqlServerCe.ResultSetSensitivity.Asensitive">
195 <summary>No sensitivity is set for the ResultSet.</summary>
196 </member>
197 <member name="F:System.Data.SqlServerCe.ResultSetSensitivity.Insensitive">
198 <summary>The ResultSet does not detect changes made to the data source.</summary>
199 </member>
200 <member name="F:System.Data.SqlServerCe.ResultSetSensitivity.Sensitive">
201 <summary>The ResultSet detects changes made to the data source.</summary>
202 </member>
203 <member name="T:System.Data.SqlServerCe.ResultSetView">
204 <summary>Implements data binding interfaces and provides a bridge between user interface controls and the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</summary>
205 </member>
206 <member name="E:System.Data.SqlServerCe.ResultSetView.ListChanged">
207 <summary>This event is raised when items are added or removed from the <see cref="T:System.Data.SqlServerCe.ResultSetView"></see>.</summary>
208 </member>
209 <member name="T:System.Data.SqlServerCe.SecurityType">
210 <summary>Specifies the mode of security to use when connecting to the Publisher or Distributor during Replication. </summary>
211 </member>
212 <member name="F:System.Data.SqlServerCe.SecurityType.DBAuthentication">
213 <summary>Use SQL Server Authentication when connecting to the Publisher or Distributor during Replication. This is the default.</summary>
214 </member>
215 <member name="F:System.Data.SqlServerCe.SecurityType.NTAuthentication">
216 <summary>Use Integrated Windows Authentication when connecting to the Publisher or Distributor during Replication.</summary>
217 </member>
218 <member name="T:System.Data.SqlServerCe.SnapshotTransferType">
219 <summary>Controls how snapshot files are transferred from the Distributor to the computer running IIS.</summary>
220 </member>
221 <member name="F:System.Data.SqlServerCe.SnapshotTransferType.FTP">
222 <summary>The snapshot file will be transferred via the FTP protocol.</summary>
223 </member>
224 <member name="F:System.Data.SqlServerCe.SnapshotTransferType.UNC">
225 <summary>The snapshot file will be transferred from the Universal Naming Convention (UNC) share on the server. This is the default.</summary>
226 </member>
227 <member name="T:System.Data.SqlServerCe.SqlCeCommand">
228 <summary>Represents an SQL statement to execute against a data source.</summary>
229 </member>
230 <member name="M:System.Data.SqlServerCe.SqlCeCommand.#ctor">
231 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> class.</summary>
232 </member>
233 <member name="M:System.Data.SqlServerCe.SqlCeCommand.#ctor(System.String)">
234 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> class with the text of the query.</summary>
235 <param name="commandText">The text of the query. </param>
236 </member>
237 <member name="M:System.Data.SqlServerCe.SqlCeCommand.#ctor(System.String,System.Data.SqlServerCe.SqlCeConnection)">
238 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> class with the text of the query and a <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see>.</summary>
239 <param name="commandText">The text of the query. </param>
240 <param name="connection">A <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> that represents the connection to a data source. </param>
241 </member>
242 <member name="M:System.Data.SqlServerCe.SqlCeCommand.#ctor(System.String,System.Data.SqlServerCe.SqlCeConnection,System.Data.SqlServerCe.SqlCeTransaction)">
243 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> class with the text of the query, a <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see>, and the <see cref="T:System.Data.SqlServerCe.SqlCeTransaction"></see>.</summary>
244 <param name="commandText">The text of the query. </param>
245 <param name="transaction">The transaction in which the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> executes. </param>
246 <param name="connection">A <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> that represents the connection to a data source. </param>
247 </member>
248 <member name="M:System.Data.SqlServerCe.SqlCeCommand.Cancel">
249 <summary>Attempts to cancel the execution of a <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see>.</summary>
250 </member>
251 <member name="M:System.Data.SqlServerCe.SqlCeCommand.CreateParameter">
252 <summary>Creates a new instance of a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</summary>
253 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
254 </member>
255 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteNonQuery">
256 <summary>Executes an SQL statement against the <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> and returns the number of rows affected.</summary>
257 <returns>The number of rows affected.</returns>
258 </member>
259 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteReader">
260 <summary>Sends the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> to the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see>.</summary>
261 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> object.</returns>
262 </member>
263 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteReader(System.Data.CommandBehavior)">
264 <summary>Sends the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> to the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> by using one of the <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
265 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> object.</returns>
266 <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values. </param>
267 </member>
268 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteResultSet(System.Data.SqlServerCe.ResultSetOptions)">
269 <summary>Sends the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> to the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> by using the <see cref="T:System.Data.SqlServerCe.ResultSetOptions"></see>.</summary>
270 <param name="options">The ResultSetOptions to use when building the ResultSet.</param>
271 </member>
272 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteResultSet(System.Data.SqlServerCe.ResultSetOptions,System.Data.SqlServerCe.SqlCeResultSet)">
273 <summary>Sends the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> to the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> by using the <see cref="T:System.Data.SqlServerCe.ResultSetOptions"></see>.</summary>
274 <param name="options">The ResultSetOptions to use when building the ResultSet.</param>
275 <param name="resultSet">The ResultSet to build.</param>
276 </member>
277 <member name="M:System.Data.SqlServerCe.SqlCeCommand.ExecuteScalar">
278 <summary>Executes the query and returns the first column of the first row in the result set that is returned by the query. Extra columns or rows are ignored.</summary>
279 <returns>The first column of the first row in the result set.</returns>
280 </member>
281 <member name="M:System.Data.SqlServerCe.SqlCeCommand.Prepare">
282 <summary>Creates a prepared (or compiled) version of the command on the data source.</summary>
283 </member>
284 <member name="M:System.Data.SqlServerCe.SqlCeCommand.SetRange(System.Data.SqlServerCe.DbRangeOptions,System.Object[],System.Object[])">
285 <summary>Restricts the set of rows that will be read by the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see>.</summary>
286 <param name="startData">The starting key values for the range. </param>
287 <param name="dbRangeOptions">The options used when specifying the range. </param>
288 <param name="endData">The ending key values for the range. </param>
289 </member>
290 <member name="P:System.Data.SqlServerCe.SqlCeCommand.CommandText">
291 <summary>Gets or sets an SQL statement to execute at the data source.</summary>
292 <returns>The SQL statement to execute or the name of the base table to open. The default value is an empty string.</returns>
293 </member>
294 <member name="P:System.Data.SqlServerCe.SqlCeCommand.CommandTimeout">
295 <summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
296 <returns>Always zero (0) for SQL Server Compact 3.5.</returns>
297 </member>
298 <member name="P:System.Data.SqlServerCe.SqlCeCommand.CommandType">
299 <summary>Gets or sets a value indicating how the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> property is interpreted.</summary>
300 <returns>One of the <see cref="T:System.Data.CommandType"></see> values. The default is <see cref="F:System.Data.CommandType.Text"></see>.</returns>
301 </member>
302 <member name="P:System.Data.SqlServerCe.SqlCeCommand.Connection">
303 <summary>Gets or sets the <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> used by this instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see>.</summary>
304 <returns>The connection to a data source. The default value is null.</returns>
305 </member>
306 <member name="P:System.Data.SqlServerCe.SqlCeCommand.IndexName">
307 <summary>Specifies the index to be opened.</summary>
308 <returns>The name of the index to be opened.</returns>
309 </member>
310 <member name="P:System.Data.SqlServerCe.SqlCeCommand.Parameters">
311 <summary>Gets the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see>.</summary>
312 <returns>The parameters of the SQL statement. The default is an empty collection.</returns>
313 </member>
314 <member name="P:System.Data.SqlServerCe.SqlCeCommand.Transaction">
315 <summary>Gets or sets the transaction in which the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> executes.</summary>
316 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeTransaction"></see>. The default value is null.</returns>
317 </member>
318 <member name="P:System.Data.SqlServerCe.SqlCeCommand.UpdatedRowSource">
319 <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow"></see> when used by the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> method of the <see cref="T:System.Data.Common.DbDataAdapter"></see>. This property should not be used with the .NET Compact Framework Data Provider for SQL Server Compact 3.5.</summary>
320 <returns>One of the <see cref="T:System.Data.UpdateRowSource"></see> values. The default is Both. If the command is automatically generated, the default is None.</returns>
321 </member>
322 <member name="T:System.Data.SqlServerCe.SqlCeCommandBuilder">
323 <summary>Provides a means of automatically generating single-table commands used to reconcile changes made to a <see cref="T:System.Data.DataSet"></see> with the associated database. This class cannot be inherited.</summary>
324 </member>
325 <member name="M:System.Data.SqlServerCe.SqlCeCommandBuilder.#ctor">
326 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommandBuilder"></see> class.</summary>
327 </member>
328 <member name="M:System.Data.SqlServerCe.SqlCeCommandBuilder.#ctor(System.Data.SqlServerCe.SqlCeDataAdapter)">
329 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeCommandBuilder"></see> class with associated <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> and <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> objects.</summary>
330 <param name="adapter">The name of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>. </param>
331 </member>
332 <member name="M:System.Data.SqlServerCe.SqlCeCommandBuilder.GetDeleteCommand">
333 <summary>Gets the automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform deletions on the database when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> on the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>.</summary>
334 <returns>The automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform deletions.</returns>
335 </member>
336 <member name="M:System.Data.SqlServerCe.SqlCeCommandBuilder.GetInsertCommand">
337 <summary>Gets the automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform inserts on the database when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> on the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>.</summary>
338 <returns>The automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform inserts.</returns>
339 </member>
340 <member name="M:System.Data.SqlServerCe.SqlCeCommandBuilder.GetUpdateCommand">
341 <summary>Gets the automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform updates on the database when an application calls <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> on the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>.</summary>
342 <returns>The automatically generated <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object required to perform updates.</returns>
343 </member>
344 <member name="P:System.Data.SqlServerCe.SqlCeCommandBuilder.ConflictOption">
345 <summary>Specifies which <see cref="T:System.Data.ConflictOption"></see> is to be used by the <see cref="T:System.Data.SqlServerCe.SqlCeCommandBuilder"></see>. </summary>
346 <returns>A <see cref="T:System.Data.ConflictOption"></see> object.</returns>
347 </member>
348 <member name="P:System.Data.SqlServerCe.SqlCeCommandBuilder.DataAdapter">
349 <summary>Gets or sets a <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> object for which SQL statements are automatically generated.</summary>
350 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> object.</returns>
351 </member>
352 <member name="P:System.Data.SqlServerCe.SqlCeCommandBuilder.QuotePrefix">
353 <summary>Gets or sets the beginning character or characters to use when specifying SQL Server database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
354 <returns>The beginning character or characters to use. The default is an empty string.</returns>
355 </member>
356 <member name="P:System.Data.SqlServerCe.SqlCeCommandBuilder.QuoteSuffix">
357 <summary>Gets or sets the ending character or characters to use when specifying SQL Server database objects (for example, tables or columns) whose names contain characters, such as spaces or reserved tokens.</summary>
358 <returns>The ending character or characters to use. The default is an empty string.</returns>
359 </member>
360 <member name="T:System.Data.SqlServerCe.SqlCeConnection">
361 <summary>Represents an open connection to a data source.</summary>
362 </member>
363 <member name="M:System.Data.SqlServerCe.SqlCeConnection.#ctor">
364 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> class.</summary>
365 </member>
366 <member name="M:System.Data.SqlServerCe.SqlCeConnection.#ctor(System.String)">
367 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> class with the specified connection string.</summary>
368 <param name="connectionString">The connection used to open the database. </param>
369 </member>
370 <member name="E:System.Data.SqlServerCe.SqlCeConnection.FlushFailure">
371 <summary>Occurs when the background flush fails.</summary>
372 </member>
373 <member name="E:System.Data.SqlServerCe.SqlCeConnection.InfoMessage">
374 <summary>Occurs when the .NET Compact Framework Data Provider for SQL Server sends a warning or an informational message.</summary>
375 </member>
376 <member name="E:System.Data.SqlServerCe.SqlCeConnection.StateChange">
377 <summary>Occurs when the state of the connection changes.</summary>
378 </member>
379 <member name="M:System.Data.SqlServerCe.SqlCeConnection.BeginTransaction">
380 <summary>Begins a database transaction.</summary>
381 <returns>An object representing the new transaction.</returns>
382 </member>
383 <member name="M:System.Data.SqlServerCe.SqlCeConnection.BeginTransaction(System.Data.IsolationLevel)">
384 <summary>Begins a database transaction with the current <see cref="T:System.Data.IsolationLevel"></see> value.</summary>
385 <returns>An object representing the new transaction.</returns>
386 <param name="isolationLevel">The transaction isolation level for this connection. </param>
387 </member>
388 <member name="M:System.Data.SqlServerCe.SqlCeConnection.ChangeDatabase(System.String)">
389 <summary>Changes the current database for an open <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see>.</summary>
390 <returns>True if the database was changed successfully; otherwise, false.</returns>
391 <param name="value">The database name. </param>
392 </member>
393 <member name="M:System.Data.SqlServerCe.SqlCeConnection.Close">
394 <summary>Closes the connection to the data source. This is the preferred method of closing any open connection.</summary>
395 </member>
396 <member name="M:System.Data.SqlServerCe.SqlCeConnection.CreateCommand">
397 <summary>Creates and returns a <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object associated with the <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see>.</summary>
398 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> object.</returns>
399 </member>
400 <member name="M:System.Data.SqlServerCe.SqlCeConnection.Dispose">
401 <summary>Releases all SQL Server Compact 3.5 <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> resources. </summary>
402 </member>
403 <member name="M:System.Data.SqlServerCe.SqlCeConnection.EnlistTransaction(System.Transactions.Transaction)">
404 <summary>Enlist in the specified System.Transactions.Transaction.</summary>
405 <param name="SysTrans">The transaction in which you want to enlist</param>
406 </member>
407 <member name="M:System.Data.SqlServerCe.SqlCeConnection.GetDatabaseInfo">
408 <summary>Returns a set of Key Value pairs with information about locale and encryption mode of the connected database.</summary>
409 <returns>Sorted list with the name value pairs of locale and encryption mode.</returns>
410 </member>
411 <member name="M:System.Data.SqlServerCe.SqlCeConnection.Open">
412 <summary>Opens a database connection with the property settings specified by the <see cref="P:System.Data.SqlServerCe.SqlCeConnection.ConnectionString"></see>.</summary>
413 </member>
414 <member name="P:System.Data.SqlServerCe.SqlCeConnection.ConnectionString">
415 <summary>Gets or sets the string used to open a database.</summary>
416 <returns>The .NET Compact Framework Data Provider for SQL Server Compact 3.5 connection string that includes the data source name and other parameters needed to establish the initial connection. The default value is an empty string.</returns>
417 </member>
418 <member name="P:System.Data.SqlServerCe.SqlCeConnection.ConnectionTimeout">
419 <summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.</summary>
420 <returns>The time (in seconds) to wait for a connection to open. The value is always 0 in SQL Server Compact 3.5.</returns>
421 </member>
422 <member name="P:System.Data.SqlServerCe.SqlCeConnection.Database">
423 <summary>Gets the name of the current database or the database to be used when a connection is open.</summary>
424 <returns>The name of the current database or the name of the database to be used when a connection is open. The default value is an empty string. For SQL Server Compact 3.5, the value for this property should be the full path of the database file; for example, "\myApp\myDB.sdf".</returns>
425 </member>
426 <member name="P:System.Data.SqlServerCe.SqlCeConnection.DatabaseIdentifier">
427 <summary>Gets the unique identifier of the current database while synchronizing.</summary>
428 <returns>The unique identifier of the current database. </returns>
429 </member>
430 <member name="P:System.Data.SqlServerCe.SqlCeConnection.DataSource">
431 <summary>Gets the file name of the data source. </summary>
432 <returns>The location and file name of the data source. The default value is an empty string.</returns>
433 </member>
434 <member name="P:System.Data.SqlServerCe.SqlCeConnection.ServerVersion">
435 <summary>Returns the database version number as a string.</summary>
436 <returns>A string of the version of SQL Server Compact 3.5.</returns>
437 </member>
438 <member name="P:System.Data.SqlServerCe.SqlCeConnection.State">
439 <summary>Gets the current state of the connection.</summary>
440 <returns>A bitwise combination of the <see cref="T:System.Data.ConnectionState"></see> values. The default is Closed.</returns>
441 </member>
442 <member name="T:System.Data.SqlServerCe.SqlCeDataAdapter">
443 <summary>Represents a set of data commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet"></see> and update the data source.</summary>
444 </member>
445 <member name="M:System.Data.SqlServerCe.SqlCeDataAdapter.#ctor">
446 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> class.</summary>
447 </member>
448 <member name="M:System.Data.SqlServerCe.SqlCeDataAdapter.#ctor(System.Data.SqlServerCe.SqlCeCommand)">
449 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> class with the specified <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> as the <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> property.</summary>
450 <param name="selectCommand">A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> that is a SELECT statement. This <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> is set as the <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>. </param>
451 </member>
452 <member name="M:System.Data.SqlServerCe.SqlCeDataAdapter.#ctor(System.String,System.Data.SqlServerCe.SqlCeConnection)">
453 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> class with a <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> and a <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> object.</summary>
454 <param name="selectCommandText">A <see cref="T:System.String"></see> that is an SQL SELECT statement to be used as the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> of the <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>. </param>
455 <param name="selectConnection">A <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> that represents the connection. </param>
456 </member>
457 <member name="M:System.Data.SqlServerCe.SqlCeDataAdapter.#ctor(System.String,System.String)">
458 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see> class with a <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> and a connection string.</summary>
459 <param name="selectConne ctionString">The connection string. </param>
460 <param name="selectCommandText">A <see cref="T:System.String"></see> that is an SQL SELECT statement to be used as the <see cref="P:System.Data.SqlServerCe.SqlCeCommand.CommandText"></see> of the <see cref="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>. </param>
461 </member>
462 <member name="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdated">
463 <summary>Occurs during a call to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> after an update command is executed against the data source. The attempt to update is made and then this event fires.</summary>
464 </member>
465 <member name="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdating">
466 <summary>Occurs during a call to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> before an update command is executed against the data source. The attempt to update is made, and then this event fires.</summary>
467 </member>
468 <member name="P:System.Data.SqlServerCe.SqlCeDataAdapter.DeleteCommand">
469 <summary>Gets or sets an SQL statement for deleting records from the data set.</summary>
470 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the data source that correspond to deleted rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
471 </member>
472 <member name="P:System.Data.SqlServerCe.SqlCeDataAdapter.InsertCommand">
473 <summary>Gets or sets an SQL statement used to insert new records into the data source.</summary>
474 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to insert records in the data source that correspond to new rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
475 </member>
476 <member name="P:System.Data.SqlServerCe.SqlCeDataAdapter.SelectCommand">
477 <summary>Gets or sets an SQL statement used to select records in the data source.</summary>
478 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> that is used during <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataTable)"></see> to select records from data source for placement in the <see cref="T:System.Data.DataSet"></see>.</returns>
479 </member>
480 <member name="P:System.Data.SqlServerCe.SqlCeDataAdapter.UpdateCommand">
481 <summary>Gets or sets an SQL statement used to update records in the data source.</summary>
482 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to update records in the data source that correspond to modified rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
483 </member>
484 <member name="T:System.Data.SqlServerCe.SqlCeDataReader">
485 <summary>Provides a way of reading a forward-only stream of data rows from a data source. This class cannot be inherited.</summary>
486 </member>
487 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.Close">
488 <summary>Closes the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> object.</summary>
489 </member>
490 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.Dispose">
491 <summary>Releases the resources consumed by this <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see>.</summary>
492 </member>
493 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.Finalize">
494 <summary>Releases unmanaged resources and performs other cleanup operations before the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> is reclaimed by garbage collection.</summary>
495 </member>
496 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetBoolean(System.Int32)">
497 <summary>Gets the value of the specified column as a Boolean.</summary>
498 <returns>The value of the column.</returns>
499 <param name="ordinal">The zero-based column ordinal. </param>
500 </member>
501 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetByte(System.Int32)">
502 <summary>Gets the value of the specified column as a byte.</summary>
503 <returns>The value of the specified column as a byte.</returns>
504 <param name="ordinal">The zero-based column ordinal. </param>
505 </member>
506 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
507 <summary>Reads a stream of bytes from the specified column offset into the buffer as an array starting at the given buffer offset.</summary>
508 <returns>The actual number of bytes read.</returns>
509 <param name="buffer">The buffer into which to read the stream of bytes. </param>
510 <param name="dataIndex">The index within the field from which to begin the read operation. </param>
511 <param name="bufferIndex">The index for buffer to begin the read operation. </param>
512 <param name="ordinal">The zero-based column ordinal. </param>
513 <param name="length">The maximum length to copy into the buffer. </param>
514 </member>
515 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetChar(System.Int32)">
516 <summary>Not supported in the .NET Compact Framework Data Provider for SQL Server Compact 3.5.</summary>
517 </member>
518 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
519 <summary>Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.</summary>
520 <returns>The actual number of characters read.</returns>
521 <param name="buffer">The buffer into which to copy data. </param>
522 <param name="dataIndex">The index within the row from which to begin the read operation. </param>
523 <param name="bufferIndex">The index for buffer to begin the read operation. </param>
524 <param name="ordinal">The zero-based column ordinal. </param>
525 <param name="length">The number of characters to read. </param>
526 </member>
527 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetDataTypeName(System.Int32)">
528 <summary>Gets the name of the source data type.</summary>
529 <returns>The name of the back-end data type.</returns>
530 <param name="index">The zero-based column ordinal. </param>
531 </member>
532 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetDateTime(System.Int32)">
533 <summary>Gets the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
534 <returns>The value of the specified column.</returns>
535 <param name="ordinal">The zero-based column ordinal. </param>
536 </member>
537 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetDecimal(System.Int32)">
538 <summary>Gets the value of the specified column as a <see cref="T:System.Decimal"></see> object.</summary>
539 <returns>The value of the specified column.</returns>
540 <param name="ordinal">The zero-based column ordinal. </param>
541 </member>
542 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetDouble(System.Int32)">
543 <summary>Gets the value of the specified column as a double-precision floating point number.</summary>
544 <returns>The value of the specified column.</returns>
545 <param name="ordinal">The zero-based column ordinal. </param>
546 </member>
547 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetFieldType(System.Int32)">
548 <summary>Gets the <see cref="T:System.Type"></see> that is the data type of the object.</summary>
549 <returns>The <see cref="T:System.Type"></see> that is the data type of the object.</returns>
550 <param name="ordinal">The zero-based column ordinal. </param>
551 </member>
552 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetFloat(System.Int32)">
553 <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
554 <returns>The value of the specified column.</returns>
555 <param name="ordinal">The zero-based column ordinal. </param>
556 </member>
557 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetGuid(System.Int32)">
558 <summary>Gets the value of the specified column as a globally unique identifier (GUID).</summary>
559 <returns>The value of the specified column.</returns>
560 <param name="ordinal">The zero-based column ordinal. </param>
561 </member>
562 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetInt16(System.Int32)">
563 <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
564 <returns>The value of the specified column.</returns>
565 <param name="ordinal">The zero-based column ordinal. </param>
566 </member>
567 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetInt32(System.Int32)">
568 <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
569 <returns>The value of the specified column.</returns>
570 <param name="ordinal">The zero-based column ordinal. </param>
571 </member>
572 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetInt64(System.Int32)">
573 <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
574 <returns>The value of the specified column.</returns>
575 <param name="ordinal">The zero-based column ordinal. </param>
576 </member>
577 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetName(System.Int32)">
578 <summary>Gets the name of the specified column.</summary>
579 <returns>The name of the specified column.</returns>
580 <param name="index">The zero-based column ordinal. </param>
581 </member>
582 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetOrdinal(System.String)">
583 <summary>Gets the column ordinal, given the name of the column.</summary>
584 <returns>The zero-based column ordinal.</returns>
585 <param name="name">The name of the column. </param>
586 </member>
587 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetProviderSpecificFieldType(System.Int32)">
588 <summary>Gets a <see cref="T:System.Object"></see> that is a representation of the underlying provider-specific field type.</summary>
589 <returns>The <see cref="T:System.Type"></see> object that describes the data type of the specified column.</returns>
590 <param name="ordinal">The zero-based column ordinal.</param>
591 </member>
592 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSchemaTable">
593 <summary>Returns a <see cref="T:System.Data.DataTable"></see> that describes the column metadata of the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see>.</summary>
594 <returns>A <see cref="T:System.Data.DataTable"></see> that describes the column metadata.</returns>
595 </member>
596 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlBinary(System.Int32)">
597 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</summary>
598 <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</returns>
599 <param name="ordinal">The zero-based column ordinal. </param>
600 </member>
601 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlBoolean(System.Int32)">
602 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
603 <returns>The value of the column.</returns>
604 <param name="ordinal">The zero-based column ordinal. </param>
605 </member>
606 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlByte(System.Int32)">
607 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
608 <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
609 <param name="ordinal">The zero-based column ordinal. </param>
610 </member>
611 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlDateTime(System.Int32)">
612 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
613 <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</returns>
614 <param name="ordinal">The zero-based column ordinal. </param>
615 </member>
616 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlDecimal(System.Int32)">
617 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
618 <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
619 <param name="ordinal">The zero-based column ordinal. </param>
620 </member>
621 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlDouble(System.Int32)">
622 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
623 <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
624 <param name="ordinal">The zero-based column ordinal. </param>
625 </member>
626 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlGuid(System.Int32)">
627 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
628 <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</returns>
629 <param name="ordinal">The zero-based column ordinal. </param>
630 </member>
631 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlInt16(System.Int32)">
632 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
633 <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</returns>
634 <param name="ordinal">The zero-based column ordinal. </param>
635 </member>
636 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlInt32(System.Int32)">
637 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
638 <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
639 <param name="ordinal">The zero-based column ordinal. </param>
640 </member>
641 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlInt64(System.Int32)">
642 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
643 <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
644 <param name="ordinal">The zero-based column ordinal. </param>
645 </member>
646 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlMoney(System.Int32)">
647 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
648 <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
649 <param name="ordinal">The zero-based column ordinal. </param>
650 </member>
651 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlSingle(System.Int32)">
652 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
653 <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
654 <param name="ordinal">The zero-based column ordinal. </param>
655 </member>
656 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetSqlString(System.Int32)">
657 <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
658 <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
659 <param name="ordinal">The zero-based column ordinal. </param>
660 </member>
661 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetString(System.Int32)">
662 <summary>Gets the value of the specified column as a string.</summary>
663 <returns>The value of the specified column.</returns>
664 <param name="ordinal">The zero-based column ordinal. </param>
665 </member>
666 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetValue(System.Int32)">
667 <summary>Gets the value of the column at the specified ordinal in its native format.</summary>
668 <returns>The value to return.</returns>
669 <param name="ordinal">The zero-based column ordinal. </param>
670 </member>
671 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.GetValues(System.Object[])">
672 <summary>Gets all the attribute columns in the current row.</summary>
673 <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
674 <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the attribute columns. </param>
675 </member>
676 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.IsDBNull(System.Int32)">
677 <summary>Gets a value indicating whether the column contains nonexistent or missing values.</summary>
678 <returns>true if the specified column value is equivalent to <see cref="T:System.DBNull"></see>; otherwise, false.</returns>
679 <param name="ordinal">The zero-based column ordinal. </param>
680 </member>
681 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.NextResult">
682 <summary>Not supported in the .NET Compact Framework Data Provider for SQL Server Compact 3.5.</summary>
683 </member>
684 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.Read">
685 <summary>Advances <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> to the next record.</summary>
686 <returns>true if there are more rows; otherwise, false.</returns>
687 </member>
688 <member name="M:System.Data.SqlServerCe.SqlCeDataReader.Seek(System.Data.SqlServerCe.DbSeekOptions,System.Object[])">
689 <summary>Places the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> on the record with indexed values that match the specified parameters.</summary>
690 <returns>A Boolean value; true indicates the cursor is positioned on a row.</returns>
691 <param name="dbSeekOptions">The <see cref="T:System.Data.SqlServerCe.DbSeekOptions"></see> to use.</param>
692 <param name="index">The index of the record.</param>
693 </member>
694 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.Depth">
695 <summary>Gets a value indicating the depth of nesting for the current row.</summary>
696 <returns>The depth of nesting for the current row. The .NET Compact Framework Data Provider for SQL Server Compact 3.5 does not support nesting and always returns zero.</returns>
697 </member>
698 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.FieldCount">
699 <summary>Gets the number of columns in the current row.</summary>
700 <returns>When not positioned in a valid recordset, 0; otherwise, the number of columns in the current record.</returns>
701 </member>
702 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.HasRows">
703 <summary>Gets a value that indicates whether the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> contains one or more rows</summary>
704 <returns>A <see cref="T:System.Boolean"></see> value.</returns>
705 </member>
706 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.IsClosed">
707 <summary>Indicates whether the data reader is closed.</summary>
708 <returns>true if the <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> is closed; otherwise, false.</returns>
709 </member>
710 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.Item(System.Int32)">
711 <summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
712 <returns>The value of the specified column in its native format.</returns>
713 <param name="index">The column ordinal. </param>
714 </member>
715 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.Item(System.String)">
716 <summary>Gets the value of the specified column in its native format given the column name.</summary>
717 <returns>The value of the specified column in its native format.</returns>
718 <param name="name">The column name. </param>
719 </member>
720 <member name="P:System.Data.SqlServerCe.SqlCeDataReader.RecordsAffected">
721 <summary>Gets the number of rows changed, inserted, or deleted by execution of the SQL statement.</summary>
722 <returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
723 </member>
724 <member name="T:System.Data.SqlServerCe.SqlCeEngine">
725 <summary>Represents the properties, methods, and other objects of the SQL Server Compact 3.5 Engine object. This class cannot be inherited.</summary>
726 </member>
727 <member name="M:System.Data.SqlServerCe.SqlCeEngine.#ctor">
728 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeEngine"></see> class.</summary>
729 </member>
730 <member name="M:System.Data.SqlServerCe.SqlCeEngine.#ctor(System.String)">
731 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeEngine"></see> class with the specified local connection string.</summary>
732 <param name="localConnectionString">The connection string to the database.</param>
733 </member>
734 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Compact(System.String)">
735 <summary>Reclaims wasted space in the SQL Server Compact 3.5 database by creating a new database file from the existing file. This method is also used to change the collating order, encryption, or password settings of the database. </summary>
736 <param name="connectionString">The connection string to the destination database. </param>
737 </member>
738 <member name="M:System.Data.SqlServerCe.SqlCeEngine.CreateDatabase">
739 <summary>Creates a new database.</summary>
740 </member>
741 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Dispose">
742 <summary>Releases all SQL Server Compact 3.5<see cref="T:System.Data.SqlServerCe.SqlCeEngine"></see> resources.</summary>
743 </member>
744 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Repair(System.String,System.Data.SqlServerCe.RepairOption)">
745 <summary>Repairs a corrupted database.</summary>
746 <param name="options">The RepairOption to use when repairing the database.</param>
747 <param name="connectionString">The local connection string to the database.</param>
748 </member>
749 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Shrink">
750 <summary>Reclaims wasted space in the SQL Server Compact 3.5 database by moving empty pages to the end of the file, and then truncating the file.</summary>
751 </member>
752 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Upgrade">
753 <summary>Upgrades a SQL Server Compact database from version 3.1 to 3.5. After the upgrade, the database will be encrypted if the source database was encrypted. If it was not, the upgraded database will be unencrypted.</summary>
754 </member>
755 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Upgrade(System.String)">
756 <summary>Upgrades a SQL Server Compact database from version 3.1 to 3.5. The destination database will be encrypted if the encryption mode was specified in the Destination Connection string.</summary>
757 </member>
758 <member name="M:System.Data.SqlServerCe.SqlCeEngine.Verify">
759 <summary>Recalculates the checksums for each page in the database and compares the new checksums to the expected values.</summary>
760 <returns>True if the checksums match and there is no database corruption; otherwise, false.</returns>
761 </member>
762 <member name="P:System.Data.SqlServerCe.SqlCeEngine.LocalConnectionString">
763 <summary>Gets or sets the connection string to the SQL Server Compact 3.5 database.</summary>
764 <returns>The connection string.</returns>
765 </member>
766 <member name="T:System.Data.SqlServerCe.SqlCeError">
767 <summary>Collects information relevant to a warning or error returned by the data source. This class cannot be inherited.</summary>
768 </member>
769 <member name="M:System.Data.SqlServerCe.SqlCeError.ToString">
770 <summary>Gets the complete text of the error message.</summary>
771 <returns>The complete text of the error message.</returns>
772 </member>
773 <member name="P:System.Data.SqlServerCe.SqlCeError.ErrorParameters">
774 <summary>Gets the last three error parameters. Error parameters are used by SQL Server Compact 3.5 to provide additional details about an error.</summary>
775 <returns>A string array that contains the last three error parameters.</returns>
776 </member>
777 <member name="P:System.Data.SqlServerCe.SqlCeError.HResult">
778 <summary>Returns an HRESULT value that identifies the type of error.</summary>
779 <returns>The HR number that identifies the type of error.</returns>
780 </member>
781 <member name="P:System.Data.SqlServerCe.SqlCeError.Message">
782 <summary>Gets the text describing the error.</summary>
783 <returns>The text describing the error.</returns>
784 </member>
785 <member name="P:System.Data.SqlServerCe.SqlCeError.NativeError">
786 <summary>Gets the native error number of the <see cref="T:System.Data.SqlServerCe.SqlCeError"></see>. For more information about these errors, see "SQL Server Compact 3.5 Errors" in the Troubleshooting section of SQL Server Compact 3.5 Books Online.</summary>
787 <returns>The native error number of the <see cref="T:System.Data.SqlServerCe.SqlCeError"></see>.</returns>
788 </member>
789 <member name="P:System.Data.SqlServerCe.SqlCeError.NumericErrorParameters">
790 <summary>Gets the first three error parameters. Error parameters are used by SQL Server Compact 3.5 to provide additional details about an error.</summary>
791 <returns>An integer array that contains the first three error parameters.</returns>
792 </member>
793 <member name="P:System.Data.SqlServerCe.SqlCeError.Source">
794 <summary>Gets the name of the provider that generated the error.</summary>
795 <returns>The name of the provider that generated the error. For example, the <see cref="P:System.Data.SqlServerCe.SqlCeError.Source"></see> property may return a string such as "OLE DB Provider for SQL Server Compact 3.5."</returns>
796 </member>
797 <member name="T:System.Data.SqlServerCe.SqlCeErrorCollection">
798 <summary>Collects all errors generated by the .NET Compact Framework Data Provider for SQL Server Compact 3.5. This class cannot be inherited.</summary>
799 </member>
800 <member name="M:System.Data.SqlServerCe.SqlCeErrorCollection.CopyTo(System.Array,System.Int32)">
801 <summary>Copies the elements of the <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see> into an <see cref="T:System.Array"></see>, starting at the given index within the <see cref="T:System.Array"></see>.</summary>
802 <param name="index">The starting index of the array. </param>
803 <param name="array">The <see cref="T:System.Array"></see> into which to copy the elements. </param>
804 </member>
805 <member name="M:System.Data.SqlServerCe.SqlCeErrorCollection.GetEnumerator">
806 <summary>Returns an enumerator that can iterate through the <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see>.</summary>
807 <returns><see cref="T:System.Collections.IEnumerator"></see></returns>
808 </member>
809 <member name="P:System.Data.SqlServerCe.SqlCeErrorCollection.Count">
810 <summary>Gets the number of <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> objects in the collection.</summary>
811 <returns>The total number of <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> objects in the collection.</returns>
812 </member>
813 <member name="P:System.Data.SqlServerCe.SqlCeErrorCollection.Item(System.Int32)">
814 <summary>Gets the error at the specified index.</summary>
815 <returns>A <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> that contains the error at the specified index.</returns>
816 <param name="index">The zero-based index of the <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> to retrieve. </param>
817 </member>
818 <member name="T:System.Data.SqlServerCe.SqlCeException">
819 <summary>The exception thrown when the underlying provider returns a warning or error from a SQL Server Compact 3.5 data source. This class cannot be inherited.</summary>
820 </member>
821 <member name="M:System.Data.SqlServerCe.SqlCeException.ToString">
822 <summary>Creates and returns a string representation of the current exception. </summary>
823 <returns>A <see cref="T:System.String"></see> value.</returns>
824 </member>
825 <member name="P:System.Data.SqlServerCe.SqlCeException.Errors">
826 <summary>Gets a collection of one or more <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> objects that contain detailed information about exceptions generated by the .NET Compact Framework Data Provider for SQL Server Compact 3.5.</summary>
827 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see> object that contains the collected instances of the <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> class for the exception.</returns>
828 </member>
829 <member name="P:System.Data.SqlServerCe.SqlCeException.HResult">
830 <summary>Gets the HRESULT value of the exception. This value is the same as the value of <see cref="P:System.Data.SqlServerCe.SqlCeError.HResult"></see> for the first instance of <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> in the <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see> for the exception.</summary>
831 <returns>The HRESULT value.</returns>
832 </member>
833 <member name="P:System.Data.SqlServerCe.SqlCeException.Message">
834 <summary>Gets the text describing the first instance of <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> in the <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see> for this exception.</summary>
835 <returns>The text describing the error.</returns>
836 </member>
837 <member name="P:System.Data.SqlServerCe.SqlCeException.NativeError">
838 <summary>Gets the native error number of the first <see cref="T:System.Data.SqlServerCe.SqlCeError"></see> in the <see cref="T:System.Data.SqlServerCe.SqlCeErrorCollection"></see>. For more information about the error, see the "SQL Server Compact 3.5 Errors" topic in the Troubleshooting section of SQL Server Compact 3.5 Books Online.</summary>
839 </member>
840 <member name="P:System.Data.SqlServerCe.SqlCeException.Source">
841 <summary>Gets the name of the OLE DB provider that generated the error.</summary>
842 <returns>The name of the OLE DB provider that generated the error.</returns>
843 </member>
844 <member name="T:System.Data.SqlServerCe.SqlCeFlushFailureEventArgs">
845 <summary>Encapsulates event arguments for the <see cref="E:System.Data.SqlServerCe.SqlCeConnection.FlushFailure"></see> event.</summary>
846 </member>
847 <member name="T:System.Data.SqlServerCe.SqlCeFlushFailureEventHandler">
848 <summary>The delegate that must be implemented to listen for <see cref="E:System.Data.SqlServerCe.SqlCeConnection.FlushFailure"></see> events.</summary>
849 </member>
850 <member name="T:System.Data.SqlServerCe.SqlCeInfoMessageEventArgs">
851 <summary>Provides data for the <see cref="E:System.Data.SqlServerCe.SqlCeConnection.InfoMessage"></see> event. This class cannot be inherited.</summary>
852 </member>
853 <member name="M:System.Data.SqlServerCe.SqlCeInfoMessageEventArgs.ToString">
854 <summary>Retrieves a string representation of the <see cref="E:System.Data.SqlServerCe.SqlCeConnection.InfoMessage"></see> event.</summary>
855 <returns>A string representing the <see cref="E:System.Data.SqlServerCe.SqlCeConnection.InfoMessage"></see> event.</returns>
856 </member>
857 <member name="P:System.Data.SqlServerCe.SqlCeInfoMessageEventArgs.Errors">
858 <summary>Gets the collection of warnings sent from the data source.</summary>
859 <returns>The collection of warnings sent from the data source.</returns>
860 </member>
861 <member name="P:System.Data.SqlServerCe.SqlCeInfoMessageEventArgs.Message">
862 <summary>Gets the complete text of the error sent from the data source.</summary>
863 <returns>The complete text of the error.</returns>
864 </member>
865 <member name="T:System.Data.SqlServerCe.SqlCeInfoMessageEventHandler">
866 <summary>Represents the method that will handle the <see cref="E:System.Data.SqlServerCe.SqlCeConnection.InfoMessage"></see> event of a <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see>.</summary>
867 </member>
868 <member name="T:System.Data.SqlServerCe.SqlCeInvalidDatabaseFormatException">
869 <summary>Throws an exception from SQL Server Compact data source when you try to open the database file of an older or newer version of SQL Server Compact.</summary>
870 </member>
871 <member name="T:System.Data.SqlServerCe.SqlCeLockTimeoutException">
872 <summary>This exception is thrown if the lock timeout has been reached.</summary>
873 </member>
874 <member name="T:System.Data.SqlServerCe.SqlCeParameter">
875 <summary>Represents a parameter to a <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> and, optionally, its mapping to a <see cref="T:System.Data.DataSet"></see> column. This class cannot be inherited.</summary>
876 </member>
877 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor">
878 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class.</summary>
879 </member>
880 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Object)">
881 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name and the value of the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>.</summary>
882 <param name="value">The value of the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object. </param>
883 <param name="name">The name of the parameter to map. </param>
884 </member>
885 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Data.SqlDbType)">
886 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name and data type.</summary>
887 <param name="dataType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
888 <param name="name">The name of the parameter to map. </param>
889 </member>
890 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32)">
891 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name, data type, and length.</summary>
892 <param name="size">The length of the parameter. </param>
893 <param name="dataType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
894 <param name="name">The name of the parameter to map. </param>
895 </member>
896 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.String)">
897 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name, data type, length, and source column name.</summary>
898 <param name="sourceColumn">The name of the source column. </param>
899 <param name="size">The length of the parameter. </param>
900 <param name="dataType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
901 <param name="name">The name of the parameter to map. </param>
902 </member>
903 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
904 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name, data type, length, and other properties. SQL Server Compact 3.5 supports only input parameters.</summary>
905 <param name="size">The length of the parameter. </param>
906 <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion"></see> values. </param>
907 <param name="isNullable">true if the value of the field can be null; otherwise, false. </param>
908 <param name="sourceColumn">The name of the source column. </param>
909 <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved. </param>
910 <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
911 <param name="parameterName">The name of the parameter. </param>
912 <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>. </param>
913 <param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved. </param>
914 </member>
915 <member name="M:System.Data.SqlServerCe.SqlCeParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
916 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> class with the parameter name, data type, length, parameter direction, and other properties. SQL Server Compact 3.5 only supports input parameters.</summary>
917 <param name="size">The length of the parameter. </param>
918 <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion"></see> values. </param>
919 <param name="isNullable">true if the value of the field can be null; otherwise, false. </param>
920 <param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved. </param>
921 <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved. </param>
922 <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
923 <param name="sourceColumn">The name of the source column. </param>
924 <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>. </param>
925 <param name="direction">The <see cref="P:System.Data.ParameterDirection"></see> to use.</param>
926 <param name="parameterName">The name of the parameter.</param>
927 </member>
928 <member name="M:System.Data.SqlServerCe.SqlCeParameter.ResetDbType">
929 <summary>Resets the type associated with this <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>.</summary>
930 </member>
931 <member name="M:System.Data.SqlServerCe.SqlCeParameter.ToString">
932 <summary>Gets a string containing the <see cref="P:System.Data.SqlServerCe.SqlCeParameter.ParameterName"></see>.</summary>
933 <returns>A string containing the <see cref="P:System.Data.SqlServerCe.SqlCeParameter.ParameterName"></see>.</returns>
934 </member>
935 <member name="P:System.Data.SqlServerCe.SqlCeParameter.DbType">
936 <summary>Gets or sets the <see cref="T:System.Data.DbType"></see> of the parameter.</summary>
937 <returns>One of the <see cref="T:System.Data.DbType"></see> values. The default is <see cref="F:System.Data.DbType.String"></see>.</returns>
938 </member>
939 <member name="P:System.Data.SqlServerCe.SqlCeParameter.Direction">
940 <summary>This property always returns ParameterDirection.Input for .NET Compact Framework Data Provider for SQL Server Compact 3.5. Setting this property to a different value causes an <see cref="T:System.InvalidOperationException"></see> to be thrown.</summary>
941 <returns>This property always returns ParameterDirection.Input for SQL Server Compact 3.5 Data Provider. Setting this property is not supported.</returns>
942 </member>
943 <member name="P:System.Data.SqlServerCe.SqlCeParameter.IsNullable">
944 <summary>Gets or sets a value indicating whether or not the parameter accepts null values.</summary>
945 <returns>true if null values are accepted; otherwise, false. The default is false.</returns>
946 </member>
947 <member name="P:System.Data.SqlServerCe.SqlCeParameter.ParameterName">
948 <summary>Gets or sets the name of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>.</summary>
949 <returns>The name of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>. The default is an empty string.</returns>
950 </member>
951 <member name="P:System.Data.SqlServerCe.SqlCeParameter.Precision">
952 <summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> property.</summary>
953 <returns>The maximum number of digits used to represent the <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> property. The default value is 0.</returns>
954 </member>
955 <member name="P:System.Data.SqlServerCe.SqlCeParameter.Scale">
956 <summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved.</summary>
957 <returns>The number of decimal places to which <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see> is resolved. The default is 0.</returns>
958 </member>
959 <member name="P:System.Data.SqlServerCe.SqlCeParameter.Size">
960 <summary>Gets or sets the maximum length of the data within the column.</summary>
961 <returns>The maximum length of the data within the column. The default value is inferred from the parameter value.</returns>
962 </member>
963 <member name="P:System.Data.SqlServerCe.SqlCeParameter.SourceColumn">
964 <summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet"></see> and used for loading or returning the <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see>.</summary>
965 <returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet"></see>. The default is an empty string.</returns>
966 </member>
967 <member name="P:System.Data.SqlServerCe.SqlCeParameter.SourceVersion">
968 <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion"></see> to use when loading <see cref="P:System.Data.SqlServerCe.SqlCeParameter.Value"></see>.</summary>
969 <returns>One of the <see cref="T:System.Data.DataRowVersion"></see> values. The default is Current.</returns>
970 </member>
971 <member name="P:System.Data.SqlServerCe.SqlCeParameter.SqlDbType">
972 <summary>Gets or sets the <see cref="T:System.Data.SqlDbType"></see> of the parameter.</summary>
973 <returns>One of the <see cref="T:System.Data.SqlDbType"></see> values. The default is NVarChar.</returns>
974 </member>
975 <member name="P:System.Data.SqlServerCe.SqlCeParameter.Value">
976 <summary>Gets or sets the value of the parameter.</summary>
977 <returns>An <see cref="T:System.Object"></see> that is the value of the parameter. The default value is null.</returns>
978 </member>
979 <member name="T:System.Data.SqlServerCe.SqlCeParameterCollection">
980 <summary>Collects all parameters relevant to a <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> as well as their respective mappings to <see cref="T:System.Data.DataSet"></see> columns.</summary>
981 </member>
982 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.Object)">
983 <summary>Adds a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object to the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see>.</summary>
984 <returns>The index of the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object in the collection.</returns>
985 <param name="value">The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object to add to the collection. </param>
986 </member>
987 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.Data.SqlServerCe.SqlCeParameter)">
988 <summary>Adds the specified <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see>.</summary>
989 <returns>A reference to the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
990 <param name="value">The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to add to the collection. </param>
991 </member>
992 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.String,System.Object)">
993 <summary>Adds a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see> given the parameter name and value.</summary>
994 <returns>A reference to the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
995 <param name="value">The <see cref="T:System.Object"></see> value of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to add to the collection. </param>
996 <param name="parameterName">The name of the parameter. </param>
997 </member>
998 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.String,System.Data.SqlDbType)">
999 <summary>Adds a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see> given the parameter name and data type.</summary>
1000 <returns>A reference to the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
1001 <param name="type">One of the SqlDbType values. </param>
1002 <param name="parameterName">The name of the parameter. </param>
1003 </member>
1004 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32)">
1005 <summary>Adds a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see> given the parameter name, data type, and column width.</summary>
1006 <returns>A reference to the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
1007 <param name="type">One of the SqlDbType values. </param>
1008 <param name="size">The width of the column. </param>
1009 <param name="parameterName">The name of the parameter. </param>
1010 </member>
1011 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32,System.String)">
1012 <summary>Adds a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> given the parameter name, data type, column width, and source column name.</summary>
1013 <returns>A reference to the new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object.</returns>
1014 <param name="type">One of the SqlDbType values. </param>
1015 <param name="size">The width of the column. </param>
1016 <param name="sourceColumn">The name of the source column. </param>
1017 <param name="parameterName">The name of the parameter. </param>
1018 </member>
1019 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.AddRange(System.Array)">
1020 <summary>Adds an array of <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> objects to <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see>.</summary>
1021 <param name="values">An array of values of type <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to add to the collection.</param>
1022 </member>
1023 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.AddWithValue(System.String,System.Object)">
1024 <summary>Adds a new <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see> and sets its value.</summary>
1025 <param name="value">Value of the parameterName.</param>
1026 <param name="parameterName">Name of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>.</param>
1027 </member>
1028 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Clear">
1029 <summary>Removes all items from the collection.</summary>
1030 </member>
1031 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Contains(System.Object)">
1032 <summary>Gets a value indicating whether or not a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object exists in the collection.</summary>
1033 <returns>true if the collection contains the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see>; otherwise, false.</returns>
1034 <param name="value">The value of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object to find. </param>
1035 </member>
1036 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Contains(System.String)">
1037 <summary>Gets a value indicating whether a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> with the specified parameter name exists in the collection.</summary>
1038 <returns>true if the collection contains the parameter; otherwise, false.</returns>
1039 <param name="value">The name of the parameter. </param>
1040 </member>
1041 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.CopyTo(System.Array,System.Int32)">
1042 <summary>Copies <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> objects from the <see cref="T:System.Data.SqlServerCe.SqlCeParameterCollection"></see> to the specified array.</summary>
1043 <param name="array">The <see cref="T:System.Array"></see> into which to copy the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> objects. </param>
1044 <param name="index">The starting index of the array. </param>
1045 </member>
1046 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.IndexOf(System.Object)">
1047 <summary>Gets the location of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object in the collection.</summary>
1048 <returns>The zero-based location of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> in the collection.</returns>
1049 <param name="value">The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object to locate. </param>
1050 </member>
1051 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.IndexOf(System.String)">
1052 <summary>Gets the location of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> in the collection with the specified parameter name.</summary>
1053 <returns>The location of the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> in the collection.</returns>
1054 <param name="parameterName">The name of the parameter to find. </param>
1055 </member>
1056 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Insert(System.Int32,System.Object)">
1057 <summary>Inserts a <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> in the collection at the specified index.</summary>
1058 <param name="value">The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> to add to the collection. </param>
1059 <param name="index">The zero-based index where the parameter is to be inserted within the collection. </param>
1060 </member>
1061 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.Remove(System.Object)">
1062 <summary>Removes the specified <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> from the collection.</summary>
1063 <param name="value">The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> object to remove from the collection. </param>
1064 </member>
1065 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.RemoveAt(System.Int32)">
1066 <summary>Removes the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> at the specified index from the collection.</summary>
1067 <param name="index">The zero-based index of the parameter to remove. </param>
1068 </member>
1069 <member name="M:System.Data.SqlServerCe.SqlCeParameterCollection.RemoveAt(System.String)">
1070 <summary>Removes the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> with the specified name from the collection.</summary>
1071 <param name="parameterName">The name of the parameter to remove. </param>
1072 </member>
1073 <member name="P:System.Data.SqlServerCe.SqlCeParameterCollection.Count">
1074 <summary>Gets the number of <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> objects in the collection.</summary>
1075 <returns>The number of <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> objects in the collection.</returns>
1076 </member>
1077 <member name="P:System.Data.SqlServerCe.SqlCeParameterCollection.Item(System.Int32)">
1078 <summary>Gets or sets the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> at the specified index.</summary>
1079 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> at the specified index.</returns>
1080 <param name="index">The zero-based index of the parameter to retrieve. </param>
1081 </member>
1082 <member name="P:System.Data.SqlServerCe.SqlCeParameterCollection.Item(System.String)">
1083 <summary>Gets or sets the <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> with the specified name.</summary>
1084 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeParameter"></see> with the specified name.</returns>
1085 <param name="parameterName">The name of the parameter to retrieve. </param>
1086 </member>
1087 <member name="T:System.Data.SqlServerCe.SqlCeProviderFactory">
1088 <summary>Represents a set of methods for creating instances of a provider's implementation of the data source classes.</summary>
1089 </member>
1090 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.#ctor">
1091 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeProviderFactory"></see> class. </summary>
1092 </member>
1093 <member name="F:System.Data.SqlServerCe.SqlCeProviderFactory.Instance">
1094 <summary>An instance of a <see cref="T:System.Data.SqlServerCe.SqlCeProviderFactory"></see>.</summary>
1095 </member>
1096 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateCommand">
1097 <summary>Returns a new instance of the provider's class that implements the <see cref="T:System.Data.Common.DbCommand"></see>.</summary>
1098 <returns>A new instance of <see cref="System.Data.Common.DbCommand"></see>.</returns>
1099 </member>
1100 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateCommandBuilder">
1101 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbCommandBuilder"></see>.</summary>
1102 <returns>A new instance of <see cref="System.Data.Common.DbCommandBuilder"></see>.</returns>
1103 </member>
1104 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateConnection">
1105 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbConnection"></see>. </summary>
1106 <returns>A new instance of <see cref="System.Data.Common.DbConnection"></see>.</returns>
1107 </member>
1108 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateConnectionStringBuilder">
1109 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbConnectionStringBuilder"></see>.</summary>
1110 <returns>A new instance of <see cref="System.Data.Common.DbConnectionStringBuilder"></see>.</returns>
1111 </member>
1112 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateDataAdapter">
1113 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbDataAdapter"></see>.</summary>
1114 <returns>A new instance of <see cref="System.Data.Common.DbDataAdapter."></see></returns>
1115 </member>
1116 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateDataSourceEnumerator">
1117 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbDataSourceEnumerator"></see> class. </summary>
1118 <returns>A new instance of <see cref="System.Data.Common.DbDataSourceEnumerator"></see>.</returns>
1119 </member>
1120 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.CreateParameter">
1121 <summary>Returns a new instance of the provider's class that implements the <see cref="System.Data.Common.DbParameter"></see>.</summary>
1122 <returns>A new instance of <see cref="System.Data.Common.DbParameter"></see>. </returns>
1123 </member>
1124 <member name="M:System.Data.SqlServerCe.SqlCeProviderFactory.System#IServiceProvider#GetService(System.Type)">
1125 <summary>Gets the service object of the specified type.</summary>
1126 <param name="serviceType">An object that specifies the type of service object to get. </param>
1127 </member>
1128 <member name="P:System.Data.SqlServerCe.SqlCeProviderFactory.CanCreateDataSourceEnumerator">
1129 <summary>Specifies whether the specific <see cref="System.Data.Common.DbProviderFactory"></see> supports the <see cref="System.Data.Common.DbDataSourceEnumerator"></see> class. </summary>
1130 <returns>True if the instance of the <see cref="System.Data.Common.DbProviderFactory"></see> supports the <see cref="System.Data.Common.DbDataSourceEnumerator"></see> class; otherwise false. </returns>
1131 </member>
1132 <member name="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess">
1133 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object. For more information about Remote Data Access, see SQL Server Compact 3.5 Books Online.</summary>
1134 </member>
1135 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.#ctor">
1136 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object.</summary>
1137 </member>
1138 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.#ctor(System.String,System.String)">
1139 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object and configures it for anonymous access to Microsoft Internet Information Services (IIS).</summary>
1140 <param name="localConnectionString">The OLE DB connection string for the SQL Server Compact 3.5 database. </param>
1141 <param name="internetUrl">The URL used to connect to the SQL Server Compact 3.5 Server Agent. </param>
1142 </member>
1143 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.#ctor(System.String,System.String,System.String,System.String)">
1144 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object and configures it for a Basic or Integrated Windows authentication to Microsoft Internet Information Services (IIS).</summary>
1145 <param name="internetLogin">The login name used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1146 <param name="internetPassword">The password used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1147 <param name="localConnectionString">The OLE DB connection string for the SQL Server Compact 3.5 database. </param>
1148 <param name="internetUrl">The URL used to connect to the SQL Server Compact 3.5 Server Agent. </param>
1149 </member>
1150 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Dispose">
1151 <summary>Releases all unmanaged resources.</summary>
1152 </member>
1153 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Pull(System.String,System.String,System.String)">
1154 <summary>Downloads data from a remote SQL Server database and stores that data in a single table in a local SQL Server Compact 3.5 database.</summary>
1155 <param name="localTableName">The name of the SQL Server Compact 3.5 table that will receive the extracted SQL Server records. An error occurs if the table already exists. </param>
1156 <param name="sqlSelectString">Any valid Transact-SQL statement—including SELECT statements and stored procedures—that specifies which table, columns, and records to extract from the SQL Server database for storing in the SQL Server Compact 3.5 database. </param>
1157 <param name="oledbConnectionString">The OLE DB connection string used when connecting to the SQL Server database. </param>
1158 </member>
1159 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Pull(System.String,System.String,System.String,System.Data.SqlServerCe.RdaTrackOption)">
1160 <summary>Downloads data from a remote database and stores that data in a single table in a local SQL Server Compact 3.5 database.</summary>
1161 <param name="localTableName">The name of the SQL Server Compact 3.5 table that will receive the extracted SQL Server records. An error occurs if the table already exists. </param>
1162 <param name="sqlSelectString">Any valid Transact-SQL statement—including SELECT statements and stored procedures—that specifies which table, columns, and records to extract from the SQL Server database for storing in the SQL Server Compact 3.5 database. </param>
1163 <param name="trackOption">The option indicating whether SQL Server Compact 3.5 tracks changes made to the pulled table, and whether the indexes that exist on the table being pulled are brought down to the device with the PRIMARY KEY constraints. </param>
1164 <param name="oledbConnectionString">The OLE DB connection string used when connecting to the SQL Server database. </param>
1165 </member>
1166 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Pull(System.String,System.String,System.String,System.Data.SqlServerCe.RdaTrackOption,System.String)">
1167 <summary>Downloads data from a remote SQL Server database and stores that data in a single table in a local SQL Server Compact 3.5 database.</summary>
1168 <param name="localTableName">The name of the SQL Server Compact 3.5 table that will receive the extracted SQL Server records. An error occurs if the table already exists. </param>
1169 <param name="sqlSelectString">Any valid Transact-SQL statement—including SELECT statements and stored procedures—that specifies which table, columns, and records to extract from the SQL Server database for storing in the SQL Server Compact 3.5 database. </param>
1170 <param name="errorTable">The name of the local error table that is created if an error occurs when the <see cref="Overload:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Push"></see> method is later called to send changes back to SQL Server. This option can be specified only when the RdaTrackOption value is <see cref="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOn"></see> or <see cref="F:System.Data.SqlServerCe.RdaTrackOption.TrackingOnWithIndexes"></see>. </param>
1171 <param name="trackOption">The option indicating whether SQL Server Compact 3.5 tracks changes made to the pulled table, and whether the indexes that exist on the table being pulled are brought down to the device with the PRIMARY KEY constraints. </param>
1172 <param name="oledbConnectionString">The OLE DB connection string used when connecting to the SQL Server database. </param>
1173 </member>
1174 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Push(System.String,System.String)">
1175 <summary>Transmits changes from a pulled tracked table in SQL Server Compact 3.5 back to the originating SQL Server table. These changes are individually applied to the server in separate transactions.</summary>
1176 <param name="localTableName">The name of the SQL Server Compact 3.5 table that will receive the extracted SQL Server records. An error occurs if the table already exists. </param>
1177 <param name="oledbConnectionString">The OLE DB connection string used when connecting to the SQL Server database. </param>
1178 </member>
1179 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.Push(System.String,System.String,System.Data.SqlServerCe.RdaBatchOption)">
1180 <summary>Transmits changes from a pulled tracked table in SQL Server Compact 3.5 back to the SQL Server table. These changes can be either individually applied to the server or batched together in a single transaction.</summary>
1181 <param name="localTableName">The name of the SQL Server Compact 3.5 table that will receive the extracted SQL Server records. An error occurs if the table already exists. </param>
1182 <param name="batchOption">The option indicates whether the changes being sent back to the SQL Server table should be batched together in a single transaction or individually applied. </param>
1183 <param name="oledbConnectionString">The OLE DB connection string used when connecting to the SQL Server database. </param>
1184 </member>
1185 <member name="M:System.Data.SqlServerCe.SqlCeRemoteDataAccess.SubmitSql(System.String,System.String)">
1186 <summary>Submits SQL statements for execution on a database in SQL Server on a remote server.</summary>
1187 <param name="oleDBConnectionString">The OLE DB connection string for the remote SQL Server database. </param>
1188 <param name="sqlString">Any SQL statement that does not return rows. </param>
1189 </member>
1190 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.CompressionLevel">
1191 <summary>Specifies the amount of compression that will be used by the compression routines during Push and Pull operations.</summary>
1192 <returns>The compression level that has been set.</returns>
1193 <param name="value">The compression level to use. Valid values are 0 to 6 (inclusive), with a setting of 0 representing no compression and a setting of 6 enabling maximum compression.</param>
1194 </member>
1195 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.ConnectionRetryTimeout">
1196 <summary>Specifies how long (in seconds) the SQL Server Compact 3.5 client will continue to retry sending failed requests.</summary>
1197 <returns>The <see cref="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.ConnectionRetryTimeout"></see> value, with a default value of 120 seconds.</returns>
1198 <param name="value">The time, in seconds, during which the SQL Server Compact 3.5 client will continue to retry an established connection that has failed. Valid values are 0 to 900 seconds, inclusive. The default value is 120 seconds.</param>
1199 </member>
1200 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.ConnectTimeout">
1201 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object waits for a connection to the server.</summary>
1202 <returns>An <see cref="T:System.Int32"></see> value that represents the time-out, in milliseconds, with no default.</returns>
1203 </member>
1204 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetLogin">
1205 <summary>Specifies the Microsoft Internet Information Services (IIS) login name used when connecting to the SQL Server Compact 3.5 Server Agent.</summary>
1206 <returns>The IIS login name used when connecting to the SQL Server Compact 3.5 Server Agent. The default is no login.</returns>
1207 </member>
1208 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetPassword">
1209 <summary>Specifies the Microsoft Internet Information Services (IIS) password used when connecting to the SQL Server Compact 3.5 Server Agent.</summary>
1210 <returns>The IIS password string used when connecting to the SQL Server Compact 3.5 Server Agent. The default is no password.</returns>
1211 </member>
1212 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetProxyLogin">
1213 <summary>Specifies the login name used when connecting to a proxy server (defined in the <see cref="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetProxyServer"></see> property) that requires authentication.</summary>
1214 <returns>The proxy server login name. The default is no login.</returns>
1215 </member>
1216 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetProxyPassword">
1217 <summary>Specifies the password used when connecting to a proxy server (defined in the <see cref="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetProxyServer"></see> property) that requires authentication.</summary>
1218 <returns>The proxy server password string. The default is no password.</returns>
1219 </member>
1220 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetProxyServer">
1221 <summary>Specifies the proxy server to use when accessing the HTTP resource specified in the <see cref="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetUrl"></see> property.</summary>
1222 <returns>The proxy server name (or IP address) and the port number (ProxyServerName:Port) used when accessing the specified HTTP resource.</returns>
1223 </member>
1224 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.InternetUrl">
1225 <summary>Specifies the URL used to connect to the SQL Server Compact 3.5 Server Agent. The SQL Server Compact 3.5 Server Agent is the Microsoft Internet Information Services (IIS) ISAPI DLL that connects the SQL Server Compact 3.5 client to the Database. This property must be specified.</summary>
1226 <returns>The string containing the URL of the SQL Server Compact 3.5 Server Agent (including its file name, Sqlcesa30.dll).</returns>
1227 </member>
1228 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.LocalConnectionString">
1229 <summary>Specifies the connection string for the SQL Server Compact 3.5 database.</summary>
1230 <returns>The connection string for the SQL Server Compact 3.5 database.</returns>
1231 </member>
1232 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.ReceiveTimeout">
1233 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object waits for the response to a server request.</summary>
1234 <returns>An <see cref="T:System:Int32"></see> value that represents the time-out, in milliseconds, with a default of 60 seconds.</returns>
1235 </member>
1236 <member name="P:System.Data.SqlServerCe.SqlCeRemoteDataAccess.SendTimeout">
1237 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeRemoteDataAccess"></see> object waits to send a request to the server.</summary>
1238 <returns>An <see cref="T:System.Int32"></see> value that represents the time-out, in milliseconds, with no default.</returns>
1239 </member>
1240 <member name="T:System.Data.SqlServerCe.SqlCeReplication">
1241 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object. For more information about SQL Server replication, see the SQL Server Books Online. For more information about merge replication with SQL Server Compact 3.5, see the SQL Server Compact 3.5 Books Online.</summary>
1242 </member>
1243 <member name="M:System.Data.SqlServerCe.SqlCeReplication.#ctor">
1244 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object. This is the default constructor.</summary>
1245 </member>
1246 <member name="M:System.Data.SqlServerCe.SqlCeReplication.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
1247 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object and sets the required properties for connecting to a publication.</summary>
1248 <param name="internetLogin">The login name used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1249 <param name="publication">The publication name that has been enabled for anonymous merge subscriptions. </param>
1250 <param name="internetPassword">The password used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1251 <param name="subscriberConnectionString">The OLE DB connection string for the SQL Server Compact 3.5 database on the Windows Mobile-based device. </param>
1252 <param name="internetUrl">The URL used to connect to the SQL Server Compact 3.5 Server Agent. </param>
1253 <param name="publisher">The name of the Publisher. </param>
1254 <param name="publisherDatabase">The name of the publication database. </param>
1255 <param name="subscriber">The name of the Subscriber. </param>
1256 </member>
1257 <member name="M:System.Data.SqlServerCe.SqlCeReplication.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
1258 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object and sets the properties for connecting to a publication.</summary>
1259 <param name="internetLogin">The login name used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1260 <param name="publication">The publication name that has been enabled for anonymous merge subscriptions. </param>
1261 <param name="internetPassword">The password used when connecting to the SQL Server Compact 3.5 Server Agent. </param>
1262 <param name="publisherLogin">The login name used when connecting to the Publisher. </param>
1263 <param name="subscriberConnectionString">The OLE DB connection string for the SQL Server Compact 3.5 database on the Windows Mobile-based device. </param>
1264 <param name="internetUrl">The URL used to connect to the SQL Server Compact 3.5 Server Agent. </param>
1265 <param name="publisher">The name of the Publisher. </param>
1266 <param name="publisherPassword">The login password used when connecting to the Publisher. </param>
1267 <param name="publisherDatabase">The name of the publication database. </param>
1268 <param name="subscriber">The name of the Subscriber. </param>
1269 </member>
1270 <member name="M:System.Data.SqlServerCe.SqlCeReplication.AddSubscription(System.Data.SqlServerCe.AddOption)">
1271 <summary>Creates a new anonymous subscription to an existing SQL Server publication. After calling the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.AddSubscription(System.Data.SqlServerCe.AddOption)"></see> method, the application must call the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize"></see> method to synchronize the new subscription to the publication based on the latest snapshot.</summary>
1272 </member>
1273 <member name="M:System.Data.SqlServerCe.SqlCeReplication.BeginSynchronize(System.AsyncCallback,System.Object)">
1274 <summary>Starts an asynchronous data synchronization operation. When synchronization ends, the <see cref="T:System.AsyncCallback"></see> delegates are called. During synchronization, no status reporting is performed.</summary>
1275 <returns>The <see cref="T:System.IAsyncResult"></see> interface for the asynchronous operation that has been started by calling this function. You can use this interface for testing for completion, or waiting until synchronization ends.</returns>
1276 <param name="state">A user-defined object that is returned by the <see cref="P:System.IAsyncResult.AsyncState"></see> property.</param>
1277 <param name="onSyncCompletion">The <see cref="T:System.IAsyncResult"></see> delegates that are implemented by the caller and called at the end of synchronization.</param>
1278 </member>
1279 <member name="M:System.Data.SqlServerCe.SqlCeReplication.BeginSynchronize(System.AsyncCallback,System.Data.SqlServerCe.OnStartTableUpload,System.Data.SqlServerCe.OnStartTableDownload,System.Data.SqlServerCe.OnSynchronization,System.Object)">
1280 <summary>Starts an asynchronous data synchronization operation. When the synchronization ends, the <see cref="T:System.AsyncCallback"></see> delegates are called. During the synchronization, synchronization status reports are sent to the SyncStatusReport delegates.</summary>
1281 <returns>The <see cref="T:System.IAsyncResult"></see> interface for the asynchronous operation that has been started by calling this function. You can use this interface for testing for completion, or waiting until synchronization ends.</returns>
1282 <param name="onSynchronization">A user-defined delegate that consumes the ongoing synchronization events that are reported during the reconciler work.</param>
1283 <param name="state">A user-defined object that is returned by the <see cref="P:System.IAsyncResult.AsyncState"></see> property.</param>
1284 <param name="onStartTableUpload">A user-defined delegate to the event that fires at the start of uploading table changes to the server.</param>
1285 <param name="onSyncCompletion">The <see cref="T:System.AsyncCallback"></see> delegate that is implemented by the caller called at the end of synchronization.</param>
1286 <param name="onStartTableDownload">A user-defined delegate to the event that fires at the start of downloading table changes from the server.</param>
1287 </member>
1288 <member name="M:System.Data.SqlServerCe.SqlCeReplication.CancelSynchronize">
1289 <summary>Cancels an ongoing asynchronous data synchronization that was started by calling the <see cref="Overload:System.Data.SqlServerCe.SqlCeReplication.BeginSynchronize"></see> method. </summary>
1290 </member>
1291 <member name="M:System.Data.SqlServerCe.SqlCeReplication.Dispose">
1292 <summary>Releases all native resources.</summary>
1293 </member>
1294 <member name="M:System.Data.SqlServerCe.SqlCeReplication.DropSubscription(System.Data.SqlServerCe.DropOption)">
1295 <summary>Drops the subscription to a SQL Server publication and optionally deletes the SQL Server Compact 3.5 database from the Windows Mobile-based device.</summary>
1296 </member>
1297 <member name="M:System.Data.SqlServerCe.SqlCeReplication.EndSynchronize(System.IAsyncResult)">
1298 <summary>Ends an asynchronous data synchronization that was started by a call to the <see cref="Overload:System.Data.SqlServerCe.SqlCeReplication.BeginSynchronize"></see> method. </summary>
1299 <param name="ar">The <see cref="T:System.IAsyncResult"></see> interface returned by the <see cref="Overload:System.Data.SqlServerCe.SqlCeReplication.BeginSynchronize"></see> method.</param>
1300 </member>
1301 <member name="M:System.Data.SqlServerCe.SqlCeReplication.LoadProperties">
1302 <summary>Retrieves all values stored for the synchronization properties, and then populates the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> class properties with these saved values.</summary>
1303 </member>
1304 <member name="M:System.Data.SqlServerCe.SqlCeReplication.ReinitializeSubscription(System.Boolean)">
1305 <summary>Marks a subscription for reinitialization. After calling this method, an application must call the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize"></see> method to download the latest snapshot of the publication to the device.</summary>
1306 <param name="uploadBeforeReinitialize">If True, the changes in the subscription database are uploaded to the Publisher before the snapshot is applied at the Subscriber. The default is False. </param>
1307 </member>
1308 <member name="M:System.Data.SqlServerCe.SqlCeReplication.SaveProperties">
1309 <summary>Retrieves all of the values stored in the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> class properties for the current subscription and stores them in a system table.</summary>
1310 </member>
1311 <member name="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize">
1312 <summary>Invokes merge replication between the SQL Server Compact 3.5 subscription and the SQL Server Publisher.</summary>
1313 </member>
1314 <member name="P:System.Data.SqlServerCe.SqlCeReplication.CompressionLevel">
1315 <summary>Specifies the amount of compression that will be used by the compression routines during replication.</summary>
1316 <returns>The compression level.</returns>
1317 <param name="value">The compression level to use. Valid values are 0 to 6 (inclusive), with a setting of 0 representing no compression and a setting of 6 enabling maximum compression. The default value is 1.</param>
1318 </member>
1319 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ConnectionManager">
1320 <summary>Enables the Replication object to use the smart device's Connection Manager API to establish a network connection. The connection is released at the end of synchronization.</summary>
1321 <returns>True if the Connection Manager settings are used; otherwise, False.</returns>
1322 <param name="value">Set to true to use the Connection Manager settings; otherwise, false. The default value is false.</param>
1323 </member>
1324 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ConnectionRetryTimeout">
1325 <summary>Specifies how long (in seconds) the SQL Server Compact 3.5 client will continue to retry sending requests after an established connection has failed.</summary>
1326 <returns>The <see cref="P:System.Data.SqlServerCe.SqlCeReplication.ConnectionRetryTimeout"></see> value, with a default value of 120 seconds.</returns>
1327 <param name="value">The time, in seconds, during which the SQL Server Compact 3.5 client will continue to retry a failed synchronization. Valid values are 0 to 900 seconds, inclusive. The default value is 120 seconds.</param>
1328 </member>
1329 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ConnectTimeout">
1330 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object waits for a connection to the server.</summary>
1331 <returns>An <see cref="T:System:Int32"></see> value that represents the time-out, in milliseconds, with no default.</returns>
1332 </member>
1333 <member name="P:System.Data.SqlServerCe.SqlCeReplication.Distributor">
1334 <summary>Specifies the SQL Server Distributor.</summary>
1335 <returns>The name of the Distributor used by the Publisher.</returns>
1336 </member>
1337 <member name="P:System.Data.SqlServerCe.SqlCeReplication.DistributorAddress">
1338 <summary>Specifies the network address used when the SQL Server Reconciler is connecting to the Distributor.</summary>
1339 <returns>The network address used when connecting to the Distributor.</returns>
1340 </member>
1341 <member name="P:System.Data.SqlServerCe.SqlCeReplication.DistributorLogin">
1342 <summary>Specifies the login name used when connecting to the Distributor.</summary>
1343 <returns>The login name used when connecting to the Distributor.</returns>
1344 </member>
1345 <member name="P:System.Data.SqlServerCe.SqlCeReplication.DistributorNetwork">
1346 <summary>Specifies the network protocol used when the SQL Server Reconciler communicates with the Distributor.</summary>
1347 <returns>The <see cref="T:System.Data.SqlServerCe.NetworkType"></see> constant used by the SQL Server Reconciler to communicate with the Distributor.</returns>
1348 </member>
1349 <member name="P:System.Data.SqlServerCe.SqlCeReplication.DistributorPassword">
1350 <summary>Specifies the login password used when connecting to the Distributor.</summary>
1351 <returns>The password used when connecting to the Distributor.</returns>
1352 </member>
1353 <member name="P:System.Data.SqlServerCe.SqlCeReplication.DistributorSecurityMode">
1354 <summary>Specifies the security mode used when connecting to the Distributor.</summary>
1355 <returns>The <see cref="T:System.Data.SqlServerCe.SecurityType"></see> constant that specifies the mode of security enforced at the Distributor.</returns>
1356 </member>
1357 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ExchangeType">
1358 <summary>Specifies whether the synchronization between the Publisher and the Subscriber is bi-directional or upload only.</summary>
1359 <returns>The <see cref="P:System.Data.SqlServerCe.SqlCeReplication.ExchangeType"></see> constant that specifies whether data merges up to the Publisher only, or in both directions between the Publisher and the Subscriber.</returns>
1360 </member>
1361 <member name="P:System.Data.SqlServerCe.SqlCeReplication.HostName">
1362 <summary>Gets or sets the host name used for the device when connecting to the Publisher.</summary>
1363 <returns>The host name for the device. The default is no host name.</returns>
1364 </member>
1365 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetLogin">
1366 <summary>Specifies the login name used when connecting to the SQL Server Compact 3.5 Server Agent.</summary>
1367 <returns>The Internet Information Services (IIS) login name. The default is no login name.</returns>
1368 </member>
1369 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetPassword">
1370 <summary>Specifies the password used when connecting to the SQL Server Compact 3.5 Server Agent.</summary>
1371 <returns>The Internet Information Services (IIS) password string. The default is no password.</returns>
1372 </member>
1373 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetProxyLogin">
1374 <summary>Specifies the login name used when connecting to an <see cref="P:System.Data.SqlServerCe.SqlCeReplication.InternetProxyServer"></see> that requires authentication.</summary>
1375 <returns>The proxy server login name. The default is no login name.</returns>
1376 </member>
1377 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetProxyPassword">
1378 <summary>Specifies the password used when connecting to an <see cref="P:System.Data.SqlServerCe.SqlCeReplication.InternetProxyServer"></see> that requires authentication.</summary>
1379 <returns>The proxy server password string. The default is no password.</returns>
1380 </member>
1381 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetProxyServer">
1382 <summary>Specifies the proxy server to use when accessing the HTTP resource specified in the <see cref="P:System.Data.SqlServerCe.SqlCeReplication.InternetUrl"></see> property.</summary>
1383 <returns>The proxy server name (or IP address) and optionally the port number, in the following format: ProxyServerName:Port</returns>
1384 </member>
1385 <member name="P:System.Data.SqlServerCe.SqlCeReplication.InternetUrl">
1386 <summary>Specifies the URL used to connect to the SQL Server Compact 3.5 Server Agent.</summary>
1387 <returns>The URL string.</returns>
1388 </member>
1389 <member name="P:System.Data.SqlServerCe.SqlCeReplication.LoginTimeout">
1390 <summary>Specifies the maximum number of seconds to wait for connections to be established. This property affects the connection time between the computer running Internet Information Services (IIS) and the Publisher or Distributor. It does not control the connection time between the smart device and IIS.</summary>
1391 <returns>The number of seconds for connections to be established. The default is 15 seconds.</returns>
1392 </member>
1393 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ProfileName">
1394 <summary>Specifies the name of the agent profile at the Distributor to be used by the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object.</summary>
1395 <returns>The agent profile name.</returns>
1396 </member>
1397 <member name="P:System.Data.SqlServerCe.SqlCeReplication.Publication">
1398 <summary>Specifies the SQL Server publication name that has been enabled for SQL Server Compact 3.5 subscribers.</summary>
1399 <returns>The name of the Publication.</returns>
1400 </member>
1401 <member name="P:System.Data.SqlServerCe.SqlCeReplication.Publisher">
1402 <summary>Specifies the name of the SQL Server Publisher. The Publisher is the computer that is running SQL Server and that contains the publication.</summary>
1403 <returns>The name of the Publisher.</returns>
1404 </member>
1405 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherAddress">
1406 <summary>Specifies the network address used when connecting to the Publisher.</summary>
1407 <returns>The network address used when connecting to the Publisher.</returns>
1408 </member>
1409 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherChanges">
1410 <summary>Specifies the total number of Publisher changes applied at the Subscriber when the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize"></see> method was last called.</summary>
1411 <returns>The total number of Publisher rows that were inserted, updated, and deleted.</returns>
1412 </member>
1413 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherConflicts">
1414 <summary>Specifies the total number of conflicts that occurred at the Publisher when the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize"></see> method was last called.</summary>
1415 <returns>The number of conflicts that occurred.</returns>
1416 </member>
1417 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherDatabase">
1418 <summary>Specifies the name of the publication database.</summary>
1419 <returns>The name of the publication database.</returns>
1420 </member>
1421 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherLogin">
1422 <summary>Specifies the login name used when connecting to the Publisher.</summary>
1423 <returns>The Publisher login name.</returns>
1424 </member>
1425 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherNetwork">
1426 <summary>Specifies the network protocol used when the SQL Server Replication Provider communicates with the Publisher.</summary>
1427 <returns>The <see cref="T:System.Data.SqlServerCe.NetworkType"></see> constant that specifies the network protocol used.</returns>
1428 </member>
1429 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherPassword">
1430 <summary>Specifies the login password used when connecting to the Publisher.</summary>
1431 <returns>The login password. The default is no password (empty string).</returns>
1432 </member>
1433 <member name="P:System.Data.SqlServerCe.SqlCeReplication.PublisherSecurityMode">
1434 <summary>Specifies the security mode used when connecting to the Publisher.</summary>
1435 <returns>The <see cref="T:System.Data.SqlServerCe.SecurityType"></see> constant that specifies the security mode.</returns>
1436 </member>
1437 <member name="P:System.Data.SqlServerCe.SqlCeReplication.QueryTimeout">
1438 <summary>Specifies the number of seconds allowed for internal queries to complete.</summary>
1439 <returns>The number of seconds allowed for internal queries to be returned. The default is 300 seconds.</returns>
1440 </member>
1441 <member name="P:System.Data.SqlServerCe.SqlCeReplication.ReceiveTimeout">
1442 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object waits for the response to a server request.</summary>
1443 <returns>An <see cref="T:System:Int32"></see> value that represents the time-out, in milliseconds, with a default of 60 seconds.</returns>
1444 </member>
1445 <member name="P:System.Data.SqlServerCe.SqlCeReplication.SendTimeout">
1446 <summary>Gets or sets the amount of time, in milliseconds, that the <see cref="T:System.Data.SqlServerCe.SqlCeReplication"></see> object waits to send a request to the server.</summary>
1447 <returns>An <see cref="T:System.Int32"></see> value that represents the time-out, in milliseconds, with no default.</returns>
1448 </member>
1449 <member name="P:System.Data.SqlServerCe.SqlCeReplication.SnapshotTransferType">
1450 <summary>Controls how snapshot files are transferred from the Distributor to the computer running IIS. Snapshot files can be transferred using either the HTTP or the FTP protocol.</summary>
1451 <returns>The <see cref="P:System.Data.SqlServerCe.SqlCeReplication.SnapshotTransferType"></see> value.</returns>
1452 <param name="value">The <see cref="T:System.Data.SqlServerCe.SnapshotTransferType"></see> constant that specifies the type of data transfer to perform.</param>
1453 </member>
1454 <member name="P:System.Data.SqlServerCe.SqlCeReplication.Subscriber">
1455 <summary>Specifies the name of the Subscriber.</summary>
1456 <returns>The Subscriber name.</returns>
1457 </member>
1458 <member name="P:System.Data.SqlServerCe.SqlCeReplication.SubscriberChanges">
1459 <summary>Specifies the total number of Subscriber changes applied at the Publisher when the <see cref="M:System.Data.SqlServerCe.SqlCeReplication.Synchronize"></see> method was last called.</summary>
1460 <returns>The total number of Subscriber rows that were inserted, updated, and deleted.</returns>
1461 </member>
1462 <member name="P:System.Data.SqlServerCe.SqlCeReplication.SubscriberConflicts">
1463 <summary>This property is not used by SQL Server Compact 3.5.</summary>
1464 <param name="value">Always 0 because all conflicts are detected and logged on the SQL Server Publisher.</param>
1465 </member>
1466 <member name="P:System.Data.SqlServerCe.SqlCeReplication.SubscriberConnectionString">
1467 <summary>Specifies the connection string to the SQL Server Compact 3.5 database.</summary>
1468 <returns>The connection string to the SQL Server Compact 3.5 database.</returns>
1469 </member>
1470 <member name="P:System.Data.SqlServerCe.SqlCeReplication.Validate">
1471 <summary>Specifies the type of data validation SQL Server Compact 3.5 replication performs while synchronizing.</summary>
1472 <returns>The <see cref="T:System.Data.SqlServerCe.ValidateType"></see> constant that specifies the type of data validation to perform.</returns>
1473 </member>
1474 <member name="T:System.Data.SqlServerCe.SqlCeResultSet">
1475 <summary>An updateable, scrollable, and bindable cursor.</summary>
1476 </member>
1477 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.#ctor">
1478 <summary>Do not use. To create a <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>, you must call the <see cref="M:System.Data.Sql.ISqlExecutionContext.ExecuteResultSet(System.Data.ResultSetOptions)"></see> method of the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see>.</summary>
1479 </member>
1480 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.CreateRecord">
1481 <summary>Creates a new row on the server and returns a <see cref="T:System.Data.SqlServerCe.SqlCeUpdatableRecord"></see> object.</summary>
1482 <returns>A SqlCeUpdatableRecord with the metadata of the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> pre-populated.</returns>
1483 </member>
1484 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.Delete">
1485 <summary>Deletes the current record from the data source on the server.</summary>
1486 </member>
1487 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetBoolean(System.Int32)">
1488 <summary>Returns the value of the column at the specified index as a Boolean value.</summary>
1489 <returns>The value of the column at the specified index.</returns>
1490 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1491 </member>
1492 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetByte(System.Int32)">
1493 <summary>Returns the value of the column at the specified index as a byte.</summary>
1494 <returns>The value of the column at the specified index.</returns>
1495 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1496 </member>
1497 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
1498 <summary>Copies a length of bytes into the buffer, starting at a specified position in the specified field. </summary>
1499 <returns>The actual number of bytes copied to the buffer.</returns>
1500 <param name="ordinal">The ordinal position of the column from which retrieve data. </param>
1501 <param name="buffer">The buffer into which to copy the data.</param>
1502 <param name="dataIndex">The offset (in bytes) within the field from which to start copying data.</param>
1503 <param name="bufferIndex">The offset within the buffer from which to start the copy.</param>
1504 <param name="length">The maximum number of bytes to copy.</param>
1505 </member>
1506 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
1507 <summary>Copies a length of chars into the buffer, starting at a specified position in the specified field. </summary>
1508 <returns>The actual number of chars copied.</returns>
1509 <param name="ordinal">The ordinal position of the field from which to retrieve data.</param>
1510 <param name="buffer">The buffer into which to copy the data.</param>
1511 <param name="dataIndex">The offset (in chars) within the field from which to start copying.</param>
1512 <param name="bufferIndex">The offset within the buffer from which to start the copy.</param>
1513 <param name="length">The maximum number of bytes to copy.</param>
1514 </member>
1515 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetDateTime(System.Int32)">
1516 <summary>Returns the value of the column at the specified index as a DateTime.</summary>
1517 <returns>The value of the column at the specified index.</returns>
1518 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1519 </member>
1520 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetDecimal(System.Int32)">
1521 <summary>Returns the value of the column at the specified index as a Double.</summary>
1522 <returns>The value of the column at the specified index.</returns>
1523 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1524 </member>
1525 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetDouble(System.Int32)">
1526 <summary>Returns the value of the column at the specified index as a Double.</summary>
1527 <returns>The value of the column at the specified index.</returns>
1528 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1529 </member>
1530 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetEnumerator">
1531 <summary>Returns a <see cref="T:System.Collections.IEnumerator"></see> that can be used to iterate through the rows in the data reader.</summary>
1532 <returns>A <see cref="T:System.Collections.IEnumerator"></see>.</returns>
1533 </member>
1534 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetFloat(System.Int32)">
1535 <summary>Returns the value of the column at the specified index as a Float.</summary>
1536 <returns>The value of the column at the specified index.</returns>
1537 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1538 </member>
1539 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetGuid(System.Int32)">
1540 <summary>Returns the value of the column at the specified index as a GUID.</summary>
1541 <returns>The value of the column at the specified index.</returns>
1542 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1543 </member>
1544 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetInt16(System.Int32)">
1545 <summary>Returns the value of the column at the specified index as an Int16.</summary>
1546 <returns>The value of the column at the specified index.</returns>
1547 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1548 </member>
1549 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetInt32(System.Int32)">
1550 <summary>Returns the value of the column at the specified index as an Int32.</summary>
1551 <returns>The value of the column at the specified index.</returns>
1552 <param name="ordinal">TBD</param>
1553 </member>
1554 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetInt64(System.Int32)">
1555 <summary>Returns the value of the column at the specified index as an Int64.</summary>
1556 <returns>The value of the column at the specified index.</returns>
1557 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1558 </member>
1559 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetList">
1560 <summary>Returns an instance of <see cref="T:System.Data.SqlServerCe.ResultSetView"></see>.</summary>
1561 <returns>A <see cref="T:System.Data.SqlServerCe.ResultSetView"></see> object.</returns>
1562 </member>
1563 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlBinary(System.Int32)">
1564 <summary>Returns the value of the column at the specified index as type SqlBinary.</summary>
1565 <returns>The value of the column at the specified index.</returns>
1566 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1567 </member>
1568 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlBoolean(System.Int32)">
1569 <summary>Returns the value of the column at the specified index as type SqlBoolean.</summary>
1570 <returns>The value of the column at the specified index.</returns>
1571 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1572 </member>
1573 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlByte(System.Int32)">
1574 <summary>Returns the value of the column at the specified index as type SqlByte.</summary>
1575 <returns>The value of the column at the specified index.</returns>
1576 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1577 </member>
1578 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlDateTime(System.Int32)">
1579 <summary>Returns the value of the column at the specified index as type SqlDateTime.</summary>
1580 <returns>The value of the column at the specified index.</returns>
1581 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1582 </member>
1583 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlDecimal(System.Int32)">
1584 <summary>Returns the value of the column at the specified index as type SqlDecimal.</summary>
1585 <returns>The value of the column at the specified index.</returns>
1586 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1587 </member>
1588 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlDouble(System.Int32)">
1589 <summary>Returns the value of the column at the specified index as type SqlDouble.</summary>
1590 <returns>The value of the column at the specified index.</returns>
1591 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1592 </member>
1593 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlGuid(System.Int32)">
1594 <summary>Returns the value of the column at the specified index as type SqlGuid.</summary>
1595 <returns>The value of the column at the specified index.</returns>
1596 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1597 </member>
1598 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlInt16(System.Int32)">
1599 <summary>Returns the value of the column at the specified index as type SqlInt16.</summary>
1600 <returns>The value of the column at the specified index.</returns>
1601 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1602 </member>
1603 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlInt32(System.Int32)">
1604 <summary>Returns the value of the column at the specified index as type SqlInt32.</summary>
1605 <returns>The value of the column at the specified index.</returns>
1606 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1607 </member>
1608 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlInt64(System.Int32)">
1609 <summary>Returns the value of the column at the specified index as type SqlInt64.</summary>
1610 <returns>The value of the column at the specified index.</returns>
1611 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1612 </member>
1613 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlMetaData(System.Int32)">
1614 <summary>Returns the metadata information associated with the specified column.</summary>
1615 <returns>The metadata of the column at the specified index.</returns>
1616 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1617 </member>
1618 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlMoney(System.Int32)">
1619 <summary>Returns the value of the column at the specified index as type SqlMoney.</summary>
1620 <returns>The value of the column at the specified index.</returns>
1621 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1622 </member>
1623 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlSingle(System.Int32)">
1624 <summary>Returns the value of the column at the specified index as type SqlSingle.</summary>
1625 <returns>The value of the column at the specified index.</returns>
1626 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1627 </member>
1628 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetSqlString(System.Int32)">
1629 <summary>Returns the value of the column at the specified index as type SqlString.</summary>
1630 <returns>The value of the column at the specified index.</returns>
1631 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1632 </member>
1633 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetString(System.Int32)">
1634 <summary>Returns the value of the column at the specified index as type String.</summary>
1635 <returns>The value of the column at the specified index.</returns>
1636 <param name="ordinal">The ordinal position of the column from which to retrieve data.</param>
1637 </member>
1638 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetValue(System.Int32)">
1639 <summary>Returns the value of the specified field.</summary>
1640 <returns>The object that contains the value of the specified field.</returns>
1641 <param name="ordinal">The ordinal position of the column from which to retrieve the value.</param>
1642 </member>
1643 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.GetValues(System.Object[])">
1644 <summary>Retrieves an array of all of the fields for the specified record.</summary>
1645 <returns>The number of instances in the array.</returns>
1646 <param name="values">The array of type Object in which to store the values as they are returned.</param>
1647 </member>
1648 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.Insert(System.Data.SqlServerCe.SqlCeUpdatableRecord)">
1649 <summary>Inserts the specified <see cref="T:System.Data.SqlServerCe.SqlCeUpdatableRecord"></see> into the underlying rowset.</summary>
1650 <param name="record">The record to insert.</param>
1651 </member>
1652 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.Insert(System.Data.SqlServerCe.SqlCeUpdatableRecord,System.Data.SqlServerCe.DbInsertOptions)">
1653 <summary>Inserts the specified <see cref="T:System.Data.SqlServerCe.SqlCeUpdatableRecord"></see> into the underlying rowset and specifies how the cursor is positioned.</summary>
1654 <param name="record">The record to insert.</param>
1655 <param name="options">The <see cref="T:System.Data.SqlServerCe.DbInsertOptions"></see> option to specify how the cursor is positioned after the insert.</param>
1656 </member>
1657 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.IsDBNull(System.Int32)">
1658 <summary>Determines if the field at the specified ordinal position is null.</summary>
1659 <returns>True if the specified field is null; otherwise, false.</returns>
1660 <param name="ordinal">The ordinal position of the column from which to retrieve the value.</param>
1661 </member>
1662 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.IsSetAsDefault(System.Int32)">
1663 <summary>Determines if the field at the specified ordinal position is marked to use the underlying default value.</summary>
1664 <returns>True if the specified field is marked to use the underlying default value; otherwise, false.</returns>
1665 <param name="ordinal">The ordinal position of the column from which to retrieve the value.</param>
1666 </member>
1667 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.ReadAbsolute(System.Int32)">
1668 <summary>Moves the reader to a specific record in the ResultSet.</summary>
1669 <returns>True if the operation succeeded; otherwise, false.</returns>
1670 <param name="position">The position to which to move the reader.</param>
1671 </member>
1672 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.ReadFirst">
1673 <summary>Positions the reader at the first record in the ResultSet.</summary>
1674 <returns>True if the operation succeeded; otherwise, false.</returns>
1675 </member>
1676 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.ReadLast">
1677 <summary>Positions the reader at the last record in the ResultSet.</summary>
1678 <returns>True if the operation succeeded; otherwise, false.</returns>
1679 </member>
1680 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.ReadPrevious">
1681 <summary>Positions the reader at the record pervious to the current record.</summary>
1682 <returns>True if the operation succeeded; otherwise, false.</returns>
1683 </member>
1684 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.ReadRelative(System.Int32)">
1685 <summary>Moves the reader the specified amount from the current position.</summary>
1686 <returns>True if the operation succeeded; otherwise, false.</returns>
1687 <param name="position">The number of positions to move the reader.</param>
1688 </member>
1689 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetBoolean(System.Int32,System.Boolean)">
1690 <summary>Sets the value of the specified column to the passed-in Boolean value.</summary>
1691 <param name="ordinal">The ordinal position of the column to set.</param>
1692 <param name="value">The value to assign to the specified column.</param>
1693 </member>
1694 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetByte(System.Int32,System.Byte)">
1695 <summary>Sets the value of the specified column to the passed-in Byte value.</summary>
1696 <param name="ordinal">The ordinal position of the column to set.</param>
1697 <param name="value">The value to assign to the specified column.</param>
1698 </member>
1699 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
1700 <summary>Copies a length of bytes from the specified buffer to the specified column, starting at the specified location within that field.</summary>
1701 <param name="ordinal">The ordinal position of the column to set.</param>
1702 <param name="buffer">The buffer that contains the data to copy.</param>
1703 <param name="dataIndex">The location within the column to which to begin copying the data.</param>
1704 <param name="bufferIndex">The offset within the buffer from which to copy the data.</param>
1705 <param name="length">The maximum number of bytes to copy.</param>
1706 </member>
1707 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetChar(System.Int32,System.Char)">
1708 <summary>Sets the value of the specified column to the passed-in Char value.</summary>
1709 <param name="ordinal">The ordinal position of the column to set.</param>
1710 <param name="c">The value to assign to the specified column.</param>
1711 </member>
1712 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
1713 <summary>Copies a length of chars from the specified buffer to the specified column, starting at the specified location within that field.</summary>
1714 <param name="ordinal">The ordinal position of the column to set.</param>
1715 <param name="buffer">The buffer that contains the data to copy.</param>
1716 <param name="dataIndex">The location within the column to which to begin copying the data.</param>
1717 <param name="bufferIndex">The offset within the buffer from which to copy the data.</param>
1718 <param name="length">The maximum number of bytes to copy.</param>
1719 </member>
1720 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetDateTime(System.Int32,System.DateTime)">
1721 <summary>Sets the value of the specified column to the passed-in DateTime value.</summary>
1722 <param name="ordinal">The ordinal position of the column to set.</param>
1723 <param name="value">The value to assign to the specified column.</param>
1724 </member>
1725 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetDecimal(System.Int32,System.Decimal)">
1726 <summary>Sets the value of the specified column to the passed-in Decimal value.</summary>
1727 <param name="ordinal">The ordinal position of the column to set.</param>
1728 <param name="value">The value to assign to the specified column.</param>
1729 </member>
1730 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetDefault(System.Int32)">
1731 <summary>Sets the specified column to its default value.</summary>
1732 <param name="ordinal">The ordinal position of the column to set.</param>
1733 </member>
1734 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetDouble(System.Int32,System.Double)">
1735 <summary>Sets the value of the specified column to the passed-in Double value.</summary>
1736 <param name="ordinal">The ordinal position of the column to set.</param>
1737 <param name="value">The value to assign to the specified column.</param>
1738 </member>
1739 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetFloat(System.Int32,System.Single)">
1740 <summary>Sets the value of the specified column to the passed-in Float value.</summary>
1741 <param name="ordinal">The ordinal position of the column to set.</param>
1742 <param name="value">The value to assign to the specified column.</param>
1743 </member>
1744 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetGuid(System.Int32,System.Guid)">
1745 <summary>Sets the value of the specified column to the passed-in Guid value.</summary>
1746 <param name="ordinal">The ordinal position of the column to set.</param>
1747 <param name="value">The value to assign to the specified column.</param>
1748 </member>
1749 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetInt16(System.Int32,System.Int16)">
1750 <summary>Sets the value of the specified column to the passed-in Int16 value.</summary>
1751 <param name="ordinal">The ordinal position of the column to set.</param>
1752 <param name="value">The value to assign to the specified column.</param>
1753 </member>
1754 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetInt32(System.Int32,System.Int32)">
1755 <summary>Sets the value of the specified column to the passed-in Int32 value.</summary>
1756 <param name="ordinal">The ordinal position of the column to set.</param>
1757 <param name="value">The value to assign to the specified column.</param>
1758 </member>
1759 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetInt64(System.Int32,System.Int64)">
1760 <summary>Sets the value of the specified column to the passed-in Int64 value.</summary>
1761 <param name="ordinal">The ordinal position of the column to set.</param>
1762 <param name="value">The value to assign to the specified column.</param>
1763 </member>
1764 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetObjectRef(System.Int32,System.Object)">
1765 <summary>Binds an object to the column at the specified position.</summary>
1766 <param name="ordinal">The ordinal position of the column to set.</param>
1767 <param name="buffer">The value to assign to the specified column.</param>
1768 </member>
1769 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlBinary(System.Int32,System.Data.SqlTypes.SqlBinary)">
1770 <summary>Sets the value of the specified column to the passed-in SqlBinary value.</summary>
1771 <param name="ordinal">The ordinal position of the column to set.</param>
1772 <param name="value">The value to assign to the specified column.</param>
1773 </member>
1774 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlBoolean(System.Int32,System.Data.SqlTypes.SqlBoolean)">
1775 <summary>Sets the value of the specified column to the passed-in SqlBoolean value.</summary>
1776 <param name="ordinal">The ordinal position of the column to set.</param>
1777 <param name="value">The value to assign to the specified column.</param>
1778 </member>
1779 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlByte(System.Int32,System.Data.SqlTypes.SqlByte)">
1780 <summary>Sets the value of the specified column to the passed-in SqlByte value.</summary>
1781 <param name="ordinal">The ordinal position of the column to set.</param>
1782 <param name="value">The value to assign to the specified column.</param>
1783 </member>
1784 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlDateTime(System.Int32,System.Data.SqlTypes.SqlDateTime)">
1785 <summary>Sets the value of the specified column to the passed-in SqlDateTime value.</summary>
1786 <param name="ordinal">The ordinal position of the column to set.</param>
1787 <param name="value">The value to assign to the specified column.</param>
1788 </member>
1789 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlDecimal(System.Int32,System.Data.SqlTypes.SqlDecimal)">
1790 <summary>Sets the value of the specified column to the passed-in SqlDecimal value.</summary>
1791 <param name="ordinal">The ordinal position of the column to set.</param>
1792 <param name="value">The value to assign to the specified column.</param>
1793 </member>
1794 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlDouble(System.Int32,System.Data.SqlTypes.SqlDouble)">
1795 <summary>Sets the value of the specified column to the passed-in SqlDouble value.</summary>
1796 <param name="ordinal">The ordinal position of the column to set.</param>
1797 <param name="value">The value to assign to the specified column.</param>
1798 </member>
1799 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlGuid(System.Int32,System.Data.SqlTypes.SqlGuid)">
1800 <summary>Sets the value of the specified column to the passed-in SqlGuid value.</summary>
1801 <param name="ordinal">The ordinal position of the column to set.</param>
1802 <param name="value">The value to assign to the specified column.</param>
1803 </member>
1804 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlInt16(System.Int32,System.Data.SqlTypes.SqlInt16)">
1805 <summary>Sets the value of the specified column to the passed-in SqlInt16 value.</summary>
1806 <param name="ordinal">The ordinal position of the column to set.</param>
1807 <param name="value">The value to assign to the specified column.</param>
1808 </member>
1809 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlInt32(System.Int32,System.Data.SqlTypes.SqlInt32)">
1810 <summary>Sets the value of the specified column to the passed-in SqlInt32 value.</summary>
1811 <param name="ordinal">The ordinal position of the column to set.</param>
1812 <param name="value">The value to assign to the specified column.</param>
1813 </member>
1814 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlInt64(System.Int32,System.Data.SqlTypes.SqlInt64)">
1815 <summary>Sets the value of the specified column to the passed-in SqlInt64 value.</summary>
1816 <param name="ordinal">The ordinal position of the column to set.</param>
1817 <param name="value">The value to assign to the specified column.</param>
1818 </member>
1819 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlMoney(System.Int32,System.Data.SqlTypes.SqlMoney)">
1820 <summary>Sets the value of the specified column to the passed-in SqlMoney value.</summary>
1821 <param name="ordinal">The ordinal position of the column to set.</param>
1822 <param name="value">The value to assign to the specified column.</param>
1823 </member>
1824 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlSingle(System.Int32,System.Data.SqlTypes.SqlSingle)">
1825 <summary>Sets the value of the specified column to the passed-in SqlSingle value.</summary>
1826 <param name="ordinal">The ordinal position of the column to set.</param>
1827 <param name="value">The value to assign to the specified column.</param>
1828 </member>
1829 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetSqlString(System.Int32,System.Data.SqlTypes.SqlString)">
1830 <summary>Sets the value of the specified column to the passed-in SqlString value.</summary>
1831 <param name="ordinal">The ordinal position of the column to set.</param>
1832 <param name="value">The value to assign to the specified column.</param>
1833 </member>
1834 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetString(System.Int32,System.String)">
1835 <summary>Sets the value of the specified column to the passed-in String value.</summary>
1836 <param name="ordinal">The ordinal position of the column to set.</param>
1837 <param name="value">The value to assign to the specified column.</param>
1838 </member>
1839 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetValue(System.Int32,System.Object)">
1840 <summary>Sets the value of the specified column to the passed-in value.</summary>
1841 <param name="ordinal">The ordinal position of the column to set.</param>
1842 <param name="value">The value to assign to the specified column.</param>
1843 </member>
1844 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.SetValues(System.Object[])">
1845 <summary>Sets each of the fields in the specified record to the corresponding value in the specified array.</summary>
1846 <returns>The number of values copied from the array.</returns>
1847 <param name="values">The array that contains the values to set.</param>
1848 </member>
1849 <member name="M:System.Data.SqlServerCe.SqlCeResultSet.Update">
1850 <summary>Sends changes from the current record to the underlying row on the server.</summary>
1851 </member>
1852 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.Item(System.Int32)">
1853 <summary>Serves as an indexer for the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</summary>
1854 <returns>The record at the specified index.</returns>
1855 <param name="index">The position of the item in the ResultSet.</param>
1856 </member>
1857 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.Item(System.String)">
1858 <summary>Serves as an indexer for the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</summary>
1859 <returns>The record that matches the specified name.</returns>
1860 <param name="name">The name of the record in the ResultSet.</param>
1861 </member>
1862 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.ResultSetView">
1863 <summary>Used when data binding a <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> to a control.</summary>
1864 <returns>A <see cref="T:System.Data.SqlServerCe.ResultSetView"></see>.</returns>
1865 </member>
1866 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.Scrollable">
1867 <summary>Determines whether the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> is scrollable.</summary>
1868 <returns>True if the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> is scrollable; otherwise, false.</returns>
1869 </member>
1870 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.Sensitivity">
1871 <summary>Determines the sensitivity of the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</summary>
1872 <returns>The <see cref="T:System.Data.SqlServerCe.ResultSetSensitivity"></see> for the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see>.</returns>
1873 </member>
1874 <member name="P:System.Data.SqlServerCe.SqlCeResultSet.Updatable">
1875 <summary>Determines whether values within the <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> can be modified.</summary>
1876 <returns>True if the values in the record can be modified; otherwise, false;</returns>
1877 </member>
1878 <member name="T:System.Data.SqlServerCe.SqlCeRowUpdatedEventArgs">
1879 <summary>Provides data for the <see cref="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdated"></see> event. </summary>
1880 </member>
1881 <member name="M:System.Data.SqlServerCe.SqlCeRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
1882 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRowUpdatedEventArgs"></see> class.</summary>
1883 <param name="statementType">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query executed. </param>
1884 <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
1885 <param name="command">The <see cref="T:System.Data.IDbCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called. </param>
1886 <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
1887 </member>
1888 <member name="P:System.Data.SqlServerCe.SqlCeRowUpdatedEventArgs.Command">
1889 <summary>Gets the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</summary>
1890 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</returns>
1891 </member>
1892 <member name="T:System.Data.SqlServerCe.SqlCeRowUpdatedEventHandler">
1893 <summary>Represents the method that will handle the <see cref="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdated"></see> event of a <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>.</summary>
1894 </member>
1895 <member name="T:System.Data.SqlServerCe.SqlCeRowUpdatingEventArgs">
1896 <summary>Provides data for the <see cref="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdating"></see> event.</summary>
1897 </member>
1898 <member name="M:System.Data.SqlServerCe.SqlCeRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
1899 <summary>Initializes a new instance of the <see cref="T:System.Data.SqlServerCe.SqlCeRowUpdatingEventArgs"></see> class.</summary>
1900 <param name="statementType">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query executed. </param>
1901 <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
1902 <param name="command">The <see cref="T:System.Data.IDbCommand"></see> to execute during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
1903 <param name="dataRow">The <see cref="T:System.Data.DataRow"></see> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
1904 </member>
1905 <member name="P:System.Data.SqlServerCe.SqlCeRowUpdatingEventArgs.Command">
1906 <summary>Gets or sets the <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> to execute when performing an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
1907 <returns>The <see cref="T:System.Data.SqlServerCe.SqlCeCommand"></see> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
1908 </member>
1909 <member name="T:System.Data.SqlServerCe.SqlCeRowUpdatingEventHandler">
1910 <summary>Represents the method that handles the <see cref="E:System.Data.SqlServerCe.SqlCeDataAdapter.RowUpdating"></see> event of a <see cref="T:System.Data.SqlServerCe.SqlCeDataAdapter"></see>.</summary>
1911 </member>
1912 <member name="T:System.Data.SqlServerCe.SqlCeTransaction">
1913 <summary>Represents an SQL transaction to be made at a data source. This class cannot be inherited.</summary>
1914 </member>
1915 <member name="M:System.Data.SqlServerCe.SqlCeTransaction.Commit">
1916 <summary>Commits the database transaction.</summary>
1917 </member>
1918 <member name="M:System.Data.SqlServerCe.SqlCeTransaction.Commit(System.Data.SqlServerCe.CommitMode)">
1919 <summary>Commits the database transaction using the specified <see cref="T:System.Data.SqlServerCe.CommitMode"></see>.</summary>
1920 </member>
1921 <member name="M:System.Data.SqlServerCe.SqlCeTransaction.Dispose">
1922 <summary>Releases all <see cref="T:System.Data.SqlServerCe.SqlCeConnection"></see> objects associated with the transaction.</summary>
1923 </member>
1924 <member name="M:System.Data.SqlServerCe.SqlCeTransaction.Rollback">
1925 <summary>Rolls back a transaction from a pending state.</summary>
1926 </member>
1927 <member name="P:System.Data.SqlServerCe.SqlCeTransaction.IsolationLevel">
1928 <summary>Specifies the <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</summary>
1929 <returns>The <see cref="T:System.Data.IsolationLevel"></see> for this transaction. The .NET Compact Framework Data Provider for SQL Server Compact 3.5 supports the ReadCommitted, Serializable, and ReadRepeatable isolation levels.</returns>
1930 </member>
1931 <member name="T:System.Data.SqlServerCe.SqlCeTransactionInProgressException">
1932 <summary>Occurs when an attempt is made to modify a database while another transaction is in progress.</summary>
1933 </member>
1934 <member name="T:System.Data.SqlServerCe.SqlCeUpdatableRecord">
1935 <summary>Represents a row of updatable values from the data source. A <see cref="T:System.Data.SqlServerCe.SqlCeResultSet"></see> object contains one or more UpdatableRecords.</summary>
1936 </member>
1937 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetBoolean(System.Int32)">
1938 <summary>Returns the value of the specified field as bool.</summary>
1939 <param name="ordinal">The field from which to retrieve a value.</param>
1940 </member>
1941 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetByte(System.Int32)">
1942 <summary>Returns the value of the specified field as byte.</summary>
1943 <param name="ordinal">The field from which to retrieve a value.</param>
1944 </member>
1945 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
1946 <summary>Copies a length of bytes into the buffer, starting at a specified position in the specified field. </summary>
1947 <param name="ordinal">The ordinal position of the column from which to retrieve data. </param>
1948 <param name="buffer">The buffer into which to copy the data.</param>
1949 <param name="dataIndex">The offset (in bytes) within the field from which to start copying data.</param>
1950 <param name="bufferIndex">The offset within the buffer from which to start the copy.</param>
1951 <param name="length">The maximum number of bytes to copy.</param>
1952 </member>
1953 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetChar(System.Int32)">
1954 <summary>Returns the value of the specified field as char.</summary>
1955 <param name="ordinal">The field from which to retrieve a value.</param>
1956 </member>
1957 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
1958 <summary>Copies a length of chars into the buffer, starting at a specified position in the specified field. </summary>
1959 <param name="ordinal">The ordinal position of the field from which to retrieve data.</param>
1960 <param name="buffer">The buffer into which to copy the data.</param>
1961 <param name="dataIndex">The offset (in chars) within the field from which to start copying.</param>
1962 <param name="bufferIndex">The offset within the buffer from which to start the copy.</param>
1963 <param name="length">The maximum number of bytes to copy.</param>
1964 </member>
1965 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetData(System.Int32)">
1966 <summary>Returns a <see cref="T:System.Data.SqlServerCe.SqlCeDataReader"></see> positioned on the current record.</summary>
1967 <param name="ordinal">The field from which to retrieve a value.</param>
1968 </member>
1969 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetDataTypeName(System.Int32)">
1970 <summary>Returns the datatype name for the specified field.</summary>
1971 <param name="ordinal">The field from which to retrieve a value.</param>
1972 </member>
1973 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetDateTime(System.Int32)">
1974 <summary>Returns the value of the specified field as DateTime.</summary>
1975 <param name="ordinal">The field from which to retrieve a value.</param>
1976 </member>
1977 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetDecimal(System.Int32)">
1978 <summary>Returns the value of the specified field as decimal.</summary>
1979 <param name="ordinal">The field from which to retrieve a value.</param>
1980 </member>
1981 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetDouble(System.Int32)">
1982 <summary>Returns the value of the specified field as double.</summary>
1983 <param name="ordinal">The field from which to retrieve a value.</param>
1984 </member>
1985 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetFieldType(System.Int32)">
1986 <summary>Returns the CLR datatype for the specified field.</summary>
1987 <returns>The CLR datatype for the field.</returns>
1988 <param name="ordinal">The field from which to retrieve a value.</param>
1989 </member>
1990 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetFloat(System.Int32)">
1991 <summary>Returns the value of the specified field as float.</summary>
1992 <param name="ordinal">The field from which to retrieve a value.</param>
1993 </member>
1994 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetGuid(System.Int32)">
1995 <summary>Returns the value of the specified field as a GUID.</summary>
1996 <param name="ordinal">The field from which to retrieve a value.</param>
1997 </member>
1998 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetInt16(System.Int32)">
1999 <summary>Returns the value of the specified field as int16.</summary>
2000 <param name="ordinal">The field from which to retrieve a value.</param>
2001 </member>
2002 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetInt32(System.Int32)">
2003 <summary>Returns the value of the specified field as int32.</summary>
2004 <param name="ordinal">The field from which to retrieve a value.</param>
2005 </member>
2006 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetInt64(System.Int32)">
2007 <summary>Returns the value of the specified field as int64.</summary>
2008 <param name="ordinal">The field from which to retrieve a value.</param>
2009 </member>
2010 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetName(System.Int32)">
2011 <summary>Returns the name of the specified field.</summary>
2012 <param name="ordinal">The field from which to retrieve a value.</param>
2013 </member>
2014 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetOrdinal(System.String)">
2015 <summary>Returns the ordinal for the field specified in the passed-in name.</summary>
2016 <param name="name">The name of the field from which to determine the ordinal.</param>
2017 </member>
2018 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlBinary(System.Int32)">
2019 <summary>Returns the value of the specified field as SqlBinary.</summary>
2020 <param name="ordinal">The field from which to retrieve a value.</param>
2021 </member>
2022 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlBoolean(System.Int32)">
2023 <summary>Returns the value of the specified field as SqlBoolean.</summary>
2024 <param name="ordinal">The field from which to retrieve a value.</param>
2025 </member>
2026 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlByte(System.Int32)">
2027 <summary>Returns the value of the specified field as SqlByte.</summary>
2028 <param name="ordinal">The field from which to retrieve a value.</param>
2029 </member>
2030 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlBytesRef(System.Int32)">
2031 <summary>Returns a reference to the SqlBytes instance that contains the value of the specified field.</summary>
2032 <returns>A reference to a SqlBytes instance.</returns>
2033 <param name="ordinal">The field from which to retrieve a value.</param>
2034 </member>
2035 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlCharsRef(System.Int32)">
2036 <summary>Returns a reference to the SqlChars instance that contains the value of the specified field.</summary>
2037 <returns>A reference to a SqlChars instance.</returns>
2038 <param name="ordinal">The field from which to retrieve a value.</param>
2039 </member>
2040 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlDateTime(System.Int32)">
2041 <summary>Returns the value of the specified field as SqlDateTime.</summary>
2042 <param name="ordinal">The field from which to retrieve a value.</param>
2043 </member>
2044 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlDecimal(System.Int32)">
2045 <summary>Returns the value of the specified field as SqlDecimal.</summary>
2046 <param name="ordinal">The field from which to retrieve a value.</param>
2047 </member>
2048 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlDouble(System.Int32)">
2049 <summary>Returns the value of the specified field as SqlDouble.</summary>
2050 <param name="ordinal">The field from which to retrieve a value.</param>
2051 </member>
2052 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlGuid(System.Int32)">
2053 <summary>Returns the value of the specified field as SqlGuid.</summary>
2054 <param name="ordinal">The field from which to retrieve a value.</param>
2055 </member>
2056 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlInt16(System.Int32)">
2057 <summary>Returns the value of the specified field as SqlInt16.</summary>
2058 <param name="ordinal">The field from which to retrieve a value.</param>
2059 </member>
2060 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlInt32(System.Int32)">
2061 <summary>Returns the value of the specified field as SqlInt32.</summary>
2062 <param name="ordinal">The field from which to retrieve a value.</param>
2063 </member>
2064 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlInt64(System.Int32)">
2065 <summary>Returns the value of the specified field as SqlInt64.</summary>
2066 <param name="ordinal">The field from which to retrieve a value.</param>
2067 </member>
2068 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlMetaData(System.Int32)">
2069 <summary>Returns the value of the specified field as SqlMetaData.</summary>
2070 <param name="ordinal">The field from which to retrieve a value.</param>
2071 </member>
2072 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlMoney(System.Int32)">
2073 <summary>Returns the value of the specified field as SqlMoney.</summary>
2074 <param name="ordinal">The field from which to retrieve a value.</param>
2075 </member>
2076 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlSingle(System.Int32)">
2077 <summary>Returns the value of the specified field as SqlSingle.</summary>
2078 <param name="ordinal">The field from which to retrieve a value.</param>
2079 </member>
2080 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetSqlString(System.Int32)">
2081 <summary>Returns the value of the specified field as SqlString.</summary>
2082 <param name="ordinal">The field from which to retrieve a value.</param>
2083 </member>
2084 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetString(System.Int32)">
2085 <summary>Returns the value of the specified field as string.</summary>
2086 <param name="ordinal">The field from which to retrieve a value.</param>
2087 </member>
2088 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetValue(System.Int32)">
2089 <summary>Returns the value of the specified record.</summary>
2090 <param name="ordinal">The field from which to retrieve a value.</param>
2091 </member>
2092 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.GetValues(System.Object[])">
2093 <summary>Returns the values for all of the fields in a record.</summary>
2094 <param name="values">The array in which to store the returned values.</param>
2095 </member>
2096 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.IsDBNull(System.Int32)">
2097 <summary>Determines if the specified field is NULL.</summary>
2098 <returns>True if the field is NULL; otherwise, false.</returns>
2099 <param name="ordinal">The field to check.</param>
2100 </member>
2101 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.IsSetAsDefault(System.Int32)">
2102 <summary>Determines if the specified field is marked to use the underlying default value.</summary>
2103 <returns>True if the field is marked to use the default value; otherwise, false.</returns>
2104 <param name="ordinal">The field to check.</param>
2105 </member>
2106 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetBoolean(System.Int32,System.Boolean)">
2107 <summary>Sets the column at the specified index to the passed-in bool value.</summary>
2108 <param name="ordinal">The field in which to set the value.</param>
2109 <param name="value">The value to set.</param>
2110 </member>
2111 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetByte(System.Int32,System.Byte)">
2112 <summary>Sets the column at the specified index to the passed-in byte value.</summary>
2113 <param name="ordinal">The field in which to set the value.</param>
2114 <param name="value">The value to set.</param>
2115 </member>
2116 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
2117 <summary>Copies a length of bytes from the specified buffer to the specified column, starting at the specified location within that field.</summary>
2118 <param name="ordinal">The ordinal position of the column to set.</param>
2119 <param name="buffer">The buffer that contains the data to copy.</param>
2120 <param name="dataIndex">The location within the column to which to begin copying the data.</param>
2121 <param name="bufferIndex">The offset within the buffer from which to copy the data.</param>
2122 <param name="length">The maximum number of bytes to copy.</param>
2123 </member>
2124 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetChar(System.Int32,System.Char)">
2125 <summary>Sets the column at the specified index to the passed-in char value.</summary>
2126 <param name="ordinal">The field in which to set the value.</param>
2127 <param name="value">The value to set.</param>
2128 </member>
2129 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
2130 <summary>Copies a length of chars from the specified buffer to the specified field, starting at the specified location within that field.</summary>
2131 <param name="ordinal">The ordinal position of the column to set.</param>
2132 <param name="buffer">The buffer that contains the data to copy.</param>
2133 <param name="dataIndex">The location within the column to which to begin copying the data.</param>
2134 <param name="bufferIndex">The offset within the buffer from which to copy the data.</param>
2135 <param name="length">The maximum number of bytes to copy.</param>
2136 </member>
2137 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetDateTime(System.Int32,System.DateTime)">
2138 <summary>Sets the column at the specified index to the passed-in DateTime value.</summary>
2139 <param name="ordinal">The field in which to set the value.</param>
2140 <param name="value">The value to set.</param>
2141 </member>
2142 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetDecimal(System.Int32,System.Decimal)">
2143 <summary>Sets the column at the specified index to the passed-in decimal value.</summary>
2144 <param name="ordinal">The field in which to set the value.</param>
2145 <param name="value">The value to set.</param>
2146 </member>
2147 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetDefault(System.Int32)">
2148 <summary>Sets the default value for the specified field.</summary>
2149 <param name="ordinal">The field to set.</param>
2150 </member>
2151 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetDouble(System.Int32,System.Double)">
2152 <summary>Sets the column at the specified index to the passed-in double value.</summary>
2153 <param name="ordinal">The field in which to set the value.</param>
2154 <param name="value">The value to set.</param>
2155 </member>
2156 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetFloat(System.Int32,System.Single)">
2157 <summary>Sets the column at the specified index to the passed-in float value.</summary>
2158 <param name="ordinal">The field in which to set the value.</param>
2159 <param name="value">The value to set.</param>
2160 </member>
2161 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetGuid(System.Int32,System.Guid)">
2162 <summary>Sets the column at the specified index to the passed-in GUID value.</summary>
2163 <param name="ordinal">The field in which to set the value.</param>
2164 <param name="value">The value to set.</param>
2165 </member>
2166 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetInt16(System.Int32,System.Int16)">
2167 <summary>Sets the column at the specified index to the passed-in int16 value.</summary>
2168 <param name="ordinal">The field in which to set the value.</param>
2169 <param name="value">The value to set.</param>
2170 </member>
2171 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetInt32(System.Int32,System.Int32)">
2172 <summary>Sets the column at the specified index to the passed-in int32 value.</summary>
2173 <param name="ordinal">The field in which to set the value.</param>
2174 <param name="value">The value to set.</param>
2175 </member>
2176 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetInt64(System.Int32,System.Int64)">
2177 <summary>Sets the column at the specified index to the passed-in int64 value.</summary>
2178 <param name="ordinal">The field in which to set the value.</param>
2179 <param name="value">The value to set.</param>
2180 </member>
2181 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetObjectRef(System.Int32,System.Object)">
2182 <summary>Sets the value of the specified field by reference rather than by-value.</summary>
2183 <param name="ordinal">The field in which to set the value.</param>
2184 <param name="value">The value to set.</param>
2185 </member>
2186 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlBinary(System.Int32,System.Data.SqlTypes.SqlBinary)">
2187 <summary>Sets the column at the specified index to the passed-in SqlBinary value.</summary>
2188 <param name="ordinal">The field in which to set the value.</param>
2189 <param name="value">The value to set.</param>
2190 </member>
2191 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlBoolean(System.Int32,System.Data.SqlTypes.SqlBoolean)">
2192 <summary>Sets the column at the specified index to the passed-in SqlBool value.</summary>
2193 <param name="ordinal">The field in which to set the value.</param>
2194 <param name="value">The value to set.</param>
2195 </member>
2196 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlByte(System.Int32,System.Data.SqlTypes.SqlByte)">
2197 <summary>Sets the column at the specified index to the passed-in SqlByte value.</summary>
2198 <param name="ordinal">The field in which to set the value.</param>
2199 <param name="value">The value to set.</param>
2200 </member>
2201 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlDateTime(System.Int32,System.Data.SqlTypes.SqlDateTime)">
2202 <summary>Sets the column at the specified index to the passed-in SqlDateTime value.</summary>
2203 <param name="ordinal">The field in which to set the value.</param>
2204 <param name="value">The value to set.</param>
2205 </member>
2206 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlDecimal(System.Int32,System.Data.SqlTypes.SqlDecimal)">
2207 <summary>Sets the column at the specified index to the passed-in SqlDecimal value.</summary>
2208 <param name="ordinal">The field in which to set the value.</param>
2209 <param name="value">The value to set.</param>
2210 </member>
2211 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlDouble(System.Int32,System.Data.SqlTypes.SqlDouble)">
2212 <summary>Sets the column at the specified index to the passed-in SqlDouble value.</summary>
2213 <param name="ordinal">The field in which to set the value.</param>
2214 <param name="value">The value to set.</param>
2215 </member>
2216 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlGuid(System.Int32,System.Data.SqlTypes.SqlGuid)">
2217 <summary>Sets the column at the specified index to the passed-in SqlGuid value.</summary>
2218 <param name="ordinal">The field in which to set the value.</param>
2219 <param name="value">The value to set.</param>
2220 </member>
2221 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlInt16(System.Int32,System.Data.SqlTypes.SqlInt16)">
2222 <summary>Sets the column at the specified index to the passed-in SqlInt16 value.</summary>
2223 <param name="ordinal">The field in which to set the value.</param>
2224 <param name="value">The value to set.</param>
2225 </member>
2226 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlInt32(System.Int32,System.Data.SqlTypes.SqlInt32)">
2227 <summary>Sets the column at the specified index to the passed-in SqlInt32 value.</summary>
2228 <param name="ordinal">The field in which to set the value.</param>
2229 <param name="value">The value to set.</param>
2230 </member>
2231 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlInt64(System.Int32,System.Data.SqlTypes.SqlInt64)">
2232 <summary>Sets the column at the specified index to the passed-in SqlInt64 value.</summary>
2233 <param name="ordinal">The field in which to set the value.</param>
2234 <param name="value">The value to set.</param>
2235 </member>
2236 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlMoney(System.Int32,System.Data.SqlTypes.SqlMoney)">
2237 <summary>Sets the column at the specified index to the passed-in SqlMoney value.</summary>
2238 <param name="ordinal">The field in which to set the value.</param>
2239 <param name="value">The value to set.</param>
2240 </member>
2241 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlSingle(System.Int32,System.Data.SqlTypes.SqlSingle)">
2242 <summary>Sets the column at the specified index to the passed-in SqlSingle value.</summary>
2243 <param name="ordinal">The field in which to set the value.</param>
2244 <param name="value">The value to set.</param>
2245 </member>
2246 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetSqlString(System.Int32,System.Data.SqlTypes.SqlString)">
2247 <summary>Sets the column at the specified index to the passed-in SqlString value.</summary>
2248 <param name="ordinal">The field in which to set the value.</param>
2249 <param name="value">The value to set.</param>
2250 </member>
2251 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetString(System.Int32,System.String)">
2252 <summary>Sets the column at the specified index to the passed-in string value.</summary>
2253 <param name="ordinal">The field in which to set the value.</param>
2254 <param name="value">The value to set.</param>
2255 </member>
2256 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetValue(System.Int32,System.Object)">
2257 <summary>Sets the column at the specified index to the passed-in value.</summary>
2258 <param name="ordinal">The field in which to set the value.</param>
2259 <param name="value">The value to set.</param>
2260 </member>
2261 <member name="M:System.Data.SqlServerCe.SqlCeUpdatableRecord.SetValues(System.Object[])">
2262 <summary>Sets each of the fields in the record to the corresponding value in the passed-in array.</summary>
2263 <param name="values">The values to set, in the order in which the fields appear in the record.</param>
2264 </member>
2265 <member name="P:System.Data.SqlServerCe.SqlCeUpdatableRecord.FieldCount">
2266 <summary>Returns the number of fields in the specified record.</summary>
2267 <returns>The number of fields in the record.</returns>
2268 </member>
2269 <member name="P:System.Data.SqlServerCe.SqlCeUpdatableRecord.HiddenFieldCount">
2270 <summary>Returns the number of hidden fields in the record. In SQL Server Compact 3.5, this property always returns 0.</summary>
2271 <returns>Always returns a value of 0.</returns>
2272 </member>
2273 <member name="P:System.Data.SqlServerCe.SqlCeUpdatableRecord.Item(System.Int32)">
2274 <summary>Serves as an indexer to a specific field within the record.</summary>
2275 <param name="ordinal">The ordinal of the field (column) within the record.</param>
2276 </member>
2277 <member name="P:System.Data.SqlServerCe.SqlCeUpdatableRecord.Item(System.String)">
2278 <summary>Serves as an indexer to a specific field within the record.</summary>
2279 <param name="name">The name of the field (column) in the record.</param>
2280 </member>
2281 <member name="P:System.Data.SqlServerCe.SqlCeUpdatableRecord.Updatable">
2282 <summary>Specifies whether the field is updatable.</summary>
2283 <returns>True if the field is updatable; otherwise, false.</returns>
2284 </member>
2285 <member name="T:System.Data.SqlServerCe.SqlMetaData">
2286 <summary>Specifies and retrieves metadata information from parameters and columns retrieved from a database. This class cannot be inherited.</summary>
2287 </member>
2288 <member name="T:System.Data.SqlServerCe.ValidateType">
2289 <summary>Specifies the type of data validation to perform.</summary>
2290 </member>
2291 <member name="F:System.Data.SqlServerCe.ValidateType.NoValidation">
2292 <summary>Specifies that validation will not be performed. This is the default setting.</summary>
2293 </member>
2294 <member name="F:System.Data.SqlServerCe.ValidateType.RowCountOnly">
2295 <summary>Specifies that a row count comparison will be performed on the published data.</summary>
2296 </member>
2297 </members>
2298</doc>