📄 opennetcf.xml
字号:
<?xml version="1.0"?>
<doc>
<assembly>
<name>OpenNETCF</name>
</assembly>
<members>
<member name="T:OpenNETCF.ComponentModel.License">
<summary>
Provides the abstract base class for all licenses. A license is granted to a specific instance of a component.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.License.#ctor">
<summary>
Initializes a new instance of the License class.
</summary>
</member>
<member name="T:OpenNETCF.ComponentModel.LicenseManager">
<summary>
Provides properties and methods to add a license to a component and to manage a LicenseProvider. This class cannot be inherited.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.LicenseManager.IsValid(System.Type,OpenNETCF.ComponentModel.License@)">
<summary>
Determines whether a valid license can be granted for the specified instance of the type. This method creates a valid License.
</summary>
<param name="type">A System.Type that represents the type of object that requests the License.</param>
<param name="license">A License that is a valid license, or null if a valid license cannot be granted.</param>
<returns>true if a valid license can be granted; otherwise, false.</returns>
</member>
<member name="M:OpenNETCF.ComponentModel.LicenseManager.Validate(System.Type)">
<summary>
Determines whether a valid license can be granted for the specified type.
</summary>
<param name="type">A System.Type that represents the type of object that requests the License.</param>
<returns>A valid OpenNETCF.ComponentModel.License.</returns>
</member>
<member name="M:OpenNETCF.ComponentModel.LicenseManager.IsValid(System.Type)">
<summary>
Determines whether a valid license can be granted for the specified type.
</summary>
<param name="type">A System.Type that represents the type of object that requests the License.</param>
<returns>true if a valid license can be granted; otherwise, false.</returns>
</member>
<member name="T:OpenNETCF.ComponentModel.LicenseProvider">
<summary>
Provides the abstract base class for implementing a license provider.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.LicenseProvider.#ctor">
<summary>
Initializes a new instance of the OpenNETCF.ComponentModel.LicenseProvider class.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.LicenseProvider.GetLicense(System.Type,System.Reflection.Assembly,OpenNETCF.ComponentModel.LicenseResourceType,System.Boolean)">
<summary>
When overridden in a derived class, gets a license for an instance or type of component, when given a context and whether the denial of a license throws an exception.
</summary>
<param name="type">A System.Type that represents the component requesting the license.</param>
<param name="typeAssembly"></param>
<param name="resourceType">LicenseResourceType that represents the way the client license is supplied.</param>
<param name="allowExceptions">true if a System.ComponentModel.LicenseException should be thrown when the component cannot be granted a license; otherwise, false.</param>
<returns>A valid OpenNETCF.ComponentModel.License.</returns>
</member>
<member name="T:OpenNETCF.ComponentModel.LicenseProviderAttribute">
<summary>
Specifies the OpenNETCF.ComponentModel.LicenseProvider to use with a class. This class cannot be inherited.
</summary>
</member>
<member name="T:OpenNETCF.ComponentModel.PublicKeyLicenseProvider">
<summary>
Provides an implementation of a OpenNETCF.ComponentModel.LicenseProvider.
</summary>
</member>
<member name="M:OpenNETCF.ComponentModel.PublicKeyLicenseProvider.GetLicense(System.Type,System.Reflection.Assembly,OpenNETCF.ComponentModel.LicenseResourceType,System.Boolean)">
<summary>
Returns a license for the instance of the component, if one is available.
</summary>
<param name="type"></param>
<param name="allowExceptions"></param>
<param name="resourceType"></param>
<param name="typeAssembly"></param>
<returns></returns>
</member>
<member name="T:OpenNETCF.Diagnostics.TraceLevel">
<summary>
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.TraceLevel.Off">
<summary>
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.TraceLevel.Error">
<summary>
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.TraceLevel.Warning">
<summary>
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.TraceLevel.Info">
<summary>
</summary>
</member>
<member name="F:OpenNETCF.Diagnostics.TraceLevel.Verbose">
<summary>
</summary>
</member>
<member name="T:OpenNETCF.IO.DriveInfo">
<summary>
Provides access to information on a drive.
</summary>
<remarks>This class models a drive and provides methods and properties to query for drive information.
Use <see cref="T:OpenNETCF.IO.DriveInfo"/> to determine what drives are available, and the capacity and available free space on the drive.</remarks>
</member>
<member name="M:OpenNETCF.IO.DriveInfo.#ctor(System.String)">
<summary>
Provides access to information on the specified drive.
</summary>
<param name="driveName"></param>
<remarks>Use this class to obtain information on drives.
The drive name must be a valid Windows CE volume path e.g. "\Storage Card".
You cannot use this method to obtain information on drive names that are a null reference (Nothing in Visual Basic) or use UNC (\\server\share) paths.</remarks>
<exception cref="T:System.ArgumentNullException">The drive name cannot be a null reference (Nothing in Visual Basic).</exception>
</member>
<member name="M:OpenNETCF.IO.DriveInfo.ToString">
<summary>
Returns a drive name as a string.
</summary>
<returns>The name of the drive.</returns>
</member>
<member name="M:OpenNETCF.IO.DriveInfo.GetDrives">
<summary>
Retrieves the drive names of all logical drives on a computer.
</summary>
<returns></returns>
</member>
<member name="P:OpenNETCF.IO.DriveInfo.RootDirectory">
<summary>
Gets the root directory of a drive.
</summary>
</member>
<member name="P:OpenNETCF.IO.DriveInfo.AvailableFreeSpace">
<summary>
Indicates the amount of available free space on a drive.
</summary>
</member>
<member name="P:OpenNETCF.IO.DriveInfo.TotalFreeSpace">
<summary>
Gets the total amount of free space available on a drive.
</summary>
</member>
<member name="P:OpenNETCF.IO.DriveInfo.TotalSize">
<summary>
Gets the total size of storage space on a drive.
</summary>
</member>
<member name="T:OpenNETCF.IO.FileAccess2">
<summary>
CreateFile file access flags
</summary>
</member>
<member name="F:OpenNETCF.IO.FileAccess2.Read">
<summary>
Read access to the file. Data can be read from the file.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileAccess2.Write">
<summary>
Write access to the file. Data can be written to the file.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileAccess2.Execute">
<summary>
Execute permission. The file can be executed.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileAccess2.All">
<summary>
All permissions.
</summary>
</member>
<member name="T:OpenNETCF.IO.FileCreateDisposition">
<summary>
Specifies which action to take on files that exist, and which action to take when files do not exist.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileCreateDisposition.CreateNew">
<summary>
Creates a new file.
The function fails if the specified file already exists.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileCreateDisposition.CreateAlways">
<summary>
Creates a new file.
If the file exists, the function overwrites the file and clears the existing attributes.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileCreateDisposition.OpenExisting">
<summary>
Opens the file.
The function fails if the file does not exist.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileCreateDisposition.OpenAlways">
<summary>
Opens the file, if it exists.
If the file does not exist, the function creates the file as if dwCreationDisposition were <b>CreateNew</b>.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileCreateDisposition.TruncateExisting">
<summary>
Opens the file.
Once opened, the file is truncated so that its size is zero bytes. The calling process must open the file with at least Write access.
</summary>
</member>
<member name="T:OpenNETCF.IO.FileFlags">
<summary>
CreateFile file flags
</summary>
</member>
<member name="F:OpenNETCF.IO.FileFlags.WriteThrough">
<summary>
Instructs the system to write through any intermediate cache and go directly to disk.
The system can still cache write operations, but cannot lazily flush them.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileFlags.Overlapped">
<summary>
This flag is not supported; however, multiple read/write operations pending on a device at a time are allowed.
</summary>
</member>
<member name="F:OpenNETCF.IO.FileFlags.RandomAccess">
<summary>
Indicates that the file is accessed randomly.
The system can use this as a hint to optimize file caching.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -