task
stringlengths
24
71
input
stringlengths
8
2.38k
output
stringlengths
1
2.34k
options
list
pageTitle
stringlengths
4
140
outputColName
stringlengths
1
79
url
stringlengths
41
160
wdcFile
stringlengths
71
74
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2142 [Warning] CA2142: Transparent code should not be protected with LinkDemands [Description]
This rule is raised on transparent methods that require LinkDemands to access them. Security transparent code should not be responsible for verifying the security of an operation, and therefore should not demand permissions.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2143 [Warning] CA2143: Transparent methods should not use security demands [Description]
Security transparent code should not be responsible for verifying the security of an operation, and therefore should not demand permissions. Security transparent code should use full demands to make security decisions and safe-critical code should not rely on transparent code to have made the full demand.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2144 [Warning] CA2144: Transparent code should not load assemblies from byte arrays [Description]
The security review for transparent code is not as complete as the security review for critical code because transparent code cannot perform security sensitive actions. Assemblies that are loaded from a byte array might not be noticed in transparent code, and that byte array might contain critical, or more important safe-critical code, that does have to be audited.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2145 [Warning] CA2145: Transparent methods should not be decorated with the SuppressUnmanagedCodeSecurityAttribute [Description]
Methods that are decorated by the SuppressUnmanagedCodeSecurityAttribute attribute have an implicit LinkDemand put upon any method that calls it. This LinkDemand requires that the calling code be security critical. Marking the method that uses SuppressUnmanagedCodeSecurity by using the SecurityCriticalAttribute attribute makes this requirement more obvious for callers of the method.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2146 [Warning] CA2146: Types must be at least as critical as their base types and interfaces [Description]
This rule is raised when a derived type has a security transparency attribute that is not as critical as its base type or implemented interface. Only critical types can derive from critical base types or implement critical interfaces, and only critical or safe-critical types can derive from safe-critical base types or implement safe-critical interfaces.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2147 [Warning] CA2147: Transparent methods may not use security asserts [Description]
Code that is marked as SecurityTransparentAttribute is not granted sufficient permissions to assert.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2149 [Warning] CA2149: Transparent methods must not call into native code [Description]
This rule is raised on any transparent method that calls directly into native code (for example, through a P/Invoke). Violations of this rule lead to a MethodAccessException in the level 2 transparency model and a full demand for UnmanagedCode in the level 1 transparency model.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2200 [Warning] CA2200: Rethrow to preserve stack details [Description]
An exception is rethrown and the exception is explicitly specified in the throw statement. If an exception is rethrown by specifying the exception in the throw statement, the list of method calls between the original method that threw the exception and the current method is lost.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2201 [Warning] CA2201: Do not raise reserved exception types [Description]
This makes the original error difficult to detect and debug.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2202 [Warning] CA2202: Do not dispose objects multiple times [Description]
A method implementation contains code paths that could cause multiple calls to System.IDisposable.Dispose or a Dispose equivalent (such as a Close() method on some types) on the same object.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2204 [Warning] CA2204: Literals should be spelled correctly [Description]
A literal string in a method body contains one or more words that are not recognized by the Microsoft spelling checker library.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2205 [Warning] CA2205: Use managed equivalents of Win32 API [Description]
An operating system invoke method is defined and a method that has the equivalent functionality is located in the .NET Framework class library.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2207 [Warning] CA2207: Initialize value type static fields inline [Description]
A value type declares an explicit static constructor. To fix a violation of this rule, initialize all static data when it is declared and remove the static constructor.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2208 [Warning] CA2208: Instantiate argument exceptions correctly [Description]
A call is made to the default (parameterless) constructor of an exception type that is or derives from ArgumentException, or an incorrect string argument is passed to a parameterized constructor of an exception type that is or derives from ArgumentException.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2210 [Warning] CA2210: Assemblies should have valid strong names [Description]
The strong name protects clients from unknowingly loading an assembly that has been tampered with. Assemblies without strong names should not be deployed outside very limited scenarios. If you share or distribute assemblies that are not correctly signed, the assembly can be tampered with, the common language runtime might not load the assembly, or the user might have to disable verification on his or her computer.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2211 [Warning] CA2211: Non-constant fields should not be visible [Description]
Static fields that are neither constants nor read-only are not thread-safe. Access to such a field must be carefully controlled and requires advanced programming techniques to synchronize access to the class object.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2212 [Warning] CA2212: Do not mark serviced components with WebMethod [Description]
A method in a type that inherits from System.EnterpriseServices.ServicedComponent is marked by using System.Web.Services.WebMethodAttribute. Because WebMethodAttribute and a ServicedComponent method have conflicting behavior and requirements for context and transaction flow, the behavior of the method will be incorrect in some scenarios.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2213 [Warning] CA2213: Disposable fields should be disposed [Description]
A type that implements System.IDisposable declares fields that are of types that also implement IDisposable. The Dispose method of the field is not called by the Dispose method of the declaring type.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2214 [Warning] CA2214: Do not call overridable methods in constructors [Description]
When a constructor calls a virtual method, the constructor for the instance that invokes the method may not have executed.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2215 [Warning] CA2215: Dispose methods should call base class dispose [Description]
If a type inherits from a disposable type, it must call the Dispose method of the base type from its own Dispose method.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2216 [Warning] CA2216: Disposable types should declare finalizer [Description]
A type that implements System.IDisposable and has fields that suggest the use of unmanaged resources does not implement a finalizer, as described by Object.Finalize.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2217 [Warning] CA2217: Do not mark enums with FlagsAttribute [Description]
An externally visible enumeration is marked by using FlagsAttribute, and it has one or more values that are not powers of two or a combination of the other defined values on the enumeration.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2218 [Warning] CA2218: Override GetHashCode on overriding Equals [Description]
GetHashCode returns a value, based on the current instance, that is suited for hashing algorithms and data structures such as a hash table. Two objects that are the same type and are equal must return the same hash code.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2219 [Warning] CA2219: Do not raise exceptions in exception clauses [Description]
When an exception is raised in a finally or fault clause, the new exception hides the active exception. When an exception is raised in a filter clause, the run time silently catches the exception. This makes the original error difficult to detect and debug.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2220 [Warning] CA2220: Finalizers should call base class finalizer [Description]
Finalization must be propagated through the inheritance hierarchy. To guarantee this, types must call their base class Finalize method in their own Finalize method.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2221 [Warning] CA2221: Finalizers should be protected [Description]
Finalizers must use the family access modifier.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2222 [Warning] CA2222: Do not decrease inherited member visibility [Description]
You should not change the access modifier for inherited members. Changing an inherited member to private does not prevent callers from accessing the base class implementation of the method.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2223 [Warning] CA2223: Members should differ by more than return type [Description]
Although the common language runtime allows the use of return types to differentiate between otherwise identical members, this feature is not in the Common Language Specification, nor is it a common feature of .NET programming languages.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2224 [Warning] CA2224: Override equals on overloading operator equals [Description]
A public type implements the equality operator but does not override Object.Equals.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2225 [Warning] CA2225: Operator overloads have named alternates [Description]
An operator overload was detected, and the expected named alternative method was not found. The named alternative member provides access to the same functionality as the operator and is provided for developers who program in languages that do not support overloaded operators.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2226 [Warning] CA2226: Operators should have symmetrical overloads [Description]
A type implements the equality or inequality operator and does not implement the opposite operator.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2227 [Warning] CA2227: Collection properties should be read only [Description]
A writable collection property allows a user to replace the collection with a different collection. A read-only property stops the collection from being replaced but still allows the individual members to be set.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2228 [Warning] CA2228: Do not ship unreleased resource formats [Description]
Resource files that were built by using prerelease versions of the .NET Framework might not be usable by supported versions of the .NET Framework.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2229 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2230 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2231 [Warning] CA2231: Overload operator equals on overriding ValueType.Equals [Description]
A value type overrides Object.Equals but does not implement the equality operator.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2232 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2233 [Warning] CA2233: Operations should not overflow [Description]
You should not perform arithmetic operations without first validating the operands. This makes sure that the result of the operation is not outside the range of possible values for the data types that are involved.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2234 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2235 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2236 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2237 [Warning] CA2237: Mark ISerializable types with SerializableAttribute [Description]
To be recognized by the common language runtime as serializable, types must be marked by using the SerializableAttribute attribute even when the type uses a custom serialization routine through implementation of the ISerializable interface.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2238 [Warning] CA2238: Implement serialization methods correctly [Description]
A method that handles a serialization event does not have the correct signature, return type, or visibility.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2239 [Warning] CA2239: Provide deserialization methods for optional fields [Description]
A type has a field that is marked by using the System.Runtime.Serialization.OptionalFieldAttribute attribute, and the type does not provide deserialization event handling methods.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2240 [Warning] 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 by using the NonSerializedAttribute attribute.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2241 [Warning] CA2241: Provide correct arguments to formatting methods [Description]
The format argument that is passed to System.String.Format does not contain a format item that corresponds to each object argument, or vice versa.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2242 [Warning] 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.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
4b3479f6_gs_for_Managed_Code_by_CheckId__Description
[CheckId] CA2243 [Warning] CA2243: Attribute string literals should parse correctly [Description]
The string literal parameter of an attribute does not parse correctly for a URL, a GUID, or a version.
[]
Code Analysis Warnings for Managed Code by CheckId
Description
https://msdn.microsoft.com/en-us/library/dd380629(v=vs.110).aspx
17/1438042987402.78_20150728002307-00206-ip-10-236-191-2_869466054_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] artcache_schema_address [Data type] varbinary(8) [Description]
In-memory address of the cached schema structure for the published table article.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] tabid [Data type] bigint [Description]
ID of the replicated table.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] indexid [Data type] smallint [Description]
ID of a clustered index on the published table.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] idSch [Data type] bigint [Description]
ID of the table schema.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] tabschema [Data type] nvarchar(510) [Description]
Name of the table schema.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] ccTabschema [Data type] smallint [Description]
Character length of the table schema.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] tabname [Data type] nvarchar(510) [Description]
Name of the published table.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] ccTabname [Data type] smallint [Description]
Character length of the published table name.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] rowsetid_delete [Data type] bigint [Description]
ID of the deleted row.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] rowsetid_insert [Data type] bigint [Description]
ID of the inserted row.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] num_pk_cols [Data type] int [Description]
Number of primary key columns.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] pcitee [Data type] binary(8000) [Description]
Pointer to the query expression structure used to evaluate computed column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_numtextcols [Data type] int [Description]
Number of binary large object columns in the replicated table.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_schema_lsn_begin [Data type] binary(8000) [Description]
Beginning log sequence number (LSN) of schema version logging.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_schema_lsn_end [Data type] binary(8000) [Description]
Ending LSN of schema version logging.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_numcols [Data type] int [Description]
Number of columns published.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_colid [Data type] int [Description]
Column identifier at the Publisher.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_awcName [Data type] nvarchar(510) [Description]
Name of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_ccName [Data type] smallint [Description]
Number of characters in the column name.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_pk [Data type] tinyint [Description]
Whether the published column is part of a primary key.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_unique [Data type] tinyint [Description]
Whether the published column is part of a unique index.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_maxlen [Data type] smallint [Description]
Maximum length of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_prec [Data type] tinyint [Description]
Precision of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_scale [Data type] tinyint [Description]
Scale of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_collatid [Data type] bigint [Description]
Collation ID for published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_xvtype [Data type] smallint [Description]
Type of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_offset [Data type] smallint [Description]
Offset of the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_bitpos [Data type] tinyint [Description]
Bit position of the published column, in the byte vector.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_fNullable [Data type] tinyint [Description]
Specifies whether the published column supports NULL values.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_fAnsiTrim [Data type] tinyint [Description]
Specifies whether ANSI trim is used on the published column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] re_computed [Data type] smallint [Description]
Specifies whether the published column is a computed column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_rowsetid [Data type] bigint [Description]
ID of the rowset.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_schema_lsn_begin [Data type] binary(8000) [Description]
Beginning LSN of schema version logging.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_schema_lsn_end [Data type] binary(8000) [Description]
Ending LSN of schema version logging.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_numcols [Data type] int [Description]
Number of columns.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_colid [Data type] int [Description]
ID of the column at the Subscriber.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_maxlen [Data type] smallint [Description]
Maximum length of the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_prec [Data type] tinyint [Description]
Precision of the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_scale [Data type] tinyint [Description]
Scale of the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_collatid [Data type] bigint [Description]
Collation ID for column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_xvtype [Data type] smallint [Description]
Type of the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_offset [Data type] smallint [Description]
Offset of the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_bitpos [Data type] tinyint [Description]
Bit position of the column, in the byte vector.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_fNullable [Data type] tinyint [Description]
Specifies whether the column supports NULL values.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_fAnsiTrim [Data type] tinyint [Description]
Specifies whether ANSI trim is used on the column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_computed [Data type] smallint [Description]
Specifies whether the columnis a computed column.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
02609902_dm_repl_schemas__Transact_SQL___Description
[Column name] se_nullBitInLeafRows [Data type] int [Description]
Specifies whether the column value is NULL.
[]
sys.dm_repl_schemas (Transact-SQL)
Description
https://msdn.microsoft.com/en-us/library/ms186331(v=sql.100).aspx
17/1438042987402.78_20150728002307-00091-ip-10-236-191-2_889030199_0.json
261d8276_the_Index_of_Changes__Windows___Enum_Value
[Value] 0 [Description] The notification is for an additional URL. [Enum Value]
SEARCH_CHANGE_ADD
[]
Notifying the Index of Changes (Windows)
Enum Value
https://msdn.microsoft.com/en-us/library/aa965718(v=vs.85).aspx
17/1438042987402.78_20150728002307-00215-ip-10-236-191-2_868303579_2.json
261d8276_the_Index_of_Changes__Windows___Enum_Value
[Value] 1 [Description] The notification is for the deletion of a URL. [Enum Value]
SEARCH_CHANGE_DELETE
[]
Notifying the Index of Changes (Windows)
Enum Value
https://msdn.microsoft.com/en-us/library/aa965718(v=vs.85).aspx
17/1438042987402.78_20150728002307-00215-ip-10-236-191-2_868303579_2.json
261d8276_the_Index_of_Changes__Windows___Enum_Value
[Value] 2 [Description] The notification is that a URL has been modified. [Enum Value]
SEARCH_CHANGE_MODIFY
[]
Notifying the Index of Changes (Windows)
Enum Value
https://msdn.microsoft.com/en-us/library/aa965718(v=vs.85).aspx
17/1438042987402.78_20150728002307-00215-ip-10-236-191-2_868303579_2.json
261d8276_the_Index_of_Changes__Windows___Enum_Value
[Value] 3 [Description] The notification is for the move and rename of an object to a new URL. [Enum Value]
SEARCH_CHANGE_MOVE_RENAME
[]
Notifying the Index of Changes (Windows)
Enum Value
https://msdn.microsoft.com/en-us/library/aa965718(v=vs.85).aspx
17/1438042987402.78_20150728002307-00215-ip-10-236-191-2_868303579_2.json
261d8276_the_Index_of_Changes__Windows___Enum_Value
[Value] 0x10000 [Description] The notification is for a container URL. [Enum Value]
SEARCH_CHANGE_SEMANTICS_DIRECTORY
[]
Notifying the Index of Changes (Windows)
Enum Value
https://msdn.microsoft.com/en-us/library/aa965718(v=vs.85).aspx
17/1438042987402.78_20150728002307-00215-ip-10-236-191-2_868303579_2.json