| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>System.CodeDom</name>
- </assembly>
- <members>
- <member name="P:System.SR.CodeDomProvider_NotDefined">
- <summary>There is no CodeDom provider defined for the language.</summary>
- </member>
- <member name="P:System.SR.NotSupported_CodeDomAPI">
- <summary>This CodeDomProvider does not support this method.</summary>
- </member>
- <member name="P:System.SR.CodeGenOutputWriter">
- <summary>The output writer for code generation and the writer supplied don't match and cannot be used. This is generally caused by a bad implementation of a CodeGenerator derived class.</summary>
- </member>
- <member name="P:System.SR.CodeGenReentrance">
- <summary>This code generation API cannot be called while the generator is being used to generate something else.</summary>
- </member>
- <member name="P:System.SR.InvalidElementType">
- <summary>Element type {0} is not supported.</summary>
- </member>
- <member name="P:System.SR.Argument_NullComment">
- <summary>The 'Comment' property of the CodeCommentStatement '{0}' cannot be null.</summary>
- </member>
- <member name="P:System.SR.InvalidPrimitiveType">
- <summary>Invalid Primitive Type: {0}. Consider using CodeObjectCreateExpression.</summary>
- </member>
- <member name="P:System.SR.InvalidIdentifier">
- <summary>Identifier '{0}' is not valid.</summary>
- </member>
- <member name="P:System.SR.ArityDoesntMatch">
- <summary>The total arity specified in '{0}' does not match the number of TypeArguments supplied. There were '{1}' TypeArguments supplied.</summary>
- </member>
- <member name="P:System.SR.InvalidNullEmptyArgument">
- <summary>Argument {0} cannot be null or zero-length.</summary>
- </member>
- <member name="P:System.SR.DuplicateFileName">
- <summary>The file name '{0}' was already in the collection.</summary>
- </member>
- <member name="P:System.SR.InvalidTypeName">
- <summary>The type name:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent type name.</summary>
- </member>
- <member name="P:System.SR.InvalidRegion">
- <summary>The region directive '{0}' contains invalid characters. RegionText cannot contain any new line characters.</summary>
- </member>
- <member name="P:System.SR.InvalidPathCharsInChecksum">
- <summary>The CodeChecksumPragma file name '{0}' contains invalid path characters.</summary>
- </member>
- <member name="P:System.SR.ExecTimeout">
- <summary>Timed out waiting for a program to execute. The command being executed was {0}.</summary>
- </member>
- <member name="P:System.SR.Provider_does_not_support_options">
- <summary>This CodeDomProvider type does not have a constructor that takes providerOptions - "{0}".</summary>
- </member>
- <member name="P:System.SR.InvalidLanguageIdentifier">
- <summary>The identifier:"{0}" on the property:"{1}" of type:"{2}" is not a valid language-independent identifier name. Check to see if CodeGenerator.IsValidLanguageIndependentIdentifier allows the identifier name.</summary>
- </member>
- <member name="P:System.SR.toStringUnknown">
- <summary>{unknown}</summary>
- </member>
- <member name="P:System.SR.AutoGen_Comment_Line1">
- <summary>auto-generated></summary>
- </member>
- <member name="P:System.SR.AutoGen_Comment_Line2">
- <summary>This code was generated by a tool.</summary>
- </member>
- <member name="P:System.SR.AutoGen_Comment_Line4">
- <summary>Changes to this file may cause incorrect behavior and will be lost if</summary>
- </member>
- <member name="P:System.SR.AutoGen_Comment_Line5">
- <summary>the code is regenerated.</summary>
- </member>
- <member name="T:System.Runtime.Versioning.OSPlatformAttribute">
- <summary>
- Base type for all platform-specific API attributes.
- </summary>
- </member>
- <member name="T:System.Runtime.Versioning.TargetPlatformAttribute">
- <summary>
- Records the platform that the project targeted.
- </summary>
- </member>
- <member name="T:System.Runtime.Versioning.SupportedOSPlatformAttribute">
- <summary>
- Records the operating system (and minimum version) that supports an API. Multiple attributes can be
- applied to indicate support on multiple operating systems.
- </summary>
- <remarks>
- Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformAttribute" />
- or use guards to prevent calls to APIs on unsupported operating systems.
-
- A given platform should only be specified once.
- </remarks>
- </member>
- <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute">
- <summary>
- Marks APIs that were removed in a given operating system version.
- </summary>
- <remarks>
- Primarily used by OS bindings to indicate APIs that are only available in
- earlier versions.
- </remarks>
- </member>
- <member name="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute">
- <summary>
- Annotates a custom guard field, property or method with a supported platform name and optional version.
- Multiple attributes can be applied to indicate guard for multiple supported platforms.
- </summary>
- <remarks>
- Callers can apply a <see cref="T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute" /> to a field, property or method
- and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.
-
- The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
- </remarks>
- </member>
- <member name="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute">
- <summary>
- Annotates the custom guard field, property or method with an unsupported platform name and optional version.
- Multiple attributes can be applied to indicate guard for multiple unsupported platforms.
- </summary>
- <remarks>
- Callers can apply a <see cref="T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute" /> to a field, property or method
- and use that field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.
-
- The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.
- </remarks>
- </member>
- </members>
- </doc>
|