task
stringlengths 24
71
| input
stringlengths 8
2.38k
| output
stringlengths 1
2.34k
| options
sequence | pageTitle
stringlengths 4
140
| outputColName
stringlengths 1
79
| url
stringlengths 41
160
| wdcFile
stringlengths 71
74
|
---|---|---|---|---|---|---|---|
8e55d18b_Usage_Warnings__Description | [Rule] CA2228: Do not ship unreleased resource formats [Description] | Resource files that were built by using pre-release versions of the .NET Framework might not be usable by supported versions of the .NET Framework. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2229: Implement serialization constructors [Description] | To fix a violation of this rule, implement the serialization constructor. For a sealed class, make the constructor private; otherwise, make it protected. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2230: Use params for variable arguments [Description] | A public or protected type contains a public or protected method that uses the VarArgs calling convention instead of the params keyword. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2231: Overload operator equals on overriding ValueType.Equals [Description] | A value type overrides Object.Equals but does not implement the equality operator. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2232: Mark Windows Forms entry points with STAThread [Description] | STAThreadAttribute indicates that the COM threading model for the application is a single-threaded apartment. This attribute must be present on the entry point of any application that uses Windows Forms; if it is omitted, the Windows components might not work correctly. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2233: Operations should not overflow [Description] | Arithmetic operations should not be performed without first validating the operands, to make sure that the result of the operation is not outside the range of possible values for the data types involved. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2234: Pass System.Uri objects instead of strings [Description] | A call is made to a method that has a string parameter whose name contains "uri", "URI", "urn", "URN", "url", or "URL". The declaring type of the method contains a corresponding method overload that has a System.Uri parameter. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2235: Mark all non-serializable fields [Description] | An instance field of a type that is not serializable is declared in a type that is serializable. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2236: Call base class methods on ISerializable types [Description] | To fix a violation of this rule, call the base type GetObjectData method or serialization constructor from the corresponding derived type method or constructor. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2237: Mark ISerializable types with SerializableAttribute [Description] | To be recognized by the common language runtime as serializable, types must be marked with the SerializableAttribute attribute even if the type uses a custom serialization routine through implementation of the ISerializable interface. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2238: Implement serialization methods correctly [Description] | A method that handles a serialization event does not have the correct signature, return type, or visibility. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2239: Provide deserialization methods for optional fields [Description] | A type has a field that is marked with the System.Runtime.Serialization.OptionalFieldAttribute attribute, and the type does not provide de-serialization event handling methods. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2240: Implement ISerializable correctly [Description] | To fix a violation of this rule, make the GetObjectData method visible and overridable, and make sure that all instance fields are included in the serialization process or explicitly marked with the NonSerializedAttribute attribute. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2241: Provide correct arguments to formatting methods [Description] | The format argument passed to System.String.Format does not contain a format item that corresponds to each object argument, or vice versa. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2242: Test for NaN correctly [Description] | This expression tests a value against Single.Nan or Double.Nan. Use Single.IsNan(Single) or Double.IsNan(Double) to test the value. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
8e55d18b_Usage_Warnings__Description | [Rule] CA2243: Attribute string literals should parse correctly [Description] | An attribute's string literal parameter does not parse correctly for a URL, a GUID, or a version. | [] | Usage Warnings | Description | https://msdn.microsoft.com/en-us/library/ms182324(v=vs.120).aspx | 44/1438042981525.10_20150728002301-00126-ip-10-236-191-2_876724631_0.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] ArticleId [Description] | Gets the article ID value. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] CachePropertyChanges [Description] | Gets or sets whether to cache changes made to the replication properties or to apply them immediately.(Inherited from ReplicationObject.) | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] ConnectionContext [Description] | Gets or sets the connection to an instance of Microsoft SQL Server.(Inherited from ReplicationObject.) | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] CreateArticleAsHeterogeneous [Description] | Gets or sets a value that indicates whether to create an article as heterogeneous. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] CreationScript [Description] | Gets or sets the name and full path of the Transact-SQL script file that is used to create the destination object at the Subscriber. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] DatabaseName [Description] | Gets or sets the name of the database that contains the data and the objects that are published in the article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] Description [Description] | Gets or sets a textual description of the article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] DestinationObjectName [Description] | Gets or sets the database object that is the source database object for the article at the Subscriber. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] DestinationObjectOwner [Description] | Gets or sets the schema owner of the source database object for the article at the Subscriber. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] IdentityRangeManagementOption [Description] | Gets or sets the identity range management options for the article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] IdentityRangeThreshold [Description] | Gets or sets the value at which a new range of identity column values are assigned to a Publisher or to a Subscriber. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] IsExistingObject [Description] | Gets whether the object exists on the server or not.(Inherited from ReplicationObject.) | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] Name [Description] | Gets or sets the name of the article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] PreCreationMethod [Description] | Gets or sets the action to take when the published object already exists in the subscription database. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] PublicationName [Description] | Gets or sets the name of the publication to which the article belongs. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] PublisherIdentityRangeSize [Description] | For a TransArticle object, gets or sets the range of identity values assigned to table columns at the Publisher. For a MergeArticle object, gets or sets the range of identity values assigned to table columns at Subscribers that have server subscriptions. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] SchemaOption [Description] | Gets or sets the schema creation options for an article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] SourceObjectName [Description] | Gets or sets the name of the database object that is being published. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] SourceObjectOwner [Description] | Gets or sets the owner of the database object that is being published. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] SqlServerName [Description] | Gets the name of the Microsoft SQL Server instance to which this object is connected. (Inherited from ReplicationObject.) | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] SubscriberIdentityRangeSize [Description] | Gets or sets the maximum number of new rows that can be inserted into an identity column in a table at a Subscriber before another identity range must be allocated. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] Type [Description] | Gets or sets the type of article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] UserData [Description] | Gets or sets an object property that allows users to attach their own data to the object. (Inherited from ReplicationObject.) | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
6ff2880e_crosoft_SqlServer_Replication___Description | [Name] VerticalPartition [Description] | Gets a value that indicates whether all columns are published in a table article. | [] | Article Class (Microsoft.SqlServer.Replication) | Description | https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.replication.article.aspx | 44/1438042981525.10_20150728002301-00087-ip-10-236-191-2_866343293_1.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] AVG [Result] | Average of the values in the numeric expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] COUNT [Result] | Number of selected rows | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] MAX [Result] | Highest value in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] MIN [Result] | Lowest value in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] STDEV [Result] | Statistical standard deviation for all values in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] STDEVP [Result] | Statistical standard deviation for the population for all values in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] SUM [Result] | Total of the values in the numeric expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] VAR [Result] | Statistical variance for all values in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
d2d523b4_COMPUTE__Transact_SQL___Result | [Row aggregate function] VARP [Result] | Statistical variance for the population for all values in the expression | [] | COMPUTE (Transact-SQL) | Result | https://msdn.microsoft.com/en-us/library/ms181708(v=sql.90).aspx | 44/1438042990445.44_20150728002310-00206-ip-10-236-191-2_886270273_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets a value that indicates whether null values are allowed in this column for rows that belong to the table. [Name] | AllowDBNull | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets a value that indicates whether the column automatically increments the value of the column for new rows added to the table. [Name] | AutoIncrement | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the starting value for a column that has its AutoIncrement property set to true. The default is 0. [Name] | AutoIncrementSeed | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the increment used by a column with its AutoIncrement property set to true. [Name] | AutoIncrementStep | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the caption for the column. [Name] | Caption | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the MappingType of the column. [Name] | ColumnMapping | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the name of the column in the DataColumnCollection. [Name] | ColumnName | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets the container for the component. (Inherited from MarshalByValueComponent.) [Name] | Container | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the type of data stored in the column. [Name] | DataType | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the DateTimeMode for the column. [Name] | DateTimeMode | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the default value for the column when you are creating new rows. [Name] | DefaultValue | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets a value indicating whether the component is currently in design mode. (Inherited from MarshalByValueComponent.) [Name] | DesignMode | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets the list of event handlers that are attached to this component. (Inherited from MarshalByValueComponent.) [Name] | Events | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the expression used to filter rows, calculate the values in a column, or create an aggregate column. [Name] | Expression | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets the collection of custom user information associated with a DataColumn. [Name] | ExtendedProperties | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the maximum length of a text column. [Name] | MaxLength | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the namespace of the DataColumn. [Name] | Namespace | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets the (zero-based) position of the column in the DataColumnCollection collection. [Name] | Ordinal | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets an XML prefix that aliases the namespace of the DataTable. [Name] | Prefix | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets a value that indicates whether the column allows for changes as soon as a row has been added to the table. [Name] | ReadOnly | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets the site of the component. (Inherited from MarshalByValueComponent.) [Name] | Site | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets the DataTable to which the column belongs to. [Name] | Table | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
5f240eb3_olumn_Properties__System_Data___Name | [Description] Gets or sets a value that indicates whether the values in each row of the column must be unique. [Name] | Unique | [] | DataColumn Properties (System.Data) | Name | https://msdn.microsoft.com/en-us/library/System.Data.DataColumn_properties.aspx | 44/1438042981525.10_20150728002301-00197-ip-10-236-191-2_863236330_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the type information for an authentication module. This class cannot be inherited. [Class] | AuthenticationModuleElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents a container for authentication module configuration elements. This class cannot be inherited. [Class] | AuthenticationModuleElementCollection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the configuration section for authentication modules. This class cannot be inherited. [Class] | AuthenticationModulesSection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the address information for resources that are not retrieved using a proxy server. This class cannot be inherited. [Class] | BypassElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents a container for the addresses of resources that bypass the proxy server. This class cannot be inherited. [Class] | BypassElementCollection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the maximum number of connections to a remote computer. This class cannot be inherited. [Class] | ConnectionManagementElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents a container for connection management configuration elements. This class cannot be inherited. [Class] | ConnectionManagementElementCollection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the configuration section for connection management. This class cannot be inherited. [Class] | ConnectionManagementSection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the configuration section for Web proxy server usage. This class cannot be inherited. [Class] | DefaultProxySection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the default FTP cache policy for network resources. This class cannot be inherited. [Class] | FtpCachePolicyElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the default HTTP cache policy for network resources. This class cannot be inherited. [Class] | HttpCachePolicyElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the HttpListener element in the configuration file. This class cannot be inherited. [Class] | HttpListenerElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the HttpListener timeouts element in the configuration file. This class cannot be inherited. [Class] | HttpListenerTimeoutsElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the maximum length for response headers. This class cannot be inherited. [Class] | HttpWebRequestElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Determines whether Internet Protocol version 6 is enabled on the local computer. This class cannot be inherited. [Class] | Ipv6Element | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Initializes a new instance of the MailSettingsSectionGroup class. [Class] | MailSettingsSectionGroup | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the type information for a custom IWebProxy module. This class cannot be inherited. [Class] | ModuleElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Gets the section group information for the networking namespaces. This class cannot be inherited. [Class] | NetSectionGroup | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the performance counter element in the System.Net configuration file that determines whether networking performance counters are enabled. This class cannot be inherited. [Class] | PerformanceCountersElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Identifies the configuration settings for Web proxy server. This class cannot be inherited. [Class] | ProxyElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the configuration section for cache behavior. This class cannot be inherited. [Class] | RequestCachingSection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the default settings used to create connections to a remote computer. This class cannot be inherited. [Class] | ServicePointManagerElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the configuration section for sockets, IPv6, response headers, and service points. This class cannot be inherited. [Class] | SettingsSection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the network element in the SMTP configuration file. This class cannot be inherited. [Class] | SmtpNetworkElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents the SMTP section in the System.Net configuration file. [Class] | SmtpSection | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents an SMTP pickup directory configuration element. [Class] | SmtpSpecifiedPickupDirectoryElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents information used to configure Socket objects. This class cannot be inherited. [Class] | SocketElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
19975c36_Net_Configuration_Namespace_____Class | [Description] Represents information used to configure Web proxy scripts. This class cannot be inherited. [Class] | WebProxyScriptElement | [] | System.Net.Configuration Namespace () | Class | https://msdn.microsoft.com/en-us/library/system.net.configuration | 44/1438042988399.65_20150728002308-00145-ip-10-236-191-2_882443683_0.json |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.