From e5fc3411767e84ec08b007aa678443024558de14 Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Sun, 26 Jun 2016 11:15:32 -0700 Subject: [PATCH] Converted absolute URLs to API syntax (#629) * Converted absolute URLs to API syntax --- api/index.md | 200 +++++++++++++++++++++++++-------------------------- 1 file changed, 100 insertions(+), 100 deletions(-) diff --git a/api/index.md b/api/index.md index a1fe492a9fe..e26ddb96cbd 100644 --- a/api/index.md +++ b/api/index.md @@ -28,535 +28,535 @@ The .NET Core class library includes the following namespaces: - Microsoft.CSharp.RuntimeBinder + @Microsoft.CSharp.RuntimeBinder Provides types that support interoperation between the Dynamic Language Runtime and C#. - Microsoft.SqlServer.Server + @Microsoft.SqlServer.Server Contains classes for integrating .NET Core with Microsoft SQL Server and the SQL Server database engine process execution environment. - Microsoft.VisualBasic + @Microsoft.VisualBasic Contains types that support the Visual Basic runtime. - Microsoft.VisualBasic.CompilerServices + @Microsoft.VisualBasic.CompilerServices Contains internal-use only types that support the Visual Basic compiler. - Microsoft.Win32 + @Microsoft.Win32 Contains classes that manipulate the Windows system registry. - Microsoft.Win32.SafeHandles + @Microsoft.Win32.SafeHandles Contains classes that support safe access to Windows file and operating system handles. - System + @System Contains fundamental classes and base classes that define commonly-used value and reference data types, events and event handlers, interfaces, attributes, and exceptions. - System.CodeDom.Compiler + @System.CodeDom.Compiler Contains a type used to identify code that is auto-generated by a tool. - System.Collections + @System.Collections Contains classes and interfaces that define various non-generic collections of objects, such as lists, queues, bit arrays, hash tables and dictionaries. - System.Collections.Concurrent + @System.Collections.Concurrent Provides thread-safe collection classes that should be used instead of the corresponding types in the System.Collections and System.Collections.Generic namespaces whenever multiple threads are accessing the collection concurrently. However, members accessed through extension methods or through the interfaces that these collection classes implement are not guaranteed to be thread safe and may need to be synchronized by the caller. - System.Collections.Generic + @System.Collections.Generic Contains types that define generic collections, which allow users to create strongly-typed collections that provide better type safety and performance than non-generic collections. - System.Collections.ObjectModel + @System.Collections.ObjectModel Contains classes that can be used as collections in the object model of a reusable library. Use these classes when properties or methods return collections. - System.Collections.Specialized + @System.Collections.Specialized Contains specialized and strongly-typed collections such as a linked list dictionary, a bit vector, and collections that contain only strings. - System.ComponentModel + @System.ComponentModel Contains classes that are used to implement the run-time and design-time behavior of components and controls. This namespace includes the base classes and interfaces for implementing attributes and type converters and binding to data sources. - System.ComponentModel.DataAnnotations + @System.ComponentModel.DataAnnotations Contains attribute classes that are used to define metadata for ASP.NET Core data controls. - System.ComponentModel.DataAnnotations.Schema + @System.ComponentModel.DataAnnotations.Schema Provides support for attribute classes that are used to define metadata for ASP.NET Core data controls. - System.Data + @System.Data Provides access to classes that efficiently manage data from multiple data sources. - System.Data.Common + @System.Data.Common Contains classes shared by the .NET Core data providers. - System.Data.SqlClient + @System.Data.SqlClient The data provider for Microsoft SQL Server. - System.Data.SqlTypes + @System.Data.SqlTypes Contains classes for native data types in SQL Server. These classes provide a safer, faster alternative to the primitive data types provided in the System namespace. Using the classes in this namespace helps prevent type conversion errors caused by loss of precision. Because other data types are converted to and from SqlTypes behind the scenes, explicitly creating and using objects within this namespace also yields faster code. - System.Diagnostics + @System.Diagnostics Contains classes that allow you to interact with system processes, event logs, and performance counters. - System.Diagnostics.CodeAnalysis + @System.Diagnostics.CodeAnalysis Contains a class to suppress reporting of a specific rule violation by a static analysis tool. - System.Diagnostics.Contracts + @System.Diagnostics.Contracts Contains static classes for representing program contracts such as preconditions, postconditions, and invariants. - System.Diagnostics.Tracing + @System.Diagnostics.Tracing Provides types and members that enable you to create strongly-typed events to be captured by Event Tracing for Windows (ETW). - System.Drawing + @System.Drawing Provides access to basic graphics functionality. - System.Dynamic + @System.Dynamic Provides classes and interfaces that support the Dynamic Language Runtime. - System.Globalization + @System.Globalization Contains classes that define culture-related information, including language, country/region, calendars in use, format patterns for dates, currency, and numbers, and sort order for strings. These classes are useful for writing globalized (internationalized) applications. - System.IO + @System.IO Contains types that allow reading and writing to files and data streams, and types that provide basic file and directory support. - System.IO.Compression + @System.IO.Compression Contains types that provide basic compression and decompression services for streams. - System.IO.IsolatedStorage + @System.IO.IsolatedStorage Contains types that allow the creation and use of isolated stores. Isolated stores let you read and write data that less trusted code cannot access, and prevent the exposure of sensitive information that can be saved elsewhere on the file system. Data is stored in compartments that are isolated by the current user and by the assembly in which the code exists. Roaming profiles can be used in conjunction with isolated storage so that isolated stores travel with the user's profile. - System.IO.MemoryMappedFiles + @System.IO.MemoryMappedFiles Contains classes for using a memory-mapped file, which maps the contents of a file to an application’s logical address space. - System.IO.Packaging + @System.IO.Packaging Contains types that support storage of multiple data objects in a single container. - System.IO.Pipes + @System.IO.Pipes Contains types for interprocess communication through anonymous and/or named pipes. - System.Linq + @System.Linq Contains types that support queries that use Language-Integrated Query (LINQ). - System.Linq.Expressions + @System.Linq.Expressions Contains types that enable language-level code expressions to be represented as objects in the form of expression trees. - System.Net + @System.Net Provides a simple programming interface for many of the protocols used on networks today. - System.Net.Http + @System.Net.Http Provides a programming interface for modern HTTP applications. - System.Net.Http.Headers + @System.Net.Http.Headers - Provides support for collections of HTTP headers used by the System.Net.Http namespace. + Provides support for collections of HTTP headers used by the @System.Net.Http namespace. - System.Net.NetworkInformation + @System.Net.NetworkInformation - Provides access to network traffic data, network address information, and notification of address changes for the local computer. The namespace also contains classes that implement the Ping utility. You can use Ping and related classes to check whether a computer is reachable across the network. + Provides access to network traffic data, network address information, and notification of address changes for the local computer. The namespace also contains classes that implement the @System.Net.NetworkInformation.Ping utility. You can use Ping and related classes to check whether a computer is reachable across the network. - System.Net.Security + @System.Net.Security Provides network streams for secure communications between hosts. - System.Net.Sockets + @System.Net.Sockets Provides a managed sockets implementation for developers who need to tightly control access to the network. - System.Net.WebSockets + @System.Net.WebSockets Provides a managed implementation of the WebSocket interface for developers. - System.Numerics + @System.Numerics Contains numeric types that complement the numeric primitives (such as Byte, Double, and Int32) that are available in .NET Core. - System.Reflection + @System.Reflection Contains types that retrieve information at runtime about assemblies, modules, members, parameters, and other entities in managed code by examining their metadata. These types also can be used to manipulate instances of loaded types, for example to hook up events or to invoke methods. - System.Reflection.Context + @System.Reflection.Context Contains single class that can be used to create a customized reflection context. - System.Reflection.Emit + @System.Reflection.Emit Contains classes that can emit metadata and Microsoft intermediate language (MSIL) and optionally generate a PE file on disk. The primary clients of these classes are script engines and compilers. - System.Reflection.Metadata + @System.Reflection.Metadata Contains a class with single extension method that retrieves raw metadata from an assembly. - System.Resources + @System.Resources - Contains classes that allow developers to create, store, and retrieve culture-specific string resources used in an application. One of its most important classes is the ResourceManager class. + Contains classes that allow developers to create, store, and retrieve culture-specific string resources used in an application. One of its most important classes is the @System.Resources.ResourceManager class. - System.Runtime + @System.Runtime Contains types that control the operation of the runtime's garbage collector. - System.Runtime.CompilerServices + @System.Runtime.CompilerServices Provides functionality for compiler writers who use managed code to specify attributes in metadata that affect the run-time behavior of the runtime. - System.Runtime.ExceptionServices + @System.Runtime.ExceptionServices Contains a single class to represent an exception whose state is captured at a certain point in code. - System.Runtime.InteropServices + @System.Runtime.InteropServices Provides a wide variety of members that support COM interop and platform invoke services. - System.Runtime.InteropServices.ComTypes + @System.Runtime.InteropServices.ComTypes Contains types that represent COM interfaces and data used in COM function calls. - System.Runtime.InteropServices.WindowsRuntime + @System.Runtime.InteropServices.WindowsRuntime Contains types that support interoperation between managed code and the Windows Runtime, and that enable the creation of Windows Runtime types with managed code. - System.Runtime.Loader + @System.Runtime.Loader Contains a single class that represents an assembly's load context. - System.Runtime.Serialization + @System.Runtime.Serialization Contains classes that can be used for serializing and deserializing objects. Serialization converts an object or a graph of objects into a linear sequence of bytes for either storage or transmission to another location. Deserialization recreates objects from this stored information. - System.Runtime.Serialization.Json + @System.Runtime.Serialization.Json Provides classes related to JSON serialization. - System.Runtime.Versioning + @System.Runtime.Versioning Contains advanced types that support versioning in side-by-side implementations of the .NET Platform Standard. - System.Security + @System.Security Provides the underlying structure of the runtime's security system, including base classes for permissions. - System.Security.AccessControl + @System.Security.AccessControl Provides programmatic elements that control access to and audit security-related actions on securable objects. - System.Security.Authentication + @System.Security.Authentication Contains authentication exception types and a set of enumerations that describe the security of a connection. - System.Security.Authentication.ExtendedProtection + @System.Security.Authentication.ExtendedProtection Provides support for authentication using extended protection for applications. - System.Security.Claims + @System.Security.Claims Contains classes that implement claims-based identity, including classes that represent claims, claims-based identities, and claims-based principals. - System.Security.Cryptography + @System.Security.Cryptography Provides cryptographic services, including secure encoding and decoding of data, as well as many other operations, such as hashing, random number generation, and message authentication. - System.Security.Cryptography.Pkcs + @System.Security.Cryptography.Pkcs Provides programming elements for Public Key Cryptography Standards (PKCS), including methods for signing data, exchanging keys, requesting certificates, public key encryption and decryption, and other security functions. - System.Security.Cryptography.X509Certificates + @System.Security.Cryptography.X509Certificates Contains the runtime's implementation of the Authenticode X.509 v.3 certificate. This certificate is signed with a private key that uniquely and positively identifies the holder of the certificate. - System.Security.Cryptography.Xml + @System.Security.Cryptography.Xml Contains a single type that represents the <X509IssuerSerial> element of an XML digital signature. - System.Security.Principal + @System.Security.Principal Defines a principal object that represents the security context under which code is running. - System.ServiceProcess + @System.ServiceProcess Provides types that allow you to connect to and control a Windows service application. Windows services are long-running executables with no user interface. - System.Text + @System.Text - Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats String objects without creating intermediate String instances. + Contains classes that represent ASCII and Unicode character encodings; abstract base classes for converting blocks of characters to and from blocks of bytes; and a helper class that manipulates and formats @System.String objects without creating intermediate @System.String instances. - System.Text.RegularExpressions + @System.Text.RegularExpressions Contains classes that represent the .NET regular expression engine, which allows you to search text for particular patterns. - System.Threading + @System.Threading - Provides types that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data (such as Mutex, Monitor, Interlocked, and AutoResetEvent), this namespace includes a ThreadPool class that allows you to use a pool of system-supplied threads, and a Timer class that executes callback methods on thread pool threads. + Provides types that enable multithreaded programming. In addition to classes for synchronizing thread activities and access to data (such as @System.Threading.Mutex, @System.Threading.Monitor, @System.Threading.Interlocked, and @System.Threading.AutoResetEvent), this namespace includes a @System.Threading.ThreadPool class that allows you to use a pool of system-supplied threads, and a @System.Threading.Timer class that executes callback methods on thread pool threads. - System.Threading.Tasks + @System.Threading.Tasks - Provides types that simplify the work of writing concurrent and asynchronous code. The main types are Task, which represents an asynchronous operation that can be waited on and canceled, and Task<TResult>, which is a task that can return a value. + Provides types that simplify the work of writing concurrent and asynchronous code. The main types are @System.Threading.Tasks.Task, which represents an asynchronous operation that can be waited on and canceled, and @System.Threading.Tasks.Task`1, which is a task that can return a value. - System.Windows.Input + @System.Windows.Input - Defines a single interface, ICommand, that can be used to provide the commanding behavior for UI elements in Windows Runtime apps. + Defines a single interface, @System.Windows.Input.ICommand, that can be used to provide the commanding behavior for UI elements in Windows Runtime apps. - System.Xml + @System.Xml Provides standards-based support for processing XML. - System.Xml.Linq + @System.Xml.Linq Contains types that support LINQ to XML, an in-memory XML programming interface that lets you modify XML documents efficiently and easily. - System.Xml.Schema + @System.Xml.Schema Contains types that provide standards-based support for XML Schema Definition Language (XSD) schemas. - System.Xml.Serialization + @System.Xml.Serialization Contains types that are used to serialize objects into XML format documents or streams. - System.Xml.XPath + @System.Xml.XPath Contains types that define a cursor model for navigating and editing XML information items as instances of the XQuery 1.0 and XPath 2.0 Data Model. - System.Xml.Xsl + @System.Xml.Xsl Provides support for Extensible Stylesheet Transformation (XSLT) transforms. It supports the W3C XSL Transformations (XSLT) Version 1.0 Recommendation. - Windows.Foundation + @Windows.Foundation Contains some basic types used in Universal Windows Platform apps. - Windows.UI + @Windows.UI - Contains a Color type used in Universal Windows Platform apps. + Contains a @Windows.UI.Color type used in Universal Windows Platform apps. - Windows.UI.Xaml + @Windows.UI.Xaml Contains XAML-related types used in Universal Windows Platform apps. - Windows.UI.Xaml.Automation + @Windows.UI.Xaml.Automation Contains exception types for exceptions thrown by routines that implement UI automation support for custom controls in Universal Windows Platform apps. - Windows.UI.Xaml.Controls.Primitives + @Windows.UI.Xaml.Controls.Primitives - Contains a single type, GeneratorPosition, that describes the position of an item in a Universal Windows Platform app. + Contains a single type, @Windows.UI.Xaml.Controls.Primitives.GeneratorPosition, that describes the position of an item in a Universal Windows Platform app. - Windows.UI.Xaml.Markup + @Windows.UI.Xaml.Markup Contains an exception type that represents a Xaml parsing error. - Windows.UI.Xaml.Media + @Windows.UI.Xaml.Media - Contains a single type, Matrix, which represents a 3 × 3 affine transformation matrix used for transformations in two-dimensional space in Universal Windows Platform apps. + Contains a single type, @Windows.UI.Xaml.Media.Matrix, which represents a 3 × 3 affine transformation matrix used for transformations in two-dimensional space in Universal Windows Platform apps. - Windows.UI.Xaml.Media.Animation + @Windows.UI.Xaml.Media.Animation Contains types that provide information about transition animations or animated UI components in Universal Windows Platform apps. - Windows.UI.Xaml.Media.Media3D + @Windows.UI.Xaml.Media.Media3D - Contains a single type, Matrix3D, that represents a 4 × 4 matrix used for transformations in a 3-D space in Universal Windows Platform apps. + Contains a single type, @Windows.UI.Xaml.Media.Media3D.Matrix3D, that represents a 4 × 4 matrix used for transformations in a 3-D space in Universal Windows Platform apps.