You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<paramname="manager">A serialization manager interface that is used during the deserialization process.</param>
172
+
<paramname="name">An optional name to give the expression. If the expression results in the creation of an object, the object is given this name for subsequent searches through the serialization manager. If this is a null reference (Nothing in Visual Basic), no name will be given.</param>
173
+
<paramname="expression">The CodeDOM expression to deserialize.</param>
174
+
<summary>Deserializes the specified expression.</summary>
175
+
<returns>An object resulting from interpretation of <paramrefname="expression" />.</returns>
<paramname="manager">The serialization manager to use during serialization.</param>
549
+
<paramname="statements">A collection of statements to use during serialization. The resource serializer uses this to write resource creation statements, but will not have individual property assign statements because all the properties are serialized to a resource.</param>
550
+
<paramname="value">The object to deserialize properties for.</param>
551
+
<paramname="filter">An optional filter to apply to the properties.</param>
552
+
<summary>Serializes the specified properties to resources.</summary>
<paramname="manager">The serialization manager to use during serialization.</param>
642
+
<paramname="value">The object to serialize.</param>
643
+
<summary>Serializes the specified value to a CodeDOM expression.</summary>
644
+
<returns>The serialized value. This returns a null reference (Nothing in Visual Basic) if there is no serializer for the specified value, or if the serializer for that value did not return a <seecref="T:System.CodeDom.CodeExpression"/>.</returns>
Copy file name to clipboardExpand all lines: xml/System.Data.Odbc/OdbcCommand.xml
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1186,9 +1186,10 @@ SELECT * FROM Customers WHERE CustomerID = ?
1186
1186
</ReturnValue>
1187
1187
<Parameters />
1188
1188
<Docs>
1189
-
<summary>To be added.</summary>
1190
-
<returns>To be added.</returns>
1189
+
<summary>Executes the <seecref="P:System.Data.IDbCommand.CommandText" /> against the <seecref="P:System.Data.IDbCommand.Connection" /> and builds an <seecref="T:System.Data.IDataReader" />.</summary>
<paramname="behavior">A bitwise combination of the enumeration values that specifies the command behavior.</param>
1220
+
<summary>Executes the <seecref="P:System.Data.IDbCommand.CommandText" /> against the <seecref="P:System.Data.IDbCommand.Connection" />, and builds an <seecref="T:System.Data.IDataReader" /> using the specified behavior.</summary>
Copy file name to clipboardExpand all lines: xml/System.Data.Odbc/OdbcCommandBuilder.xml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -820,8 +820,8 @@
820
820
<ReturnType>System.String</ReturnType>
821
821
</ReturnValue>
822
822
<Docs>
823
-
<summary>To be added.</summary>
824
-
<value>To be added.</value>
823
+
<summary>Gets or sets the beginning character or characters to use when working with database objects (for example, tables or columns) whose names contain characters such as spaces or reserved tokens.</summary>
824
+
<value>The beginning character or characters to use. The default is an empty string.</value>
825
825
<remarks>To be added.</remarks>
826
826
</Docs>
827
827
</Member>
@@ -852,8 +852,8 @@
852
852
<ReturnType>System.String</ReturnType>
853
853
</ReturnValue>
854
854
<Docs>
855
-
<summary>To be added.</summary>
856
-
<value>To be added.</value>
855
+
<summary>Gets or sets the ending character or characters to use when working with database objects, (for example, tables or columns), whose names contain characters such as spaces or reserved tokens.</summary>
856
+
<value>The ending character or characters to use. The default is an empty string.</value>
857
857
<remarks>To be added.</remarks>
858
858
</Docs>
859
859
</Member>
@@ -877,7 +877,7 @@
877
877
</ReturnValue>
878
878
<Parameters />
879
879
<Docs>
880
-
<summary>To be added.</summary>
880
+
<summary>Clears the commands associated with this <seecref="T:System.Data.Odbc.OdbcCommandBuilder" />.</summary>
0 commit comments