diff --git a/ModernKeePass/ModernKeePass.csproj b/ModernKeePass/ModernKeePass.csproj index 668c41d..d7eba55 100644 --- a/ModernKeePass/ModernKeePass.csproj +++ b/ModernKeePass/ModernKeePass.csproj @@ -159,8 +159,8 @@ - - ..\packages\ModernKeePassLib.2.19.2950\lib\netstandard1.2\ModernKeePassLib.dll + + ..\packages\ModernKeePassLib.2.19.0.26356\lib\netstandard1.2\ModernKeePassLib.dll True diff --git a/ModernKeePass/packages.config b/ModernKeePass/packages.config index 0fe5e0a..50214e2 100644 --- a/ModernKeePass/packages.config +++ b/ModernKeePass/packages.config @@ -2,10 +2,11 @@ - + + \ No newline at end of file diff --git a/ModernKeePassLib/Cryptography/HashingStreamEx.cs b/ModernKeePassLib/Cryptography/HashingStreamEx.cs index 40a8dda..3d7246b 100644 --- a/ModernKeePassLib/Cryptography/HashingStreamEx.cs +++ b/ModernKeePassLib/Cryptography/HashingStreamEx.cs @@ -17,6 +17,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +using ModernKeePassLib.Utility; using System; using System.Collections.Generic; using System.IO; diff --git a/ModernKeePassLib/PwDatabase.cs b/ModernKeePassLib/PwDatabase.cs index f0e858f..6e57aab 100644 --- a/ModernKeePassLib/PwDatabase.cs +++ b/ModernKeePassLib/PwDatabase.cs @@ -610,7 +610,7 @@ namespace ModernKeePassLib /// it has been opened from. /// /// Logger that recieves status information. - public void Save(IStatusLogger slLogger) + public async void Save(IStatusLogger slLogger) { Debug.Assert(ValidateUuidUniqueness()); @@ -620,7 +620,7 @@ namespace ModernKeePassLib { FileTransactionEx ft = new FileTransactionEx(m_ioSource, m_bUseFileTransactions); - Stream s = ft.OpenWrite(); + Stream s = await ft.OpenWrite(); Kdb4File kdb = new Kdb4File(this); kdb.Save(s, null, Kdb4Format.Default, slLogger); @@ -631,6 +631,8 @@ namespace ModernKeePassLib m_pbHashOfFileOnDisk = kdb.HashOfFileOnDisk; Debug.Assert(m_pbHashOfFileOnDisk != null); } + catch (Exception ex) + { } finally { if(fl != null) fl.Dispose(); } m_bModified = false; diff --git a/ModernKeePassLib/Serialization/FileTransactionEx.cs b/ModernKeePassLib/Serialization/FileTransactionEx.cs index b198d6b..c9a43dd 100644 --- a/ModernKeePassLib/Serialization/FileTransactionEx.cs +++ b/ModernKeePassLib/Serialization/FileTransactionEx.cs @@ -22,6 +22,7 @@ using System.Collections.Generic; using System.Text; using System.IO; using System.Diagnostics; +using System.Threading.Tasks; // Bert TODO: For now, remove the accesscontrol from this class. // In WinRT, the security of file has changed, and something could potentially be done @@ -70,7 +71,7 @@ namespace ModernKeePassLib.Serialization else m_iocTemp = m_iocBase; } - public Stream OpenWrite() + public async Task OpenWrite() { if(!m_bTransacted) m_bMadeUnhidden = UrlUtil.UnhideFile(m_iocTemp.Path); else // m_bTransacted @@ -79,7 +80,7 @@ namespace ModernKeePassLib.Serialization catch(Exception) { } } - return IOConnection.OpenWrite(m_iocTemp); + return await IOConnection.OpenWrite(m_iocTemp); } public void CommitWrite() diff --git a/ModernKeePassLib/Serialization/IOConnection.cs b/ModernKeePassLib/Serialization/IOConnection.cs index d5ca611..c36b4a6 100644 --- a/ModernKeePassLib/Serialization/IOConnection.cs +++ b/ModernKeePassLib/Serialization/IOConnection.cs @@ -281,18 +281,24 @@ namespace ModernKeePassLib.Serialization return CreateWebClient(ioc).OpenWrite(uri); } #else - public static Stream OpenWrite(IOConnectionInfo ioc) + public async static Task OpenWrite(IOConnectionInfo ioc) { - return OpenWriteLocal(ioc); + return await OpenWriteLocal(ioc); } #endif - private static Stream OpenWriteLocal(IOConnectionInfo ioc) + private async static Task OpenWriteLocal(IOConnectionInfo ioc) { - Debug.Assert(false, "Not implemented yet"); - return null; - // return new FileStream(ioc.Path, FileMode.Create, FileAccess.Write, - // FileShare.None); + try + { + IRandomAccessStream stream = await ioc.StorageFile.OpenAsync(FileAccessMode.ReadWrite); + return stream.AsStream(); + } + catch (Exception ex) + { + Debug.Assert(false, ex.Message); + return null; + } } public static bool FileExists(IOConnectionInfo ioc) diff --git a/packages/ModernKeePassLib.2.19.0.26356/lib/netstandard1.2/ModernKeePassLib.dll b/packages/ModernKeePassLib.2.19.0.26356/lib/netstandard1.2/ModernKeePassLib.dll new file mode 100644 index 0000000..36deb37 Binary files /dev/null and b/packages/ModernKeePassLib.2.19.0.26356/lib/netstandard1.2/ModernKeePassLib.dll differ diff --git a/packages/ModernKeePassLib.2.19.2950/lib/netstandard1.2/ModernKeePassLib.dll b/packages/ModernKeePassLib.2.19.2950/lib/netstandard1.2/ModernKeePassLib.dll deleted file mode 100644 index 25b0187..0000000 Binary files a/packages/ModernKeePassLib.2.19.2950/lib/netstandard1.2/ModernKeePassLib.dll and /dev/null differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ThirdPartyNotices.txt b/packages/System.Xml.ReaderWriter.4.3.0/ThirdPartyNotices.txt new file mode 100644 index 0000000..55cfb20 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ThirdPartyNotices.txt @@ -0,0 +1,31 @@ +This Microsoft .NET Library may incorporate components from the projects listed +below. Microsoft licenses these components under the Microsoft .NET Library +software license terms. The original copyright notices and the licenses under +which Microsoft received such components are set forth below for informational +purposes only. Microsoft reserves all rights not expressly granted herein, +whether by implication, estoppel or otherwise. + +1. .NET Core (https://github.com/dotnet/core/) + +.NET Core +Copyright (c) .NET Foundation and Contributors + +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/dotnet_library_license.txt b/packages/System.Xml.ReaderWriter.4.3.0/dotnet_library_license.txt new file mode 100644 index 0000000..92b6c44 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/dotnet_library_license.txt @@ -0,0 +1,128 @@ + +MICROSOFT SOFTWARE LICENSE TERMS + + +MICROSOFT .NET LIBRARY + +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft + +· updates, + +· supplements, + +· Internet-based services, and + +· support services + +for this software, unless other terms accompany those items. If so, those terms apply. + +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + +IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. + +1. INSTALLATION AND USE RIGHTS. + +a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs. + +b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only. + +2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS. + +a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below. + +i. Right to Use and Distribute. + +· You may copy and distribute the object code form of the software. + +· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs. + +ii. Distribution Requirements. For any Distributable Code you distribute, you must + +· add significant primary functionality to it in your programs; + +· require distributors and external end users to agree to terms that protect it at least as much as this agreement; + +· display your valid copyright notice on your programs; and + +· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs. + +iii. Distribution Restrictions. You may not + +· alter any copyright, trademark or patent notice in the Distributable Code; + +· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft; + +· include Distributable Code in malicious, deceptive or unlawful programs; or + +· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that + +· the code be disclosed or distributed in source code form; or + +· others have the right to modify it. + +3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not + +· work around any technical limitations in the software; + +· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; + +· publish the software for others to copy; + +· rent, lease or lend the software; + +· transfer the software or this agreement to any third party; or + +· use the software for commercial software hosting services. + +4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. + +5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. + +6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. + +7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. + +8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. + +9. APPLICABLE LAW. + +a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. + +b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. + +10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. + +11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. + +FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. + +12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. + +This limitation applies to + +· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and + +· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. + +It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. + +Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French. + +Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français. + +EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues. + +LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices. + +Cette limitation concerne : + +· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et + +· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur. + +Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard. + +EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas. + + diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/MonoAndroid10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/MonoAndroid10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/MonoTouch10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/MonoTouch10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/net45/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/net45/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/net46/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/lib/net46/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..3d5103b Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/lib/net46/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/netcore50/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/lib/netcore50/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..022e63a Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/lib/netcore50/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/netstandard1.3/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/lib/netstandard1.3/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..022e63a Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/lib/netstandard1.3/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/win8/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/win8/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/wp80/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/wp80/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/wpa81/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/wpa81/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinios10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinios10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinmac20/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinmac20/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarintvos10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarintvos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinwatchos10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/lib/xamarinwatchos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/MonoAndroid10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/MonoAndroid10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/MonoTouch10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/MonoTouch10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/net45/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/net45/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/net46/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/ref/net46/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..3d5103b Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/ref/net46/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..1987219 Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..e2f9250 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/System.Xml.ReaderWriter.xml @@ -0,0 +1,2608 @@ + + + + System.Xml.ReaderWriter + + + + Specifies the amount of input or output checking that and objects perform. + + + The or object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another or object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.See the and properties for details on how the compliance level is determined. + + + The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C. + + + The XML data is a well-formed XML fragment, as defined by the W3C. + + + Specifies the options for processing DTDs. The enumeration is used by the class. + + + Causes the DOCTYPE element to be ignored. No DTD processing occurs. + + + Specifies that when a DTD is encountered, an is thrown with a message that states that DTDs are prohibited. This is the default behavior. + + + Provides an interface to enable a class to return line and position information. + + + Gets a value indicating whether the class can return line information. + true if and can be provided; otherwise, false. + + + Gets the current line number. + The current line number or 0 if no line information is available (for example, returns false). + + + Gets the current line position. + The current line position or 0 if no line information is available (for example, returns false). + + + Provides read-only access to a set of prefix and namespace mappings. + + + Gets a collection of defined prefix-namespace mappings that are currently in scope. + An that contains the current in-scope namespaces. + An value that specifies the type of namespace nodes to return. + + + Gets the namespace URI mapped to the specified prefix. + The namespace URI that is mapped to the prefix; null if the prefix is not mapped to a namespace URI. + The prefix whose namespace URI you wish to find. + + + Gets the prefix that is mapped to the specified namespace URI. + The prefix that is mapped to the namespace URI; null if the namespace URI is not mapped to a prefix. + The namespace URI whose prefix you wish to find. + + + Specifies whether to remove duplicate namespace declarations in the . + + + Specifies that duplicate namespace declarations will not be removed. + + + Specifies that duplicate namespace declarations will be removed. For the duplicate namespace to be removed, the prefix and the namespace must match. + + + Implements a single-threaded . + + + Initializes a new instance of the NameTable class. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if one already exists in the NameTable. If is zero, String.Empty is returned. + The character array containing the string to add. + The zero-based index into the array specifying the first character of the string. + The number of characters in the string. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if it already exists in the NameTable. + The string to add. + + is null. + + + Gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Gets the atomized string with the specified value. + The atomized string object or null if the string has not already been atomized. + The name to find. + + is null. + + + Specifies how to handle line breaks. + + + New line characters are entitized. This setting preserves all characters when the output is read by a normalizing . + + + The new line characters are unchanged. The output is the same as the input. + + + New line characters are replaced to match the character specified in the property. + + + Specifies the state of the reader. + + + The method has been called. + + + The end of the file has been reached successfully. + + + An error occurred that prevents the read operation from continuing. + + + The Read method has not been called. + + + The Read method has been called. Additional methods may be called on the reader. + + + Specifies the state of the . + + + Indicates that an attribute value is being written. + + + Indicates that the method has been called. + + + Indicates that element content is being written. + + + Indicates that an element start tag is being written. + + + An exception has been thrown, which has left the in an invalid state. You can call the method to put the in the state. Any other method calls results in an . + + + Indicates that the prolog is being written. + + + Indicates that a Write method has not yet been called. + + + Encodes and decodes XML names, and provides methods for converting between common language runtime types and XML Schema definition language (XSD) types. When converting data types, the values returned are locale-independent. + + + Decodes a name. This method does the reverse of the and methods. + The decoded name. + The name to be transformed. + + + Converts the name to a valid XML local name. + The encoded name. + The name to be encoded. + + + Converts the name to a valid XML name. + Returns the name with any invalid characters replaced by an escape string. + A name to be translated. + + + Verifies the name is valid according to the XML specification. + The encoded name. + The name to be encoded. + + + Converts the to a equivalent. + A Boolean value, that is, true or false. + The string to convert. + + is null. + + does not represent a Boolean value. + + + Converts the to a equivalent. + A Byte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Char representing the single character. + The string containing a single character to convert. + The value of the parameter is null. + The parameter contains more than one character. + + + Converts the to a using the specified + A equivalent of the . + The value to convert. + One of the values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert.Note   The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values. For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + The format from which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against this format. + + is null. + + or is an empty string or is not in the specified format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + An array of formats from which can be converted. Each format in can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against one of these formats. + + + Converts the to a equivalent. + A Decimal equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Double equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Guid equivalent of the string. + The string to convert. + + + Converts the to a equivalent. + An Int16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An SByte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Single equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a . + A string representation of the Boolean, that is, "true" or "false". + The value to convert. + + + Converts the to a . + A string representation of the Byte. + The value to convert. + + + Converts the to a . + A string representation of the Char. + The value to convert. + + + Converts the to a using the specified. + A equivalent of the . + The value to convert. + One of the values that specify how to treat the value. + The value is not valid. + The or value is null. + + + Converts the supplied to a . + A representation of the supplied . + The to be converted. + + + Converts the supplied to a in the specified format. + A representation in the specified format of the supplied . + The to be converted. + The format to which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Converts the to a . + A string representation of the Decimal. + The value to convert. + + + Converts the to a . + A string representation of the Double. + The value to convert. + + + Converts the to a . + A string representation of the Guid. + The value to convert. + + + Converts the to a . + A string representation of the Int16. + The value to convert. + + + Converts the to a . + A string representation of the Int32. + The value to convert. + + + Converts the to a . + A string representation of the Int64. + The value to convert. + + + Converts the to a . + A string representation of the SByte. + The value to convert. + + + Converts the to a . + A string representation of the Single. + The value to convert. + + + Converts the to a . + A string representation of the TimeSpan. + The value to convert. + + + Converts the to a . + A string representation of the UInt16. + The value to convert. + + + Converts the to a . + A string representation of the UInt32. + The value to convert. + + + Converts the to a . + A string representation of the UInt64. + The value to convert. + + + Converts the to a equivalent. + A TimeSpan equivalent of the string. + The string to convert. The string format must conform to the W3C XML Schema Part 2: Datatypes recommendation for duration. + + is not in correct format to represent a TimeSpan value. + + + Converts the to a equivalent. + A UInt16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifies that the name is a valid name according to the W3C Extended Markup Language recommendation. + The name, if it is a valid XML name. + The name to verify. + + is not a valid XML name. + + is null or String.Empty. + + + Verifies that the name is a valid NCName according to the W3C Extended Markup Language recommendation. An NCName is a name that cannot contain a colon. + The name, if it is a valid NCName. + The name to verify. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifies that the string is a valid NMTOKEN according to the W3C XML Schema Part2: Datatypes recommendation + The name token, if it is a valid NMTOKEN. + The string you wish to verify. + The string is not a valid name token. + + is null. + + + Returns the passed in string instance if all the characters in the string argument are valid public id characters. + Returns the passed-in string if all the characters in the argument are valid public id characters. + + that contains the id to validate. + + + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters. + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters, otherwise null. + + to verify. + + + Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + Returns the passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + + that contains characters to verify. + + + Specifies how to treat the time value when converting between string and . + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + Time zone information should be preserved when converting. + + + Treat as a local time if a is being converted to a string. + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + Returns detailed information about the last exception. + + + Initializes a new instance of the XmlException class. + + + Initializes a new instance of the XmlException class with a specified error message. + The error description. + + + Initializes a new instance of the XmlException class. + The description of the error condition. + The that threw the XmlException, if any. This value can be null. + + + Initializes a new instance of the XmlException class with the specified message, inner exception, line number, and line position. + The error description. + The exception that is the cause of the current exception. This value can be null. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets the line number indicating where the error occurred. + The line number indicating where the error occurred. + + + Gets the line position indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets a message describing the current exception. + The error message that explains the reason for the exception. + + + Resolves, adds, and removes namespaces to a collection and provides scope management for these namespaces. + + + Initializes a new instance of the class with the specified . + The to use. + null is passed to the constructor + + + Adds the given namespace to the collection. + The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.NoteIf the will be used for resolving namespaces in an XML Path Language (XPath) expression, a prefix must be specified. If an XPath expression does not include a prefix, it is assumed that the namespace Uniform Resource Identifier (URI) is the empty namespace. For more information about XPath expressions and the , refer to the and methods. + The namespace to add. + The value for is "xml" or "xmlns". + The value for or is null. + + + Gets the namespace URI for the default namespace. + Returns the namespace URI for the default namespace, or String.Empty if there is no default namespace. + + + Returns an enumerator to use to iterate through the namespaces in the . + An containing the prefixes stored by the . + + + Gets a collection of namespace names keyed by prefix which can be used to enumerate the namespaces currently in scope. + A collection of namespace and prefix pairs currently in scope. + An enumeration value that specifies the type of namespace nodes to return. + + + Gets a value indicating whether the supplied prefix has a namespace defined for the current pushed scope. + true if there is a namespace defined; otherwise, false. + The prefix of the namespace you want to find. + + + Gets the namespace URI for the specified prefix. + Returns the namespace URI for or null if there is no mapped namespace. The returned string is atomized.For more information on atomized strings, see the class. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass String.Empty. + + + Finds the prefix declared for the given namespace URI. + The matching prefix. If there is no mapped prefix, the method returns String.Empty. If a null value is supplied, then null is returned. + The namespace to resolve for the prefix. + + + Gets the associated with this object. + The used by this object. + + + Pops a namespace scope off the stack. + true if there are namespace scopes left on the stack; false if there are no more namespaces to pop. + + + Pushes a namespace scope onto the stack. + + + Removes the given namespace for the given prefix. + The prefix for the namespace + The namespace to remove for the given prefix. The namespace removed is from the current namespace scope. Namespaces outside the current scope are ignored. + The value of or is null. + + + Defines the namespace scope. + + + All namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces that are defined locally at the current node. + + + Table of atomized string objects. + + + Initializes a new instance of the class. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. If length is zero, String.Empty is returned. + The character array containing the name to add. + Zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. + The name to add. + + is null. + + + When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to look up. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, gets the atomized string containing the same value as the specified string. + The atomized string or null if the string has not already been atomized. + The name to look up. + + is null. + + + Specifies the type of node. + + + An attribute (for example, id='123' ). + + + A CDATA section (for example, <![CDATA[my escaped text]]> ). + + + A comment (for example, <!-- my comment --> ). + + + A document object that, as the root of the document tree, provides access to the entire XML document. + + + A document fragment. + + + The document type declaration, indicated by the following tag (for example, <!DOCTYPE...> ). + + + An element (for example, <item> ). + + + An end element tag (for example, </item> ). + + + Returned when XmlReader gets to the end of the entity replacement as a result of a call to . + + + An entity declaration (for example, <!ENTITY...> ). + + + A reference to an entity (for example, &num; ). + + + This is returned by the if a Read method has not been called. + + + A notation in the document type declaration (for example, <!NOTATION...> ). + + + A processing instruction (for example, <?pi test?> ). + + + White space between markup in a mixed content model or white space within the xml:space="preserve" scope. + + + The text content of a node. + + + White space between markup. + + + The XML declaration (for example, <?xml version='1.0'?> ). + + + Provides all the context information required by the to parse an XML fragment. + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD subset is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, encoding, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, and xml:space values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, xml:space, and encoding. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information on atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Gets or sets the base URI. + The base URI to use to resolve the DTD file. + + + Gets or sets the name of the document type declaration. + The name of the document type declaration. + + + Gets or sets the encoding type. + An object indicating the encoding type. + + + Gets or sets the internal DTD subset. + The internal DTD subset. For example, this property returns everything between the square brackets <!DOCTYPE doc [...]>. + + + Gets or sets the . + The XmlNamespaceManager. + + + Gets the used to atomize strings. For more information on atomized strings, see . + The XmlNameTable. + + + Gets or sets the public identifier. + The public identifier. + + + Gets or sets the system identifier. + The system identifier. + + + Gets or sets the current xml:lang scope. + The current xml:lang scope. If there is no xml:lang in scope, String.Empty is returned. + + + Gets or sets the current xml:space scope. + An value indicating the xml:space scope. + + + Represents an XML qualified name. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with the specified name. + The local name to use as the name of the object. + + + Initializes a new instance of the class with the specified name and namespace. + The local name to use as the name of the object. + The namespace for the object. + + + Provides an empty . + + + Determines whether the specified object is equal to the current object. + true if the two are the same instance object; otherwise, false. + The to compare. + + + Returns the hash code for the . + A hash code for this object. + + + Gets a value indicating whether the is empty. + true if name and namespace are empty strings; otherwise, false. + + + Gets a string representation of the qualified name of the . + A string representation of the qualified name or String.Empty if a name is not defined for the object. + + + Gets a string representation of the namespace of the . + A string representation of the namespace or String.Empty if a namespace is not defined for the object. + + + Compares two objects. + true if the two objects have the same name and namespace values; otherwise, false. + An to compare. + An to compare. + + + Compares two objects. + true if the name and namespace values for the two objects differ; otherwise, false. + An to compare. + An to compare. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + The name of the object. + The namespace of the object. + + + Represents a reader that provides fast, noncached, forward-only access to XML data.To browse the .NET Framework source code for this type, see the Reference Source. + + + Initializes a new instance of the XmlReader class. + + + When overridden in a derived class, gets the number of attributes on the current node. + The number of attributes on the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the base URI of the current node. + The base URI of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the binary content read methods. + true if the binary content read methods are implemented; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the method. + true if the implements the method; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether this reader can parse and resolve entities. + true if the reader can parse and resolve entities; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Creates a new instance using the specified stream with default settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + + + Creates a new instance with the specified stream and settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The value is null. + + + Creates a new instance using the specified stream, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The stream that contains the XML data. The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition. This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration is not used by the XML reader to decode the data stream. + The value is null. + + + Creates a new instance by using the specified text reader and settings. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new . This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition.This value can be null. + The value is null. + The and properties both contain values. (Only one of these NameTable properties can be set and used). + + + Creates a new instance with specified URI. + An object that is used to read the XML data in the stream. + The URI for the file that contains the XML data. The class is used to convert the path to a canonical data representation. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + The file identified by the URI does not exist. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified URI and settings. + An object that is used to read the XML data in the stream. + The URI for the file containing the XML data. The object on the object is used to convert the path to a canonical data representation. If is null, a new object is used. + The settings for the new instance. This value can be null. + The value is null. + The file specified by the URI cannot be found. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified XML reader and settings. + An object that is wrapped around the specified object. + The object that you want to use as the underlying XML reader. + The settings for the new instance.The conformance level of the object must either match the conformance level of the underlying reader, or it must be set to . + The value is null. + If the object specifies a conformance level that is not consistent with conformance level of the underlying reader.-or-The underlying is in an or state. + + + When overridden in a derived class, gets the depth of the current node in the XML document. + The depth of the current node in the XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the reader is positioned at the end of the stream. + true if the reader is positioned at the end of the stream; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. This method does not move the reader. + The index of the attribute. The index is zero-based. (The first attribute has index 0.) + + is out of range. It must be non-negative and less than the size of the attribute collection. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. + The qualified name of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. This method does not move the reader. + The local name of the attribute. + The namespace URI of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously gets the value of the current node. + The value of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Gets a value indicating whether the current node has any attributes. + true if the current node has attributes; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node can have a . + true if the node on which the reader is currently positioned can have a Value; otherwise, false. If false, the node has a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema. + true if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; false if the attribute value was explicitly set. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an empty element (for example, <MyElement/>). + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a value indicating whether the string argument is a valid XML name. + true if the name is valid; otherwise, false. + The name to validate. + The value is null. + + + Returns a value indicating whether or not the string argument is a valid XML name token. + true if it is a valid name token; otherwise false. + The name token to validate. + The value is null. + + + Calls and tests if the current content node is a start tag or empty element tag. + true if finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the property of the element found matches the given argument. + true if the resulting node is an element and the Name property matches the specified string. false if a node type other than XmlNodeType.Element was found or if the element Name property does not match the specified string. + The string matched against the Name property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the and properties of the element found match the given strings. + true if the resulting node is an element. false if a node type other than XmlNodeType.Element was found or if the LocalName and NamespaceURI properties of the element do not match the specified strings. + The string to match against the LocalName property of the element found. + The string to match against the NamespaceURI property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found, null is returned. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found, null is returned. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the local name of the current node. + The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, resolves a namespace prefix in the current element's scope. + The namespace URI to which the prefix maps or null if no matching prefix is found. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the attribute with the specified index. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter has a negative value. + + + When overridden in a derived class, moves to the attribute with the specified . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + When overridden in a derived class, moves to the attribute with the specified and . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Checks whether the current node is a content (non-white space text, CDATA, Element, EndElement, EntityReference, or EndEntity) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: ProcessingInstruction, DocumentType, Comment, Whitespace, or SignificantWhitespace. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + Incorrect XML encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously checks whether the current node is a content node. If the node is not a content node, the reader skips ahead to the next content node or end of file. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, moves to the element that contains the current attribute node. + true if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); false if the reader is not positioned on an attribute (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the first attribute. + true if an attribute exists (the reader moves to the first attribute); otherwise, false (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the next attribute. + true if there is a next attribute; false if there are no more attributes. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the qualified name of the current node. + The qualified name of the current node. For example, Name is bk:book for the element <bk:book>.The name returned is dependent on the of the node. The following node types return the listed values. All other node types return an empty string.Node type Name AttributeThe name of the attribute. DocumentTypeThe document type name. ElementThe tag name. EntityReferenceThe name of the entity referenced. ProcessingInstructionThe target of the processing instruction. XmlDeclarationThe literal string xml. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. + The namespace URI of the current node; otherwise an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the associated with this implementation. + The XmlNameTable enabling you to get the atomized version of a string within the node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the type of the current node. + One of the enumeration values that specify the type of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace prefix associated with the current node. + The namespace prefix associated with the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads the next node from the stream. + true if the next node was read successfully; otherwise, false. + An error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the next node from the stream. + true if the next node was read successfully; false if there are no more nodes to read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, parses the attribute value into one or more Text, EntityReference, or EndEntity nodes. + true if there are nodes to return.false if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.An empty attribute, such as, misc="", returns true with a single node with a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. For example, this can be used when converting an object to an xs:string.This value can be null. + The content is not in the correct format for the target type. + The attempted cast is not valid. + The value is null. + The current node is not a supported node type. See the table below for details. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a Boolean. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content at the current position as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a double-precision floating-point number. + The text content as a double-precision floating-point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a single-precision floating point number. + The text content at the current position as a single-precision floating point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 32-bit signed integer. + The text content as a 32-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 64-bit signed integer. + The text content as a 64-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a object. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a double-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as single-precision floating-point number. + The element content as a single-precision floating point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a single-precision floating-point number. + The element content as a single-precision floating point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as a object. + The element content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current content node is an end tag and advances the reader to the next node. + The current node is not an end tag or if incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.If the current node is neither an element nor attribute, an empty string is returned. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current node is an element and advances the reader to the next node. + Incorrect XML was encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and advances the reader to the next node. + The qualified name of the element. + Incorrect XML was encountered in the input stream. -or- The of the element does not match the given . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and and advances the reader to the next node. + The local name of the element. + The namespace URI of the element. + Incorrect XML was encountered in the input stream.-or-The and properties of the element found do not match the given arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the state of the reader. + One of the enumeration values that specifies the state of the reader. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a new XmlReader instance that can be used to read the current node, and all its descendants. + A new XML reader instance set to . Calling the method positions the new reader on the node that was current before the call to the method. + The XML reader isn't positioned on an element when this method is called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Advances the to the next descendant element with the specified qualified name. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The qualified name of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the to the next descendant element with the specified local name and namespace URI. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The local name of the element you wish to move to. + The namespace URI of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads until an element with the specified qualified name is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The qualified name of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Reads until an element with the specified local name and namespace URI is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The local name of the element. + The namespace URI of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Advances the XmlReader to the next sibling element with the specified qualified name. + true if a matching sibling element is found; otherwise false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The qualified name of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the XmlReader to the next sibling element with the specified local name and namespace URI. + true if a matching sibling element is found; otherwise, false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The local name of the sibling element you wish to move to. + The namespace URI of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + The current node does not have a value ( is false). + The value is null. + The index into the buffer, or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The XML data is not well-formed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, resolves the entity reference for EntityReference nodes. + The reader is not positioned on an EntityReference node; this implementation of the reader cannot resolve entities ( returns false). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this reader instance. If this reader was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Skips the children of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously skips the children of the current node. + The current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the text value of the current node. + The value returned depends on the of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space between markup in a mixed content model. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets The Common Language Runtime (CLR) type for the current node. + The CLR type that corresponds to the typed value of the node. The default is System.String. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:space scope. + One of the values. If no xml:space scope exists, this property defaults to XmlSpace.None. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value indicating whether to do character checking. + true to do character checking; otherwise false. The default is true.NoteIf the is processing text data, it always checks that the XML names and text content are valid, regardless of the property setting. Setting to false turns off character checking for character entity references. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. + true to close the underlying stream or when the reader is closed; otherwise false. The default is false. + + + Gets or sets the level of conformance which the will comply. + One of the enumeration values that specifies the level of conformance that the XML reader will enforce. The default is . + + + Gets or sets a value that determines the processing of DTDs. + One of the enumeration values that determines the processing of DTDs. The default is . + + + Gets or sets a value indicating whether to ignore comments. + true to ignore comments; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore processing instructions. + true to ignore processing instructions; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore insignificant white space. + true to ignore white space; otherwise false. The default is false. + + + Gets or sets line number offset of the object. + The line number offset. The default is 0. + + + Gets or sets line position offset of the object. + The line position offset. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in a document that result from expanding entities. + The maximum allowable number of characters from expanded entities. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in an XML document. A zero (0) value means no limits on the size of the XML document. A non-zero value specifies the maximum size, in characters. + The maximum allowable number of characters in an XML document. The default is 0. + + + Gets or sets the used for atomized string comparisons. + The that stores all the atomized strings used by all instances created using this object.The default is null. The created instance will use a new empty if this value is null. + + + Resets the members of the settings class to their default values. + + + Specifies the current xml:space scope. + + + The xml:space scope equals default. + + + No xml:space scope. + + + The xml:space scope equals preserve. + + + Represents a writer that provides a fast, non-cached, forward-only way to generate streams or files that contain XML data. + + + Initializes a new instance of the class. + + + Creates a new instance using the specified stream. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The value is null. + + + Creates a new instance using the stream and object. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which to write to. Content written by the is appended to the . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which to write to. Content written by the is appended to the . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified object. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The value is null. + + + Creates a new instance using the specified and objects. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + The task that represents the asynchronous Flush operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, returns the closest prefix defined in the current namespace scope for the namespace URI. + The matching prefix or null if no matching namespace URI is found in the current scope. + The namespace URI whose prefix you want to find. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this writer instance. If this writer was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out all the attributes found at the current position in the . + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out all the attributes found at the current position in the . + The task that represents the asynchronous WriteAttributes operation. + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the attribute with the specified local name and value. + The local name of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value. + The local name of the attribute. + The namespace URI to associate with the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the attribute with the specified prefix, local name, namespace URI, and value. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the attribute with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteAttributeString operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as Base64 and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text. + The task that represents the asynchronous WriteBase64 operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as BinHex and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as BinHex and writes out the resulting text. + The task that represents the asynchronous WriteBinHex operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a <![CDATA[...]]> block containing the specified text. + The text to place inside the CDATA block. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a <![CDATA[...]]> block containing the specified text. + The task that represents the asynchronous WriteCData operation. + The text to place inside the CDATA block. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, forces the generation of a character entity for the specified Unicode character value. + The Unicode character for which to generate a character entity. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously forces the generation of a character entity for the specified Unicode character value. + The task that represents the asynchronous WriteCharEntity operation. + The Unicode character for which to generate a character entity. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes text one buffer at a time. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes text one buffer at a time. + The task that represents the asynchronous WriteChars operation. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a comment <!--...--> containing the specified text. + Text to place inside the comment. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a comment <!--...--> containing the specified text. + The task that represents the asynchronous WriteComment operation. + Text to place inside the comment. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the DOCTYPE declaration with the specified name and optional attributes. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the DOCTYPE declaration with the specified name and optional attributes. + The task that represents the asynchronous WriteDocType operation. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes an element with the specified local name and value. + The local name of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified local name, namespace URI, and value. + The local name of the element. + The namespace URI to associate with the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified prefix, local name, namespace URI, and value. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes an element with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteElementString operation. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes the previous call. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes the previous call. + The task that represents the asynchronous WriteEndAttribute operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes any open elements or attributes and puts the writer back in the Start state. + The XML document is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes any open elements or attributes and puts the writer back in the Start state. + The task that represents the asynchronous WriteEndDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out an entity reference as &name;. + The name of the entity reference. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out an entity reference as &name;. + The task that represents the asynchronous WriteEntityRef operation. + The name of the entity reference. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteFullEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteName operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteNmToken operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The task that represents the asynchronous WriteNode operation. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The name of the processing instruction. + The text to include in the processing instruction. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The task that represents the asynchronous WriteProcessingInstruction operation. + The name of the processing instruction. + The text to include in the processing instruction. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The local name to write. + The namespace URI for the name. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The task that represents the asynchronous WriteQualifiedName operation. + The local name to write. + The namespace URI for the name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes raw markup manually from a character buffer. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes raw markup manually from a string. + String containing the text to write. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes raw markup manually from a character buffer. + The task that represents the asynchronous WriteRaw operation. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes raw markup manually from a string. + The task that represents the asynchronous WriteRaw operation. + String containing the text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes the start of an attribute with the specified local name. + The local name of the attribute. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the start of an attribute with the specified local name and namespace URI. + The local name of the attribute. + The namespace URI of the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the start of an attribute with the specified prefix, local name, and namespace URI. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the start of an attribute with the specified prefix, local name, and namespace URI. + The task that represents the asynchronous WriteStartAttribute operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the XML declaration with the version "1.0". + The task that represents the asynchronous WriteStartDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes the XML declaration with the version "1.0" and the standalone attribute. + The task that represents the asynchronous WriteStartDocument operation. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a start tag with the specified local name. + The local name of the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace. + The local name of the element. + The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix, the writer automatically writes that prefix also. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace and prefix. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the specified start tag and associates it with the given namespace and prefix. + The task that represents the asynchronous WriteStartElement operation. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the state of the writer. + One of the values. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the given text content. + The text to write. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the given text content. + The task that represents the asynchronous WriteString operation. + The text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, generates and writes the surrogate character entity for the surrogate character pair. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously generates and writes the surrogate character entity for the surrogate character pair. + The task that represents the asynchronous WriteSurrogateCharEntity operation. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the object value. + The object value to write.Note   With the release of the .NET Framework 3.5, this method accepts as a parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a single-precision floating-point number. + The single-precision floating-point number to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the given white space. + The string of white space characters. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the given white space. + The task that represents the asynchronous WriteWhitespace operation. + The string of white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets an representing the current xml:space scope. + An XmlSpace representing the current xml:space scope.Value Meaning NoneThis is the default if no xml:space scope exists.DefaultThe current scope is xml:space="default".PreserveThe current scope is xml:space="preserve". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets a value that indicates whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value that indicates whether the XML writer should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation. + true to do character checking; otherwise, false. The default is true. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the should also close the underlying stream or when the method is called. + true to also close the underlying stream or ; otherwise, false. The default is false. + + + Gets or sets the level of conformance that the XML writer checks the XML output for. + One of the enumeration values that specifies the level of conformance (document, fragment, or automatic detection). The default is . + + + Gets or sets the type of text encoding to use. + The text encoding to use. The default is Encoding.UTF8. + + + Gets or sets a value indicating whether to indent elements. + true to write individual elements on new lines and indent; otherwise, false. The default is false. + + + Gets or sets the character string to use when indenting. This setting is used when the property is set to true. + The character string to use when indenting. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is two spaces. + The value assigned to the is null. + + + Gets or sets a value that indicates whether the should remove duplicate namespace declarations when writing XML content. The default behavior is for the writer to output all namespace declarations that are present in the writer's namespace resolver. + The enumeration used to specify whether to remove duplicate namespace declarations in the . + + + Gets or sets the character string to use for line breaks. + The character string to use for line breaks. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is \r\n (carriage return, new line). + The value assigned to the is null. + + + Gets or sets a value indicating whether to normalize line breaks in the output. + One of the values. The default is . + + + Gets or sets a value indicating whether to write attributes on a new line. + true to write attributes on individual lines; otherwise, false. The default is false.NoteThis setting has no effect when the property value is false.When is set to true, each attribute is pre-pended with a new line and one extra level of indentation. + + + Gets or sets a value indicating whether to omit an XML declaration. + true to omit the XML declaration; otherwise, false. The default is false, an XML declaration is written. + + + Resets the members of the settings class to their default values. + + + Gets or sets a value that indicates whether the will add closing tags to all unclosed element tags when the method is called. + true if all unclosed element tags will be closed out; otherwise, false. The default value is true. + + + An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes specifications. + + + Indicates if attributes or elements need to be qualified with a namespace prefix. + + + Element and attribute form is not specified in the schema. + + + Elements and attributes must be qualified with a namespace prefix. + + + Elements and attributes are not required to be qualified with a namespace prefix. + + + Provides custom formatting for XML serialization and deserialization. + + + This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the to the class. + An that describes the XML representation of the object that is produced by the method and consumed by the method. + + + Generates an object from its XML representation. + The stream from which the object is deserialized. + + + Converts an object into its XML representation. + The stream to which the object is serialized. + + + When applied to a type, stores the name of a static method of the type that returns an XML schema and a (or for anonymous types) that controls the serialization of the type. + + + Initializes a new instance of the class, taking the name of the static method that supplies the type's XML schema. + The name of the static method that must be implemented. + + + Gets or sets a value that determines whether the target class is a wildcard, or that the schema for the class has contains only an xs:any element. + true, if the class is a wildcard, or if the schema contains only the xs:any element; otherwise, false. + + + Gets the name of the static method that supplies the type's XML schema and the name of its XML Schema data type. + The name of the method that is invoked by the XML infrastructure to return an XML schema. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/de/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/de/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..87bbef9 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/de/System.Xml.ReaderWriter.xml @@ -0,0 +1,2602 @@ + + + + System.Xml.ReaderWriter + + + + Gibt den Umfang der Eingabe- oder Ausgabeüberprüfung an, die von dem -Objekt und dem -Objekt ausgeführt wird. + + + Das -Objekt oder das -Objekt erkennen automatisch, ob eine Dokumentebenen- oder Fragmentebenenprüfung ausgeführt werden soll, und nehmen die entsprechende Prüfung vor.Wenn Sie ein weiteres - oder -Objekt umschließen, wird für das äußere Objekt keine zusätzliche Übereinstimmungsprüfung vorgenommen.Die Übereinstimmungsprüfung wird dem zugrunde liegenden Objekt überlassen.Weitere Details dahingehend, wie die Übereinstimmungsprüfung festgelegt wird, finden Sie unter den - und den -Eigenschaften. + + + Die XML-Daten entsprechen den Regeln für ein wohlgeformtes XML-Dokument, Version 1.0, wie diese vom World Wide Web Consortium (W3C) festgelegt sind. + + + Die XML-Daten stellen ein wohlgeformtes XML-Fragment dar, wie dies vom World Wide Web Consortium (W3C) festgelegt ist. + + + Gibt die Optionen zum Verarbeiten von DTDs an.Die -Enumeration wird von der -Klasse verwendet. + + + Führt dazu, dass das DOCTYPE-Element ignoriert wird.Keine DTD-Verarbeitung wird durchgeführt. + + + Gibt an, dass beim Auftreten einer DTD eine mit der Meldung ausgelöst wird, dass DTDs nicht zulässig sind.Dies ist das Standardverhalten. + + + Stellt eine Schnittstelle bereit, über die eine Klasse Zeilen- und Positionsinformationen zurückgeben kann. + + + Ruft einen Wert ab, der angibt, ob die Klasse Zeileninformationen zurückgeben kann. + true, wenn und angegeben werden können, andernfalls false. + + + Ruft die aktuelle Zeilennummer ab. + Die aktuelle Zeilennummer oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Ruft die aktuelle Zeilenposition ab. + Die aktuelle Zeilenposition oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Stellt den schreibgeschützten Zugriff auf eine Gruppe von Präfix- und Namespacezuordnungen bereit. + + + Ruft eine Auflistung von definierten Präfix-Namespace-Zuordnungen ab, die sich derzeit im Gültigkeitsbereich befinden. + Ein , das die derzeit im Gültigkeitsbereich enthaltenen Namespaces enthält. + Ein -Wert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft den dem angegebenen Präfix zugeordneten Namespace-URI ab. + Der Namespace-URI, der dem Präfix zugeordnet ist. null, wenn das Präfix keinem Namespace-URI zugeordnet ist. + Das Präfix, dessen Namespace-URI gesucht werden soll. + + + Ruft das Präfix ab, das dem angegebenen Namespace-URI zugeordnet ist. + Das Präfix, das dem Namespace-URI zugeordnet ist; null, wenn der Namespace-URI keinem Präfix zugeordnet ist. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + + Gibt an, ob doppelte Namespacedeklarationen im entfernt werden sollen. + + + Gibt an, dass doppelte Namespacedeklarationen nicht entfernt werden. + + + Gibt an, dass doppelte Namespacedeklarationen entfernt werden.Voraussetzung für das Entfernen des doppelten Namespace ist, dass Präfix und Namespace übereinstimmen. + + + Implementiert eine Singlethread-. + + + Initialisiert eine neue Instanz der NameTable-Klasse. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit der hinzuzufügenden Zeichenfolge. + Der nullbasierte Index im Array, der das erste Zeichen der Zeichenfolge angibt. + Die Anzahl der Zeichen in der Zeichenfolge. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist. + Die hinzuzufügende Zeichenfolge. + + ist null. + + + Ruft die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem gesuchten Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft die atomisierte Zeichenfolge mit dem angegebenen Wert ab. + Das atomisierte Zeichenfolgenobjekt oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der gesuchte Name. + + ist null. + + + Gibt an, wie Zeilenumbrüche behandelt werden. + + + Zeilenumbruchzeichen werden durch Entitätenzeichen ersetzt.Mit dieser Einstellung werden alle Zeichen beibehalten, wenn die Ausgabe von einem normalisierenden gelesen wird. + + + Die Zeilenumbruchzeichen sind unverändert.Die Ausgabe ist gleich der Eingabe. + + + Zeilenumbruchzeichen werden ersetzt, damit sie mit dem in der -Eigenschaft angegebenen Zeichen übereinstimmen. + + + Gibt den Zustand des Readers an. + + + Die -Methode wurde aufgerufen. + + + Das Ende der Datei wurde mit Erfolg erreicht. + + + Es ist ein Fehler aufgetreten, der verhindert, dass der Lesevorgang fortgeführt werden kann. + + + Die Read-Methode wurde nicht aufgerufen. + + + Die Read-Methode wurde aufgerufen.Für den Reader können zusätzliche Methoden aufgerufen werden. + + + Gibt den Zustand des an. + + + Gibt an, dass ein Attributwert geschrieben wird. + + + Gibt an, dass die -Methode aufgerufen wurde. + + + Gibt an, dass Elementinhalt geschrieben wird. + + + Gibt an, dass ein Elementstarttag geschrieben wird. + + + Eine Ausnahme wurde ausgelöst, die den in einem ungültigen Zustand versetzt hat.Sie können die -Methode aufrufen, um den in den -Zustand zu versetzen.Alle anderen -Methodenaufrufe führen zu einer . + + + Gibt an, dass der Prolog geschrieben wird. + + + Gibt an, dass eine Write-Methode noch nicht aufgerufen wurde. + + + Codiert und decodiert XML-Namen und stellt Methoden für das Konvertieren zwischen Typen der Common Language Runtime und XSD-Typen (XML Schema Definition) bereit.Bei der Konvertierung von Datentypen sind die zurückgegebenen Werte vom Gebietsschema unabhängig. + + + Decodiert einen Namen.Diese Methode ist die Umkehrung der -Methode und der -Methode. + Der decodierte Name. + Der umzuwandelnde Name. + + + Konvertiert den Namen in einen gültigen lokalen XML-Namen. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den Namen in einen gültigen XML-Namen. + Gibt den Namen zurück, wobei ungültige Zeichen durch eine Escapezeichenfolge ersetzt wurden. + Ein zu übersetzender Name. + + + Überprüft, ob der Name entsprechend der XML-Spezifikation gültig ist. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den in ein -Äquivalent. + Ein Boolean-Wert, d. h. true oder false. + Die zu konvertierende Zeichenfolge. + + is null. + + does not represent a Boolean value. + + + Konvertiert den in ein -Äquivalent. + Ein Byte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Char, das für das einzelne Zeichen steht. + Die Zeichenfolge, die ein einzelnes zu konvertierendes Zeichen enthält. + The value of the parameter is null. + The parameter contains more than one character. + + + Konvertiert den mithilfe von in eine -Struktur. + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, ob das Datum in die Ortszeit konvertiert oder als UTC-Zeit (Coordinated Universal Time) beibehalten werden soll, falls es sich um ein UTC-Datum handelt. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge.Hinweis   Die Zeichenfolge muss einer Teilmenge der W3C-Empfehlung für den XML-dateTime-Typ entsprechen.Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Das Format, aus dem konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird anhand dieses Formats überprüft. + + is null. + + or is an empty string or is not in the specified format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Ein Array von Formaten, aus denen konvertiert werden kann.Jedes Format in kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird im Vergleich mit einem dieser Formate überprüft. + + + Konvertiert den in ein -Äquivalent. + Ein Decimal-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Double-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Guid-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + + Konvertiert den in ein -Äquivalent. + Ein Int16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein SByte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Single-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung von Boolean, d. h. „true“ oder „false“. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Byte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Char. + Der zu konvertierende Wert. + + + Konvertiert die -Struktur mithilfe von in eine . + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, wie der -Wert behandelt wird. + The value is not valid. + The or value is null. + + + Konvertiert den angegebenen in einen . + Eine -Darstellung des angegebenen . + Der zu konvertierende . + + + Konvertiert den angegebenen in einen im angegebenen Format. + Eine -Darstellung im angegebenen Format des bereitgestellten . + Der zu konvertierende . + Das Format, in das konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Decimal. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Double. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Guid. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int64. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des SByte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Single. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des TimeSpan. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt64. + Der zu konvertierende Wert. + + + Konvertiert den in ein -Äquivalent. + Ein TimeSpan-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge.Das Zeichenfolgenformat muss dem W3C-XML-Schema Teil 2 entsprechen: Empfehlung für Datentypen für Dauer. + + is not in correct format to represent a TimeSpan value. + + + Konvertiert den in ein -Äquivalent. + Ein UInt16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Überprüft, ob der Name ein gültiger Name gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist. + Der Name, wenn dieser ein gültiger XML-Name ist. + Der zu überprüfende Name. + + is not a valid XML name. + + is null or String.Empty. + + + Überprüft, ob der Name ein gültiger NCName gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist.Ein NCName darf keinen Doppelpunkt enthalten. + Der Name, wenn dieser ein gültiger NCName ist. + Der zu überprüfende Name. + + is null or String.Empty. + + is not a valid non-colon name. + + + Überprüft, ob die Zeichenfolge ein gültiges NMTOKEN gemäß der Empfehlung in W3C XML Schema, Teil 2: „Datentypen“, ist. + Das Namenstoken, wenn es sich um ein gültiges NMTOKEN handelt. + Die Zeichenfolge, die überprüft werden soll. + The string is not a valid name token. + + is null. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Zeichen für eine öffentliche ID sind. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen im Argument gültige Zeichen für eine öffentliche ID sind. + + , der die zu überprüfende ID enthält. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind. + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind, andernfalls null. + Der zu überprüfende . + + + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Der mit den zu überprüfenden Zeichen. + + + Gibt an, wie der Wert für die Uhrzeit beim Konvertieren zwischen einer Zeichenfolge und behandelt werden soll. + + + Als lokale Zeit behandeln.Wenn das -Objekt eine UTC (Coordinated Universal Time, koordinierte Weltzeit) darstellt, wird es in die lokale Zeit konvertiert. + + + Zeitzoneninformationen sollten bei der Konvertierung beibehalten werden. + + + Als lokale Zeit behandeln, wenn eine -Struktur in eine Zeichenfolge konvertiert wird. + + + Als UTC behandeln.Wenn das -Objekt eine lokale Zeit darstellt, wird es in die koordinierte Weltzeit konvertiert. + + + Gibt ausführliche Informationen über die letzte Ausnahme zurück. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit einer angegebenen Fehlermeldung. + Die Fehlerbeschreibung. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + Die Beschreibung des Fehlerzustands. + Die , die die XmlException ausgelöst hat (falls eine Ausnahme ausgelöst wurde).Dieser Wert kann null sein. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit der angegebenen Meldung, inneren Ausnahme, Zeilennummer und Zeilenposition. + Die Fehlerbeschreibung. + Die Ausnahme, die die Ursache der aktuellen Ausnahme ist.Dieser Wert kann null sein. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft die Nummer der Zeile ab, in der der Fehler aufgetreten ist. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + + + Ruft die Position der Zeile ab, an der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft eine Meldung ab, die die aktuelle Ausnahme beschreibt. + Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird. + + + Löst Namespaces auf, fügt sie einer Auflistung hinzu bzw. entfernt sie daraus und ermöglicht die Verwaltung der Gültigkeitsbereiche dieser Namespaces. + + + Initialisiert eine neue Instanz der -Klasse mit der angegebenen . + Die zu verwendende . + null is passed to the constructor + + + Fügt der Auflistung den angegebenen Namespace hinzu. + Das Präfix, das dem hinzugefügten Namespace zugeordnet werden soll.Verwenden Sie String.Empty, um einen Standardnamespace hinzuzufügen.HinweisWenn der jedoch für das Auflösen von Namespaces in einem XPath (XML Path Language)-Ausdruck verwendet wird, muss ein Präfix angegeben werden.Wenn ein XPath-Ausdruck kein Präfix enthält, wird davon ausgegangen, dass der Namespace-URI (Uniform Resource Identifier) der leere Namespace ist.Weitere Informationen über XPath-Ausdrücke und den finden Sie in der -Methode und der -Methode. + Der hinzuzufügende Namespace. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ruft den Namespace-URI für den Standardnamespace ab. + Gibt den Namespace-URI für den Standardnamespace zurück oder String.Empty, wenn kein Standardnamespace vorhanden ist. + + + Gibt einen Enumerator für das Durchlaufen der Namespaces im zurück. + Ein , der die vom gespeicherten Präfixe enthält. + + + Ruft eine Auflistung von Namen sortiert nach Präfix ab, mit der die aktuell im Gültigkeitsbereich vorhanden Namespaces durchlaufen werden können. + Eine Auflistung der derzeit im Gültigkeitsbereich vorhandenen Paare aus Namespace und Präfix. + Ein Enumerationswert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft einen Wert ab, der angibt, ob für das angegebene Präfix ein Namespace für den aktuellen abgelegten Gültigkeitsbereich definiert ist. + true, wenn ein definierter Namespace vorhanden ist, andernfalls false. + Das Präfix des zu suchenden Namespaces. + + + Ruft den Namespace-URI für das angegebene Präfix ab. + Gibt den Namespace-URI für zurück oder null, wenn kein zugeordneter Namespace vorhanden ist.Die zurückgegebene Zeichenfolge ist atomisiert.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter der -Klasse. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu suchen, übergeben Sie String.Empty. + + + Sucht das für den angegebenen Namespace-URI deklarierte Präfix. + Das passende Präfix.Wenn es kein zugeordnetes Präfix gibt, gibt die Methode den Wert "String.Empty" zurück.Wenn ein Nullwert angegeben wird, dann wird null zurückgegeben. + Der für das Präfix aufzulösende Namespace. + + + Ruft den ab, der diesem Objekt zugeordnet ist. + Die von diesem Objekt verwendete . + + + Holt einen Namespacebereich vom Stapel. + true, wenn noch Namespacebereiche im Stapel vorhanden sind, false, wenn keine Namespaces mehr geholt werden können. + + + Legt einen Namespacebereich auf den Stapel. + + + Entfernt den angegebenen Namespace für das angegebene Präfix. + Das Präfix für den Namespace. + Der für das angegebene Präfix zu entfernende Namespace.Der entfernte Namespace stammt aus dem aktuellen Namespacebereich.Namespaces außerhalb des aktuellen Gültigkeitsbereichs werden ignoriert. + The value of or is null. + + + Definiert den Namespacebereich. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind.Dies beinhaltet den xmlns:xml-Namespace, der immer implizit deklariert wird.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind. Davon ausgeschlossen ist der xmlns:xml-Namespace, der immer implizit deklariert ist.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die am aktuellen Knoten lokal definiert sind. + + + Tabelle atomisierter Zeichenfolgenobjekte. + + + Initialisiert eine neue Instanz der -Klasse. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden.Wenn die Länge 0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem hinzuzufügenden Namen. + Nullbasierter Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden. + Der hinzuzufügende Name. + + ist null. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem zu suchenden Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die denselben Wert wie die angegebenen Zeichenfolge hat. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der zu suchende Name. + + ist null. + + + Gibt den Typ des Knotens an. + + + Ein Attribut (z. B. id='123'). + + + Ein CDATA-Abschnitt (z. B. <![CDATA[my escaped text]]>). + + + Ein Kommentar (z. B. <!-- my comment -->). + + + Ein Dokumentobjekt, das als Stamm der Dokumentstruktur Zugriff auf das gesamte XML-Dokument gewährt. + + + Ein Dokumentfragment. + + + Die vom folgenden Tag angegebene Dokumenttypdeklaration (z. B. <!DOCTYPE...>). + + + Ein Element (z. B. <item>). + + + Ein Endelementtag (z. B. </item>). + + + Wird zurückgegeben, wenn XmlReader aufgrund eines Aufrufs von das Ende der Entitätsersetzung erreicht. + + + Eine Entitätsdeklaration (z. B. <!ENTITY...>). + + + Ein Verweis auf eine Entität (z. B. &num;). + + + Dies wird vom zurückgegeben, wenn keine Read-Methode aufgerufen wurde. + + + Eine Notation in der Dokumenttypdeklaration (z. B. <!NOTATION...>). + + + Eine Verarbeitungsanweisung (z. B. <?pi test?>). + + + Leerraum zwischen Markup in einem Modell für gemischten Inhalt oder Leerraum im xml:space="preserve"-Bereich. + + + Der Textinhalt eines Knotens. + + + Leerraum zwischen Markup. + + + Die XML-Deklaration (z. B. <?xml version='1.0'?>). + + + Stellt sämtliche Kontextinformationen bereit, die von für das Analysieren eines XML-Fragments benötigt werden. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD-Teilmenge wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space, Codierung und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang und xml:space. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang, xml:space sowie Codierung. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Ruft den Basis-URI ab oder legt diesen fest. + Der Basis-URI, der zum Auflösen der DTD-Datei verwendet werden soll. + + + Ruft den Namen der Dokumenttypdeklaration ab oder legt diesen fest. + Der Name der Dokumenttypdeklaration. + + + Ruft den Codierungstyp ab oder legt diesen fest. + Ein -Objekt, das den Codierungstyp angibt. + + + Ruft die Teilmenge der internen DTD ab oder legt diese fest. + Die Teilmenge der internen DTD.Diese Eigenschaft gibt z. B. den Inhalt zwischen den eckigen Klammern <!DOCTYPE doc [...]> zurück. + + + Ruft den ab oder legt diesen fest. + XmlNamespaceManager. + + + Ruft die zum Atomisieren von Zeichenfolgen verwendete ab.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + XmlNameTable. + + + Ruft den öffentlichen Bezeichner ab oder legt diesen fest. + Der öffentliche Bezeichner. + + + Ruft den Systembezeichner ab oder legt diesen fest. + Der Systembezeichner. + + + Ruft den aktuellen xml:lang-Bereich ab oder legt diesen fest. + Der aktuelle xml:lang-Bereich.Wenn xml:lang im Gültigkeitsbereich nicht vorhanden ist, wird String.Empty zurückgegeben. + + + Ruft den aktuellen xml:space-Bereich ab oder legt diesen fest. + Ein -Wert, der den xml:space-Bereich angibt. + + + Stellt einen XML-gekennzeichneten Namen dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen. + Der als Name für das -Objekt zu verwendende lokale Name. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen und Namespace. + Der als Name für das -Objekt zu verwendende lokale Name. + Der Namespace für das -Objekt. + + + Stellt einen leeren bereit. + + + Bestimmt, ob das angegebene -Objekt mit dem aktuellen -Objekt identisch ist. + true, wenn beide dieselbe Objektinstanz sind, andernfalls false. + Das , das verglichen werden soll. + + + Gibt den Hashcode für den zurück. + Ein Hashcode für dieses Objekt. + + + Ruft einen Wert ab, der angibt, ob leer ist. + true, wenn Name und Namespace leere Zeichenfolgen sind, andernfalls false. + + + Ruft eine Zeichenfolgendarstellung für den qualifizierten Namen des ab. + Eine Zeichenfolgendarstellung des gekennzeichneten Namens oder String.Empty, wenn kein Name für das Objekt definiert ist. + + + Ruft eine Zeichenfolgendarstellung für den Namespaces des ab. + Eine Zeichenfolgendarstellung für den Namespace oder String.Empty, wenn kein Namespace für das Objekt definiert ist. + + + Vergleicht zwei -Objekte. + true, wenn beide Objekte dieselben Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Vergleicht zwei -Objekte. + true, wenn die beiden Objekte unterschiedliche Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + Der Name des Objekts. + Der Namespace des Objekts. + + + Stellt einen Reader dar, der einen schnellen Zugriff auf XML-Daten bietet, ohne Zwischenspeicher und welcher nur vorwärts möglich ist.Um den .NET Framework-Quellcode für diesen Typ zu durchsuchen, rufen Sie die Verweisquelle auf. + + + Initialisiert eine neue Instanz derXmlReader-Klasse. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Anzahl der Attribute für den aktuellen Knoten ab. + Die Anzahl der Attribute im aktuellen Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Basis-URI des aktuellen Knotens ab. + Der Basis-URI des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die Methoden für das Lesen von Inhalt im Binärformat implementiert. + true, wenn die Methoden für das Lesen von Inhalt im Binärformat implementiert werden, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die angegebene -Methode implementiert. + true, wenn der die -Methode implementiert, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob dieser Reader Entitäten analysieren und auflösen kann. + true, wenn der Reader Entitäten analysieren und auflösen kann, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Erstellt mit dem angegebenen Stream mit den Standardeinstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + + + Erstellt eine neue -Instanz mit dem angegebenen Stream und den angegebenen Einstellungen. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Stream, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält. Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für den neuen .Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + Die und die -Eigenschaften enthalten Werte.(Nur eine dieser NameTable-Eigenschaften kann festgelegt und verwendet werden). + + + Erstellt eine neue -Instanz mit angegebenem URI. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Mit der -Klasse wird der Pfad in eine kanonische Datendarstellung konvertiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + Die durch den URI angegebene Datei ist nicht vorhanden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen URI und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Das -Objekt für das -Objekt wird zum Konvertieren des Pfads in eine kanonische Datendarstellung verwendet.Wenn null ist, wird ein neues -Objekt verwendet. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + Die durch den URI angegebene Datei kann nicht gefunden werden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen XML-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, das das angegebene -Objekt umschließt. + Das Objekt, dass Sie als zugrunde liegenden XML-Reader verwenden möchten. + Die Einstellungen für die neue -Instanz.Der Konformitätsgrad des -Objekts muss mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmen oder auf festgelegt werden. + Der -Wert ist null. + Wenn das -Objekt einen Konformitätsgrad angibt, der nicht mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmt.- oder - Der zugrunde liegende befindet sich in einem -Zustand oder einem -Zustand. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Tiefe des aktuellen Knotens im XML-Dokument ab. + Die Tiefe des aktuellen Knotens im XML-Dokument. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob sich der Reader am Ende des Streams befindet. + true, wenn der Reader am Ende des Streams positioniert ist, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs.Diese Methode verschiebt den Reader nicht. + Der Index des Attributs.Der Index ist nullbasiert.(Das erste Attribut hat den Index 0.) + + liegt außerhalb des Bereichs.Es darf nicht negativ sein und muss kleiner als die Größe der Attributauflistung sein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben.Diese Methode verschiebt den Reader nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den Wert des aktuellen Knotens asynchron ab. + Der Wert des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft einen Wert ab, der angibt, ob der aktuelle Knoten über Attribute verfügt. + true, wenn der aktuelle Knoten über Attribute verfügt, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten einen aufweisen kann. + true, wenn der Knoten, auf dem der Reader derzeit positioniert ist, einen Value aufweisen darf, andernfalls false.Wenn false, weist der Knoten den Wert String.Empty auf. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein Attribut ist, das aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. + true, wenn der aktuelle Knoten ein Attribut ist, dessen Wert aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. false, wenn der Attributwert explizit festgelegt wurde. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein leeres Element ist (z. B. <MyElement/>). + true, wenn der aktuelle Knoten ein Element ist ( ist gleich XmlNodeType.Element), das mit /> endet, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiger XML-Name ist. + true, wenn der Name gültig ist, andernfalls false. + Der Name, dessen Gültigkeit validiert werden soll. + Der -Wert ist null. + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiges XML-Namenstoken ist. + true, wenn es sich um ein gültiges Namenstoken handelt, andernfalls false. + Das zu validierende Namenstoken. + Der -Wert ist null. + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist. + true, wenn ein Starttag oder ein leeres Elementtag findet. false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und die -Eigenschaft des gefundenen Elements mit dem angegebenen Argument übereinstimmt. + true, wenn der resultierende Knoten ein Element ist und die Name-Eigenschaft mit der angegebenen Zeichenfolge übereinstimmt.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die Name-Elementeigenschaft nicht mit der angegebenen Zeichenfolge übereinstimmt. + Die mit der Name-Eigenschaft des gefundenen Elements verglichene Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und ob die -Eigenschaft und die -Eigenschaft des gefundenen Elements mit den angegebenen Zeichenfolgen übereinstimmen. + true, wenn der resultlierende Knoten ein Element ist.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die LocalName-Eigenschaft und die NamespaceURI-Eigenschaft des Elements nicht mit den angegebenen Zeichenfolgen übereinstimmen. + Die mit der LocalName-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Die mit der NamespaceURI-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den lokalen Namen des aktuellen Knotens ab. + Der Name des aktuellen Knotens ohne das Präfix.Der LocalName für das <bk:book>-Element lautet z. B. book.Bei unbenannten Knotentypen wie Text, Comment usw. gibt diese Eigenschaft String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Löst beim Überschreiben in einer abgeleiteten Klasse ein Namespacepräfix im Gültigkeitsbereich des aktuellen Elements auf. + Der Namespace-URI, dem das Präfix zugeordnet ist, oder null, wenn kein entsprechendes Präfix gefunden wird. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu erhalten, übergeben Sie eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen Index. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter hat einen negativen Wert. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen und dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Überprüft, ob der aktuelle Knoten ein Inhaltsknoten (Textknoten ohne Leerraum, CDATA-, Element-, EndElement-, EntityReference- oder EndEntity-Knoten) ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei.Knoten folgender Typen werden übersprungen: ProcessingInstruction, DocumentType, Comment, Whitespace und SignificantWhitespace. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Asynchrone Überprüfungen, ob der aktuelle Knoten ein Inhaltsknoten ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zu dem Element, das den aktuellen Attributknoten enthält. + true, wenn der Reader auf einem Attribut positioniert ist (der Reader wechselt zu dem Element, das das Attribut besitzt); false, wenn der Reader nicht auf einem Attribut positioniert ist (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum ersten Attribut. + true, wenn ein Attribut vorhanden ist (der Reader wechselt zum ersten Attribut), andernfalls false (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum nächsten Attribut. + true, wenn ein nächstes Attribut vorhanden ist; false, wenn keine weiteren Attribute vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den gekennzeichneten Namen des aktuellen Knotens ab. + Der gekennzeichnete Name des aktuellen Knotens.Der Name für das <bk:book>-Element lautet z. B. bk:book.Der zurückgegebene Name hängt vom des Knotens ab.Die folgenden Knotentypen geben die jeweils aufgeführten Werte zurück.Alle anderen Knotentypen geben eine leere Zeichenfolge zurück.Knotentyp Name AttributeDer Name des Attributs. DocumentTypeDer Name des Dokumenttyps. ElementDer Tagname. EntityReferenceDer Name der Entität, auf die verwiesen wird. ProcessingInstructionDas Ziel der Verarbeitungsanweisung. XmlDeclarationDas xml-Zeichenfolgenliteral. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Namespace-URI (entsprechend der Definition in der Namespacespezifikation des W3C) des Knotens ab, auf dem der Reader positioniert ist. + Der Namespace-URI des aktuellen Knotens, andernfalls eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die ab, die dieser Implementierung zugeordnet ist. + Die XmlNameTable, die das Abrufen der atomisierten Version einer Zeichenfolge innerhalb des Knotens erlaubt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Typ des aktuellen Knotens ab. + Einer der Enumerationswerte, die den Typ des aktuellen Knotens angeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse das dem aktuellen Knoten zugeordnete Namespacepräfix ab. + Das dem aktuellen Knoten zugeordnete Namespacepräfix. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den nächsten Knoten aus dem Stream. + true, wenn der nächste Knoten erfolgreich gelesen wurde, andernfalls, false. + Beim Analysieren der XML-Daten ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den nächsten Knoten aus dem Stream asynchron. + true, wenn der nächste Knoten erfolgreich gelesen wurde, false, wenn keine weiteren zu lesenden Knoten vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Attributwert in einen oder mehrere Knoten vom Typ Text, EntityReference oder EndEntity auf. + true, wenn zurückzugebende Knoten vorhanden sind.false, wenn der Reader beim ersten Aufruf nicht auf einem Attributknoten positioniert ist oder alle Attributwerte gelesen wurden.Ein leeres Attribut, z. B. misc="", gibt true mit einem einzelnen Knoten mit dem Wert String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen.Dieses kann zum Beispiel beim Konvertieren eines -Objekts in eine xs:string verwendet werden.Dieser Wert kann null sein. + Der Inhalt weist nicht das richtige Format für den Zieltyp auf. + Die versuchte Typumwandlung ist ungültig. + Der -Wert ist null. + Der aktuelle Knoten ist kein unterstützter Knotentyp.Weitere Informationen finden Sie in der nachfolgenden Tabelle. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als Boolean. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt an der aktuellen Position als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit doppelter Genauigkeit. + Der Textinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Der Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 32-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 64-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, und liest dann den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Elementinhalt asynchron als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit doppelter Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Endtag ist, und verschiebt den Reader auf den nächsten Knoten. + Der aktuelle Knoten ist kein Endtag, oder im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt, einschließlich Markup, als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben.Wenn der aktuelle Knoten weder ein Element noch ein Attribut ist, wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron den gesamten Inhalt, einschließlich Markup als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den Inhalt (einschließlich Markup) ab, der diesen Knoten und alle untergeordneten Elemente darstellt. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt, einschließlich Markup, das diesen Knoten und alle untergeordneten Elemente darstellt, asynchron. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Knoten ein Element ist, und rückt den Reader zum nächsten Knoten vor. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der qualifizierte Name des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden. - oder - Der des Elements entspricht nicht dem angegebenen . + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen und dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden.- oder - Die Eigenschaften und des gefundenen Elements stimmen nicht mit den angegebenen Argumenten überein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Readers ab. + Einer der Enumerationswerte, der den Status des Readers angibt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine neue XmlReader-Instanz zurück, die zum Lesen des aktuellen Knotens und aller Nachfolgerknoten verwendet werden kann. + Eine neue auf festgelegte XML-Reader-Instanz.Durch den Aufruf der -Methode wird der neue Reader auf dem Knoten positioniert, der vor dem Aufruf der -Methode aktuell war. + Der XML-Reader ist nicht auf einem Element positioniert, wenn diese Methode aufgerufen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der qualifizierte Name des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der lokale Name des Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest, bis ein Element mit dem angegebenen qualifizierten Namen gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der qualifizierte Name des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Liest, bis ein Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der qualifizierte Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der lokale Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Der aktuelle Knoten verfügt über keinen Wert ( ist false). + Der -Wert ist null. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Die XML-Daten sind nicht wohlgeformt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Entitätsverweis für EntityReference-Knoten auf. + Der Reader ist nicht auf einem EntityReference-Knoten positioniert. Diese Implementierung des Readers kann Entitäten nicht auflösen ( gibt false zurück). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Reader-Instanz verwendete -Objekt.Wenn dieser Reader nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens asynchron. + Der aktuelle Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Textwert des aktuellen Knotens ab. + Der zurückgegebene Wert hängt vom des Knotens ab.In der folgenden Tabelle sind Knotentypen aufgeführt, die einen zurückzugebenden Wert haben.Alle anderen Knotentypen geben String.Empty zurück.Knotentyp Wert AttributeDer Wert des Attributs. CDATADer Inhalt des CDATA-Abschnitts. CommentDer Inhalt des Kommentars. DocumentTypeDie interne Teilmenge. ProcessingInstructionDer gesamte Inhalt mit Ausnahme des Ziels. SignificantWhitespaceDer Leerraum zwischen Markups bei einem Modell für gemischten Inhalt. TextDer Inhalt des Textknotens. WhitespaceDer Leerraum zwischen Markups. XmlDeclarationDer Inhalt der Deklaration. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den CLR-Typ (Common Language Runtime) für den aktuellen Knoten ab. + Der CLR-Typ, der dem typisierten Wert des Knotens entspricht.Die Standardeinstellung ist System.String. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:space-Bereich ab. + Einer der -Werte.Wenn kein xml:space-Bereich vorhanden ist, wird für diese Eigenschaft standardmäßig XmlSpace.None festgelegt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, das von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der-Klasse. + + + Ruft ab oder legt fest, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob Zeichen überprüft werden sollen, oder legt diesen fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true.HinweisWenn der Textdaten verarbeitet, überprüft er unabhängig von der Eigenschafteneinstellung stets, ob die XML-Namen und der Textinhalt gültig sind.Durch Festlegen von auf false wird die Zeichenüberprüfung für Zeichenentitätsverweise deaktiviert. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der zugrunde liegende Stream oder geschlossen werden soll, nachdem der Reader geschlossen wurde, oder legt diesen Wert fest. + true, um den zugrunde liegenden Stream oder zu schließen, nachdem der Reader geschlossen wurde, andernfalls false.Die Standardeinstellung ist false. + + + Ruft den Konformitätsgrad ab, dem der entspricht, oder legt diesen fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt, den der XML-Reader umsetzt.Die Standardeinstellung ist . + + + Ruft einen Wert ab oder legt einen Wert fest, der die Verarbeitung von DTDs bestimmt. + Einer der Enumerationswerte, der die Verarbeitung von DTDs bestimmt.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Kommentare ignoriert werden sollen, oder legt diesen fest. + true, wenn Kommentare ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob Verarbeitungsanweisungen ignoriert werden sollen, oder legt diesen fest. + true, wenn Verarbeitungsanweisungen ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob signifikanter Leerraum ignoriert werden soll, oder legt diesen Wert fest. + true, um Leerraum zu ignorieren, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Zeilennummernoffset des -Objekts ab oder legt dieses fest. + Das Zeilennummernoffset.Der Standard ist 0. + + + Ruft das Zeilenpositionsoffset des -Objekts ab oder legt dieses fest. + Die Offset der Linienposition.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximal zulässige Anzahl von Zeichen in einem Dokument angibt, die aus dem Erweitern von Entitäten resultieren, oder legt diesen fest. + Die maximale zulässige Anzahl von Zeichen aus erweiterten Entitäten.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximale zulässige Anzahl von Zeichen in einem XML-Dokument angibt, oder legt diesen fest.Der Wert 0 (null) gibt an, dass die Größe des XML-Dokuments nicht beschränkt ist.Ein Wert ungleich 0 (null) gibt die maximale Größe in Zeichen an. + Die maximale zulässige Anzahl von Zeichen in einem XML-Dokument.Der Standard ist 0. + + + Ruft die für Vergleiche von atomisierten Zeichenfolgen verwendete ab oder legt diese fest. + Die , in der alle atomisierten Zeichenfolgen gespeichert werden, die von allen -Instanzen verwendet werden, die mit diesem -Objekt erstellt wurden.Die Standardeinstellung ist null.Die erstellte -Instanz verwendet eine neue leere , wenn dieser Wert null ist. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Gibt den aktuellen xml:space-Bereich an. + + + Der xml:space-Bereich ist gleich default. + + + Kein xml:space-Bereich. + + + Der xml:space-Bereich ist gleich preserve. + + + Stellt einen Writer für die schnelle, vorwärts gerichtete Generierung von Streams oder Dateien mit XML-Daten ohne Zwischenspeicherung dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Erstellt mit dem angegebenen Stream eine neue -Instanz. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des Streams und des -Objekts. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen . + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des und der -Objekte. + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt mit dem angegebenen eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + The value is null. + + + Erstellt mit dem -Objekt und dem -Objekt eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen -Objekts. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen und der -Objekte. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert beim Überschreiben in einer abgeleiteten Klasse den Inhalt des Puffers in die zugrunde liegenden Streams und leert den zugrunde liegenden Stream ebenfalls. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert den Pufferinhalt asynchron in die zugrunde liegenden Streams und entleert den zugrunde liegenden Stream ebenfalls. + Die Aufgabe, die den asynchronen Flush-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Gibt beim Überschreiben in einer abgeleiteten Klasse das nächstliegende Präfix zurück, das im aktuellen Namespacebereich für den Namespace-URI definiert ist. + Das passende Präfix oder null, wenn im aktuellen Gültigkeitsbereich kein übereinstimmender Namespace-URI gefunden wird. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Writer-Instanz verwendete -Objekt.Wenn dieser Writer nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse sämtliche an der aktuellen Position gefundenen Attribute in den . + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron alle Attribute aus, die in der aktuellen Position in gefunden werden. + Die Aufgabe, die den asynchronen WriteAttributes-Vorgang darstellt. + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Attribut mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Attributs. + Der Namespace-URI, der dem Attribut zugeordnet werden soll. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Attribut asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteAttributeString-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als Base64 und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als Base64 und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBase64-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als BinHex und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als BinHex und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBinHex-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Der Text, der in den CDATA-Block eingefügt werden soll. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Die Aufgabe, die den asynchronen WriteCData-Vorgang darstellt. + Der Text, der in den CDATA-Block eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Erzwingt beim Überschreiben in einer abgeleiteten Klasse die Generierung einer Zeichenentität für den angegebenen Wert eines Unicode-Zeichens. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Erzwingt das Generieren einer Zeichenentität asynchron für den angegebenen Unicode-Zeichenwert. + Die Aufgabe, die den asynchronen WriteCharEntity-Vorgang darstellt. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Text in jeweils einen Puffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt Text asynchron in jeweils einen Puffer. + Die Aufgabe, die den asynchronen WriteChars-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Kommentar <!--...--> mit dem angegebenen Text. + Text, der in den Kommentar eingefügt werden soll. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen Kommentar <!--...-->, der den angegebenen Text enthält. + Die Aufgabe, die den asynchronen WriteComment-Vorgang darstellt. + Text, der in den Kommentar eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die DOCTYPE-Deklaration mit dem angegebenen Namen und optionalen Attributen. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die DOCTYPE-Deklaration asynchron mit dem angegebenen Namen und optionalen Attributen. + Die Aufgabe, die den asynchronen WriteDocType-Vorgang darstellt. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteElementString-Vorgang darstellt. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse den vorherigen -Aufruf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt asynchron den vorherigen -Aufruf. + Die Aufgabe, die den asynchronen WriteEndAttribute-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse alle geöffneten Elemente oder Attribute und setzt den Writer in den Anfangszustand zurück. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt alle geöffneten Elemente oder Attribute asynchron und setzt den Writer in den Startzustand zurück. + Die Aufgabe, die den asynchronen WriteEndDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen Entitätsverweis als &name;. + Der Name des Entitätsverweises. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen Entitätsverweis asynchron als &name; aus. + Die Aufgabe, die den asynchronen WriteEntityRef-Vorgang darstellt. + Der Name des Entitätsverweises. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteFullEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiger Name ist. + Der zu schreibende Name. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft dessen Gültigkeit entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Die Aufgabe, die den asynchronen WriteName-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiges NmToken ist. + Der zu schreibende Name. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft, dass es sich entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) um ein gültiges NmToken handelt. + Die Aufgabe, die den asynchronen WriteNmToken-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers asynchron in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Die Aufgabe, die den asynchronen WriteNode-Vorgang darstellt. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse eine Verarbeitungsanweisung mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Verarbeitungsanweisung asynchron mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Die Aufgabe, die den asynchronen WriteProcessingInstruction-Vorgang darstellt. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den durch den Namespace angegebenen Namen.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den durch Namespace gekennzeichneten Namen asynchron.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Die Aufgabe, die den asynchronen WriteQualifiedName-Vorgang darstellt. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einem Zeichenpuffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einer Zeichenfolge. + Zeichenfolge, die den zu schreibenden Text enthält. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron unformatiertes Markup manuell aus einem Zeichenpuffer. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt asynchron unformatiertes Markup manuell aus einer Zeichenfolge. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenfolge, die den zu schreibenden Text enthält. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen. + Der lokale Name des Attributs. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Anfang eines Attributs mit dem angegebenen Präfix, dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs asynchron mit dem angegebenen Präfix, lokalen Namen und Namespace-URI. + Die Aufgabe, die den asynchronen WriteStartAttribute-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0" und dem eigenständigen Attribut. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0". + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0" und dem eigenständigen Attribut. + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Starttag mit dem angegebenen lokalen Namen. + Der lokale Name des Elements. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace zu. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll.Wenn sich dieser Namespace bereits im Gültigkeitsbereich befindet und dem Namespace ein Präfix zugeordnet ist, schreibt der Writer automatisch auch das Präfix. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace und Präfix zu. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt das angegebene Starttag asynchron und ordnet dieses dem angegebenen Namespace und Präfix zu. + Die Aufgabe, die den asynchronen WriteStartElement-Vorgang darstellt. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Writers ab. + Einer der -Werte. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Textinhalt. + Der zu schreibende Text. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Textinhalt asynchron. + Die Aufgabe, die den asynchronen WriteString-Vorgang darstellt. + Der zu schreibende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Generiert und schreibt beim Überschreiben in einer abgeleiteten Klasse die Ersatzzeichenentität für das Ersatzzeichenpaar. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Generiert und schreibt die Ersatzzeichenentität asynchron für das Ersatzzeichenpaar. + Die Aufgabe, die den asynchronen WriteSurrogateCharEntity-Vorgang darstellt. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Objektwert. + Der zu schreibende Objektwert.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 akzeptiert diese Methode nun auch als Parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Gleitkommazahl mit einfacher Genauigkeit. + Die zu schreibende Gleitkommazahl mit einfacher Genauigkeit. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Leerraum. + Die Zeichenfolge von Leerraumzeichen. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Leerraum asynchron. + Die Aufgabe, die den asynchronen WriteWhitespace-Vorgang darstellt. + Die Zeichenfolge von Leerraumzeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen ab, der den aktuellen xml:space-Bereich darstellt. + Ein XmlSpace, der den aktuellen xml:space-Bereich darstellt.Wert Bedeutung NoneDies ist der Standardwert, wenn kein xml:space-Bereich vorhanden ist.DefaultDer aktuelle Bereich ist xml:space="default".PreserveDer aktuelle Bereich ist xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, welches von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der -Klasse. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob der XML-Writer eine Prüfung durchführen soll, um sicherzustellen, dass alle Zeichen im Dokument den im Abschnitt der W3C-Empfehlung für XML 1.0 beschriebenen "2.2 Characters" entsprechen, oder legt diesen Wert fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der auch den zugrunde liegenden Stream oder schließen soll, wenn die -Methode aufgerufen wird, oder legt diesen Wert fest. + true, wenn auch der zugrunde liegende Stream oder geschlossen werden soll, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Übereinstimmungsniveau ab, auf den der XML-Writer die XML-Ausgabe überprüft, oder legt dieses fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt (Dokument, Fragment oder automatische Erkennung).Die Standardeinstellung ist . + + + Ruft den Typ der Textcodierung ab oder legt diesen fest. + Die zu verwendende Textcodierung.Die Standardeinstellung ist Encoding.UTF8. + + + Ruft einen Wert ab, der angibt, ob Elemente eingezogen werden sollen, oder legt diesen fest. + true, wenn einzelne Elemente mit Einzug in neue Zeilen geschrieben werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft die Zeichenfolge ab, die für den Einzug verwendet werden soll, oder legt diese fest.Diese Einstellung wird verwendet, wenn die -Eigenschaft auf true festgelegt ist. + Die für den Einzug zu verwendende Zeichenfolge.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standard beträgt zwei Leerzeichen. + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob der beim Schreiben von XML-Inhalt doppelte Namespacedeklarationen entfernen soll, oder legt diesen fest.Im Standardverhalten gibt der Writer alle Namespacedeklarationen aus, die in der Namespaceauflösung des Writers vorhanden sind. + Die -Enumeration, die verwendet wird, um anzugeben, ob doppelte Namespacedeklarationen im entfernt werden. + + + Ruft die Zeichenfolge ab, die für Zeilenumbrüche verwendet werden soll, oder legt diese fest. + Die Zeichenfolge, die für Zeilenumbrüche verwendet werden soll.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standardwert ist \r\n (Wagenrücklauf, neue Zeile). + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob Zeilenumbrüche in der Ausgabe normalisiert werden sollen, oder legt diesen fest. + Einer der -Werte.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Attribute in eine neue Zeile geschrieben werden sollen, oder legt diesen fest. + true, um Attribute in einzelne Zeilen zu schreiben, andernfalls false.Die Standardeinstellung ist false.HinweisDiese Einstellung hat keinerlei Auswirkungen, wenn der -Eigenschaftswert false ist.Wenn auf true festgelegt ist, wird jedem Attribut eine neue Zeile und eine zusätzliche Einzugsebene vorangestellt. + + + Ruft einen Wert ab, der angibt, ob eine XML-Deklaration ausgelassen werden soll, oder legt diesen fest. + true, um die XML-Deklaration auszulassen, andernfalls false.Der Standardwert ist false. Es wird eine XML-Deklaration geschrieben. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob Endtags zu allen nicht geschlossenen Elementtags hinzufügt, wenn die -Methode aufgerufen wird. + true, wenn alle nicht geschlossenen Elementtags geschlossen werden; andernfalls false.Der Standardwert ist true. + + + Eine speicherinterne Darstellung eines XML Schema, wie vom World Wide Web Consortium (W3C) in den Spezifikationen unter XML Schema Part 1: Strukturen festgelegt und XML Schema Part 2: Datentypen Spezifikationen. + + + Gibt an, ob Attribute oder Elemente mit einem Namespacepräfix qualifiziert werden müssen. + + + Element- und Attributform werden im nicht Schema angegeben. + + + Elemente und Attribute müssen mit einem Namespacepräfix qualifiziert werden. + + + Elemente und Attribute müssen nicht mit einem Namespacepräfix qualifiziert werden. + + + Stellt benutzerdefinierte Formatierungen für die XML-Serialisierung und -Deserialisierung bereit. + + + Diese Methode ist reserviert und sollte nicht verwendet werden.Wenn Sie die IXmlSerializable-Schnittstelle implementieren, sollten Sie null (Nothing in Visual Basic) von der Methode zurückgeben und stattdessen das auf die Klasse anwenden, wenn ein benutzerdefiniertes Schema erforderlich ist. + Ein zur Beschreibung der XML-Darstellung des Objekts, das von der -Methode erstellt und von der -Methode verwendet wird. + + + Generiert ein Objekt aus seiner XML-Darstellung. + Der -Stream, aus dem das Objekt deserialisiert wird. + + + Konvertiert ein Objekt in seine XML-Darstellung. + Der -Stream, in den das Objekt serialisiert wird. + + + Bei Anwendung auf einen Typ wird der Name einer statischen Methode des Typs gespeichert, die ein XML-Schema und einen (bzw. einen bei anonymen Typen) zurückgibt, der die Serialisierung des Typs steuert. + + + Initialisiert eine neue Instanz der -Klasse und übernimmt den Namen der statischen Methode, die vom XML-Schema des Typs zur Verfügung gestellt wird. + Der Name der statischen Methode, die implementiert werden muss. + + + Ruft einen Wert ab, der bestimmt, ob die Zielklasse ein Platzhalter ist oder ob das Schema für die Klasse nur ein xs:any-Element enthält, oder legt diesen fest. + true, wenn die Klasse ein Platzhalter ist oder das Schema nur das xs:any-Element enthält, andernfalls false. + + + Ruft den Namen der statischen Methode ab, die das XML-Schema des Typs und den Namen seines XML-Schemadatentyps bereitstellt. + Der Name der Methode, die von der XML-Infrastruktur aufgerufen wird, sodass ein XML-Schema zurückgegeben wird. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/es/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/es/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..62b4b18 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/es/System.Xml.ReaderWriter.xml @@ -0,0 +1,2636 @@ + + + + System.Xml.ReaderWriter + + + + Especifica el número de comprobaciones de entrada o de salida que realizan los objetos y . + + + Los objetos o detectan automáticamente si se debe realizar la comprobación del documento o fragmento y lleva a cabo la comprobación correspondiente.Si está ajustando otro objeto o , el objeto externo no lleva a cabo ninguna comprobación de conformidad adicional.La comprobación de conformidad se deja al objeto subyacente.Vea las propiedades y para obtener más información sobre cómo se determina el nivel de cumplimiento. + + + Los datos XML cumplen con las reglas de un documento XML 1.0 con el formato correcto, tal como define W3C. + + + Los datos XML son un fragmento XML con el formato correcto, tal como define W3C. + + + Especifica las opciones para procesar DTD.La clase utiliza la enumeración . + + + Hace que se omita el elemento DOCTYPE.No se procesa ninguna DTD. + + + Especifica que cuando se encuentre una DTD, se produzca una excepción con un mensaje que indique que se prohíbe el uso de esa DTD.Éste es el comportamiento predeterminado. + + + Proporciona una interfaz que permite a una clase devolver información de línea y de posición. + + + Obtiene un valor que indica si la clase puede devolver información de línea. + Es true si se pueden proporcionar y ; en caso contrario, es false. + + + Obtiene el número de línea actual. + Número de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Obtiene la posición de línea actual. + Posición de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Proporciona acceso de solo lectura a un conjunto de asignaciones de prefijos y espacios de nombres. + + + Obtiene una colección de asignaciones de prefijos y espacios de nombres que están actualmente en el ámbito. + + que contiene los espacios de nombres que hay actualmente en el ámbito. + Valor que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene el URI del espacio de nombres asignado al prefijo especificado. + El espacio de nombres del URI que está asignado al prefijo; es null si el prefijo no está asignado a ningún espacio de nombres de URI. + Prefijo cuyo URI de espacio de nombres se desea buscar. + + + Obtiene el prefijo asignado al URI del espacio de nombres especificado. + Prefijo asignado al URI del espacio de nombres; es null si este URI no está asignado a ningún prefijo. + URI de espacio de nombres cuyo prefijo se desea buscar. + + + Especifica si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Especifica que no se quitarán las declaraciones de espacio de nombres duplicadas. + + + Especifica que se quitarán las declaraciones de espacio de nombres duplicadas.Para poder quitar el espacio de nombres duplicado, el prefijo y el espacio de nombres deben coincidir. + + + Implementa de un único subproceso. + + + Inicializa una nueva instancia de la clase NameTable. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene la cadena que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter de la cadena. + Número de caracteres de la cadena. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable. + Cadena que se va a agregar. + + es null. + + + Obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Obtiene la cadena subdividida con el valor especificado. + Objeto de cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica cómo controlar los saltos de línea. + + + Los nuevos caracteres de la línea tienen entidades.Esta configuración conserva todos los caracteres cuando el resultado se lee mediante un de normalización. + + + Los nuevos caracteres de línea no se modifican.El resultado es igual que la entrada. + + + Los nuevos caracteres de línea se reemplazan para coincidir con el carácter especificado en la propiedad . + + + Especifica el estado del lector. + + + Se ha llamado al método . + + + Se ha llegado al final del archivo correctamente. + + + Se ha producido un error que impide que continúe la operación de lectura. + + + No se ha llamado al método Read. + + + Se ha llamado al método Read.Se puede llamar a otros métodos en el lector. + + + Especifica el estado de . + + + Indica que se escribe un valor de atributo. + + + Indica que se ha llamado al método . + + + Indica que se está escribiendo contenido del elemento. + + + Indica que se está escribiendo una etiqueta de apertura de elemento. + + + Se ha iniciado una excepción que ha dejado en un estado no válido.Puede llamar al método para poner en el estado .Cualquier otra llamada al método hará que se inicie una excepción . + + + Indica que se escribe el prólogo. + + + Indica que todavía no se ha llamado a un método Write. + + + Codifica y descodifica nombres XML y proporciona métodos de conversión entre tipos de Common Language Runtime y tipos de lenguajes de definición de esquema XML (XSD).Cuando se convierten tipos de datos, los valores devueltos no dependen de la configuración regional. + + + Descodifica un nombre.Este método hace lo contrario que los métodos y . + Nombre descodificado. + Nombre que se va a transformar. + + + Convierte el nombre en un nombre XML local válido. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte el nombre en un nombre XML válido. + Devuelve el nombre con los caracteres no válidos sustituidos por una cadena de escape. + Nombre que se va a convertir. + + + Comprueba que el nombre es válido de acuerdo con la especificación XML. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte en un equivalente. + Valor Boolean; es decir, true o false. + Cadena que se va a convertir. + + is null. + + does not represent a Boolean value. + + + Convierte en un equivalente. + Valor Byte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un equivalente. + Char que representa el carácter único. + Cadena que contiene un carácter único que se va a convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convierte en un mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifican si la fecha se debe pasar a la hora local o mantenerse como hora universal coordinada (UTC), si se trata de una fecha de UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir.Nota   La cadena debe ajustarse a un subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Formato desde el que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con este formato. + + is null. + + or is an empty string or is not in the specified format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Matriz de formatos a partir de los cuales puede convertirse .Cada formato de puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con uno de estos formatos. + + + Convierte el en un equivalente. + Decimal equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Double equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Guid equivalente de la cadena. + Cadena que se va a convertir. + + + Convierte el en un equivalente. + Int16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + SByte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Single equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte la clase en una clase . + Representación de cadena de Boolean; es decir, "true" o "false". + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Byte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Char. + Valor que se va a convertir. + + + Convierte en mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifica cómo tratar el valor . + The value is not valid. + The or value is null. + + + Convierte el proporcionado en una . + Representación de tipo del proporcionado. + + que va a convertirse. + + + Convierte el proporcionado en una con el formato especificado. + Representación con el formato especificado del proporcionado. + + que va a convertirse. + Formato al que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). + + + Convierte la clase en una clase . + Representación de cadena de Decimal. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Double. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Guid. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int64. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de SByte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Single. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de TimeSpan. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt64. + Valor que se va a convertir. + + + Convierte en un equivalente. + TimeSpan equivalente de la cadena. + Cadena que se va a convertir.El formato de cadena debe cumplir la recomendación sobre la duración del Consorcio W3C "XML Schema Part 2: Datatypes". + + is not in correct format to represent a TimeSpan value. + + + Convierte en un equivalente. + UInt16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Comprueba que el nombre sea válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C. + Nombre, si es un nombre XML válido. + Nombre que se va a comprobar. + + is not a valid XML name. + + is null or String.Empty. + + + Comprueba que el nombre sea un NCName válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C.NCName es un nombre que no puede contener un carácter de dos puntos. + Nombre, si es un nombre NCName válido. + Nombre que se va a comprobar. + + is null or String.Empty. + + is not a valid non-colon name. + + + Comprueba que la cadena es un NMTOKEN válido según la recomendación "XML Schema Part 2: Datatypes" del esquema XML del Consorcio W3C. + Token del nombre, si es un NMTOKEN válido. + La cadena que desea comprobar. + The string is not a valid name token. + + is null. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de identificadores públicos válidos. + Devuelve la cadena pasada si todos los caracteres del argumento son caracteres de identificadores públicos válidos. + + que contiene el identificador que se va a validar. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos. + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos; en caso contrario, null. + + que se va a comprobar. + + + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + + que contiene los caracteres que se van a comprobar. + + + Especifica cómo tratar el valor de tiempo al realizar una conversión entre una cadena y . + + + Se trata como hora local.Si el objeto representa la hora universal coordinada (UTC), se convierte a la hora local. + + + La información de la zona horaria se debe conservar al realizar la conversión. + + + Se trata como hora local si se convierte en cadena. + + + Se trata como UTC.Si el objeto representa una hora local, se convierte en UTC. + + + Devuelve información detallada sobre la última excepción. + + + Inicializa una nueva instancia de la clase XmlException. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje de error especificado. + Descripción de error. + + + Inicializa una nueva instancia de la clase XmlException. + Descripción de la condición de error. + + que inició XmlException, en caso de que exista.Este valor puede ser null. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje, la excepción interna, el número de línea y la posición de línea especificados. + Descripción de error. + La excepción que es la causa de la excepción actual.Este valor puede ser null. + Número de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene el número de línea que indica dónde se produjo el error. + Número de línea que indica dónde se produjo el error. + + + Obtiene la posición de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene un mensaje que describe la excepción actual. + Mensaje de error que explica la razón de la excepción. + + + Resuelve, agrega y quita espacios de nombres en una colección y proporciona la administración del ámbito de estos espacios de nombres. + + + Inicializa una nueva instancia de la clase con el objeto especificado. + Objeto que se va a usar. + null is passed to the constructor + + + Agrega el espacio de nombres especificado a la colección. + Prefijo que se va a asociar al espacio de nombres que se agrega.Use String.Empty para agregar un espacio de nombres predeterminado.NotaSi se usa para resolver los espacios de nombres en una expresión XPath (XML Path Language), se ha de especificar un prefijo.Si una expresión XPath no incluye un prefijo, se supone que el identificador uniforme de recursos (URI) del espacio de nombres corresponde al espacio de nombres vacío.Para más información sobre las expresiones XPath y , vea los métodos y . + Espacio de nombres que se va a agregar. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtiene el identificador URI de espacio de nombres del espacio de nombres predeterminado. + Devuelve el identificador URI de espacio de nombres del espacio de nombres predeterminado, o String.Empty si no hay espacio de nombres predeterminado. + + + Devuelve un enumerador que se usará para recorrer en iteración los espacios de nombres de . + + que contiene los prefijos almacenados por . + + + Obtiene una colección de nombres de espacios de nombres por clave de prefijo que se puede usar para enumerar los espacios de nombres que actualmente se encuentran en el ámbito. + Colección de espacios de nombres y prefijos que se encuentran actualmente en el ámbito. + Valor de enumeración que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene un valor que indica si el prefijo proporcionado tiene un espacio de nombres definido para el ámbito que se ha insertado. + true si se ha definido un espacio de nombres; en caso contrario, false. + Prefijo del espacio de nombres que se desea buscar. + + + Obtiene el identificador URI de espacio de nombres del prefijo especificado. + Devuelve el identificador URI de espacio de nombres de o null si no se ha asignado un espacio de nombres.La cadena devuelta está subdividida.Para más información sobre cadenas subdivididas, vea la clase . + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase String.Empty. + + + Busca el prefijo declarado para el identificador URI de espacio de nombres especificado. + Prefijo que coincide.Si no hay ningún prefijo asignado, el método devuelve String.Empty.Si se proporciona un valor nulo, se devuelve null. + Espacio de nombres que se va a resolver para el prefijo. + + + Obtiene el objeto asociado a este objeto. + + que usa este objeto. + + + Extrae un ámbito de espacio de nombres de la pila. + true si quedan ámbitos de espacio de nombres en la pila; false si no quedan espacios de nombres para extraer. + + + Inserta un ámbito de espacio de nombres en la pila. + + + Quita el espacio de nombres dado del prefijo especificado. + Prefijo del espacio de nombres. + Espacio de nombres que se va a quitar del prefijo especificado.El espacio de nombres quitado pertenece al ámbito de espacio de nombres actual.Los espacios de nombres que no pertenecen al ámbito actual no se tienen en cuenta. + The value of or is null. + + + Define el ámbito del espacio de nombres. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual.Esto incluye el espacio de nombres xmlns:xml que siempre se declara de manera implícita.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual, excluido el espacio de nombres xmlns:xml, que siempre se declara implícitamente.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos localmente en el nodo actual. + + + Tabla de objetos en forma de cadena subdividida. + + + Inicializa una nueva instancia de la clase . + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una.Si la longitud es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una. + Nombre que se va a agregar. + + es null. + + + Cuando se invalida en una clase derivada, se obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, obtiene la cadena subdividida que contiene el mismo valor que la cadena especificada. + Cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica el tipo de nodo. + + + Atributo (por ejemplo, id='123'). + + + Sección CDATA (por ejemplo, <![CDATA[my escaped text]]>). + + + Comentario (por ejemplo, <!-- my comment -->). + + + Objeto de documento que, como raíz del árbol de documentos, proporciona acceso a todo el documento XML. + + + Fragmento de documento. + + + declaración de tipos de documento, indicada por la siguiente etiqueta (por ejemplo, <!DOCTYPE...>). + + + Elemento (por ejemplo, <item>). + + + Etiqueta de elemento final (por ejemplo, </item>) . + + + Se devuelve cuando XmlReader alcanza el final del reemplazo de entidad como resultado de una llamada al método . + + + Declaración de entidad (por ejemplo, <!ENTITY...>). + + + Referencia a una entidad (por ejemplo, &num;). + + + + devuelve este valor si no se ha llamado al método Read. + + + Notación en la declaración de tipos de documento (por ejemplo, <!NOTATION...>). + + + Instrucción de procesamiento (por ejemplo, <?pi test?>). + + + Espacio en blanco entre marcas en un modelo de contenido mixto o espacio en blanco dentro del ámbito de xml:space="preserve". + + + Contenido de texto de un nodo. + + + Espacio en blanco entre marcas. + + + Declaración XML (por ejemplo, <?xml version='1.0'?> ). + + + Proporciona toda la información de contexto que necesita el objeto para analizar un fragmento de XML. + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.El subconjunto DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space, codificación y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados y codificación. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Obtiene o establece el identificador URI base. + Identificador URI base para resolver el archivo DTD. + + + Obtiene o establece el nombre de la declaración de tipos de documento. + Nombre de la declaración de tipos de documento. + + + Obtiene o establece el tipo de codificación. + Objeto que indica el tipo de codificación. + + + Obtiene o establece el subconjunto DTD interno. + Subconjunto DTD interno.Por ejemplo, esta propiedad devuelve todo lo que se encuentra entre los corchetes <!DOCTYPE doc [...]>. + + + Obtiene o establece el objeto . + XmlNamespaceManager. + + + Obtiene el objeto que se va a utilizar para subdividir cadenas.Para obtener más información sobre cadenas subdivididas, vea . + XmlNameTable. + + + Obtiene o establece el identificador público. + Identificador público. + + + Obtiene o establece el identificador de sistema. + Identificador de sistema. + + + Obtiene o establece el ámbito de xml:lang actual. + Ámbito de xml:lang actual.Si en el ámbito no hay ningún xml:lang, se devuelve String.Empty. + + + Obtiene o establece el ámbito de xml:space actual. + Valor de que indica el ámbito de xml:space. + + + Representa un nombre XML completo. + + + Inicializa una nueva instancia de la clase . + + + Inicializa una nueva instancia de la clase con el nombre especificado. + Nombre local que se va a utilizar como nombre del objeto . + + + Inicializa una nueva instancia de la clase con el nombre y el espacio de nombres especificados. + Nombre local que se va a utilizar como nombre del objeto . + Espacio de nombres para el objeto . + + + Proporciona un vacío. + + + Determina si el objeto especificado es igual al objeto actual. + Es true si los dos son un objeto de la misma instancia; en caso contrario, es false. + Estructura que se va comparar. + + + Devuelve el código hash del . + Código hash de este objeto. + + + Obtiene un valor que indica si el objeto está vacío. + true si el nombre y el espacio de nombres corresponden a cadenas vacías; en caso contrario, false. + + + Obtiene una representación de cadena del nombre completo de . + Representación de cadena del nombre completo o de String.Empty si no hay un nombre que esté definido para el objeto. + + + Obtiene una representación de cadena del espacio de nombres de . + Representación de cadena del espacio de nombres o de String.Empty si no hay un espacio de nombres que esté definido para el objeto. + + + Compara dos objetos . + Es true si los dos objetos tienen los mismos valores de nombre y de espacio de nombres; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Compara dos objetos . + Es true si los valores de nombre y de espacio de nombres de los dos objetos se diferencian en algo; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + Nombre del objeto. + Espacio de nombres del objeto. + + + Representa un lector que proporciona acceso rápido a datos XML, sin almacenamiento en caché y con desplazamiento solo hacia delante.Para examinar el código fuente de .NET Framework para este tipo, consulte el fuente de referencia de. + + + Inicializa una nueva instancia de la clase XmlReader. + + + Cuando se invalida en una clase derivada, obtiene el número de atributos en el nodo actual. + Número de atributos del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI base del nodo actual. + Identificador URI base del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa los métodos de lectura de contenido binario. + Es true si se implementan los métodos de lectura de contenido binario; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa el método . + Es true si implementa el método ; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si este lector puede analizar y resolver entidades. + Es true si el lector puede analizar y resolver entidades; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Crea un nuevo utilizando la secuencia especificada con la configuración predeterminada de la instancia. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + + + Crea un nuevo instancia con la configuración y la secuencia especificada. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de secuencia, la configuración y el contexto para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se utiliza el lector XML para descodificar la secuencia de datos. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo .Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de lector, la configuración y el contexto de texto especificado para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + Tanto la propiedad como la propiedad contienen valores.Sólo se puede establecer y utilizar una de estas propiedades NameTable. + + + Crea una nueva instancia de con el URI especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El URI para el archivo que contiene los datos XML.La clase se utiliza para convertir la ruta de acceso en una representación de datos canónicos. + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + El archivo que identifica el URI no existe. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia usando el URI especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + URI del archivo que contiene los datos XML.El objeto del objeto se utiliza para convertir la ruta de acceso en una representación de datos canónicos.Si es null, se utiliza un nuevo objeto . + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + No se encuentra el archivo especificado por el URI. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia utilizando el lector XML especificado y la configuración. + Un objeto que se ajusta alrededor especificado objeto. + El objeto que desea utilizar como lector XML subyacente. + La configuración para el nuevo instancia.El nivel de conformidad del objeto debe coincidir con el del lector subyacente o establecerse en . + El valor de es null. + Si el objeto especifica un nivel de conformidad que no es coherente con nivel de conformidad del lector subyacente.o bienEl objeto subyacente está en un estado de o . + + + Cuando se invalida en una clase derivada, obtiene la profundidad del nodo actual en el documento XML. + Profundidad del nodo actual en el documento XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera todos los recursos usados por la instancia actual de la clase . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera los recursos no administrados que usa y, de forma opcional, libera los recursos administrados. + truepara liberar los recursos administrados y no administrados; false para liberar únicamente los recursos no administrados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el lector está situado al final del flujo. + Es true si el lector está situado al final de la secuencia; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado.Este método no desplaza el lector. + Índice del atributo.El índice está basado en cero.El primer atributo tiene índice 0. + + está fuera del intervalo.Debe ser no negativo y menor que el tamaño de la colección de atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null. + Nombre completo del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null.Este método no desplaza el lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene de forma asincrónica el valor del nodo actual. + Valor del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Obtiene un valor que indica si el nodo actual tiene algún atributo. + Es true si el nodo actual tiene atributos; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual puede tener una propiedad . + Es true si el nodo en el que está situado actualmente el lector puede tener un Value; en caso contrario, es false.Si es false, el nodo tiene un valor de String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se reemplaza en una clase derivada, obtiene un valor que indica si el nodo actual es un atributo generado a partir del valor predeterminado definido en la DTD o el esquema. + Es true si el nodo actual es un atributo cuyo valor fue generado a partir del valor predeterminado definido en la DTD o el esquema; es false si el valor de atributo se estableció explícitamente. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual es un elemento vacío (por ejemplo, <MyElement/>). + Es true si el nodo actual es un elemento ( es igual a XmlNodeType.Element) que termina en />; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve un valor que indica si el argumento de cadena es un nombre XML válido. + Es true si el nombre es válido; en caso contrario, es false. + Nombre que se va a validar. + El valor de es null. + + + Devuelve un valor que indica si el argumento de cadena es un token de nombre XML válido. + Es true si es un token de nombre válido; en caso contrario, es false. + Token de nombre que se va a validar. + El valor de es null. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío. + Es true si encuentra una etiqueta de apertura o una etiqueta de elemento vacío; es false si se encuentra un tipo de nodo que no sea XmlNodeType.Element. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si la propiedad del elemento encontrado coincide con el argumento especificado. + true si el nodo resultante es un elemento y la propiedad Name coincide con la cadena especificada.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si la propiedad Name del elemento no coincide con la cadena especificada. + Cadena que se compara con la propiedad Name del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si las propiedades y del elemento encontrado coinciden con las cadenas especificadas. + true si el nodo resultante es un elemento.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si las propiedades LocalName y NamespaceURI del elemento no coinciden con la cadena especificada. + Cadena con la que se compara la propiedad LocalName del elemento encontrado. + Cadena con la que se compara la propiedad NamespaceURI del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre local del nodo actual. + Nombre del nodo actual sin prefijo.Por ejemplo, LocalName es book para el elemento <bk:book>.Para los tipos de nodo sin nombre (por ejemplo, Text, Comment, etc.), esta propiedad devuelve String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, resuelve un prefijo de espacio de nombres en el ámbito del elemento actual. + Identificador URI de espacio de nombres al que se asigna el prefijo o null si no se encuentra ningún prefijo coincidente. + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con el índice especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro tiene un valor negativo. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con la propiedad especificada. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con las propiedades y especificadas. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Comprueba si el nodo actual es un nodo de contenido (texto sin espacios en blanco, CDATA, Element, EndElement, EntityReference o EndEntity).Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo.Omite los siguientes tipos de nodo: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + XML incorrecto que se encuentra en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica comprueba si el nodo actual es un nodo de contenido.Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, se desplaza al elemento que contiene el nodo de atributo actual. + Es true si el lector está situado en un atributo (el lector se desplaza hasta el elemento que posee el atributo); es false si el lector no está situado en un atributo (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el primer atributo. + Es true si existe un atributo (el lector se desplaza hasta el primer atributo); en caso contrario, es false (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el siguiente atributo. + Es true si hay siguiente atributo; es false si no hay más atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre completo del nodo actual. + Nombre completo del nodo actual.Por ejemplo, Name es bk:book para el elemento <bk:book>.El nombre devuelto depende de la propiedad del nodo.Los siguientes tipos de nodo devuelven los valores que figuran en la lista.Todos los demás tipos de nodo devuelven una cadena vacía.Tipo de nodo Name AttributeNombre del atributo. DocumentTypeNombre del tipo de documento. ElementEl nombre de la etiqueta. EntityReferenceNombre de la entidad a la que se hace referencia. ProcessingInstructionDestino de la instrucción de procesamiento. XmlDeclarationCadena literal xml. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI de espacio de nombres (según se define en la especificación relativa a espacios de nombres del Consorcio W3C) del nodo en el que está situado el lector. + URI de espacio de nombres del nodo actual; en caso contrario, una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el objeto que está asociado a esta implementación. + XmlNameTable que permite obtener la versión subdividida de una cadena en el nodo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el tipo del nodo actual. + Uno de los valores de enumeración que especifican el tipo del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el prefijo de espacio de nombres asociado al nodo actual. + Prefijo de espacio de nombres asociado al nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee el siguiente nodo del flujo. + trueSi el siguiente nodo se leyó correctamente; de lo contrario, false. + Se ha producido un error al analizar el fragmento de XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el nodo siguiente del flujo. + Es true si se lee correctamente el siguiente nodo; es false si no hay más nodos para leer. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, analiza el valor de atributo en uno o varios nodos Text, EntityReference o EndEntity. + Es true si hay nodos para devolver.Es false si el lector no está situado en un nodo de atributo cuando se realiza la llamada inicial o si se han leído todos los valores de atributo.Un atributo vacío, como misc="", devuelve true con un solo nodo cuyo valor es String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo.Por ejemplo, se puede utilizar al convertir un objeto en xs:string.Este valor puede ser null. + El formato del contenido no es correcto para el tipo de destino. + La conversión intentada no es válida. + El valor de es null. + El nodo actual no es un tipo de nodo compatible.Vea la siguiente tabla para obtener información detallada. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como valor Boolean. + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido de texto en la posición actual como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión doble. + El contenido de texto como número de punto flotante de precisión doble. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + El contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 32 bits con signo. + El contenido de texto como entero de 32 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 64 bits con signo. + El contenido de texto como entero de 64 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI de espacio de nombres coinciden con los del elemento actual y, a continuación, lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido del elemento como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión doble. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo de contenido actual es una etiqueta de cierre y desplaza el lector hasta el siguiente nodo. + El nodo actual no es una etiqueta de cierre o si se encuentra XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía.Si el nodo actual no es un elemento ni un atributo, se devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, lee el contenido, incluido el marcado, que representa este nodo y todos sus nodos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el contenido, incluido el marcado, que representa este nodo y todos sus elementos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo actual es un elemento y hace avanzar el sistema de lectura hasta el siguiente nodo. + Se detectó XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con la propiedad especificada y desplaza el lector hasta el siguiente nodo. + Nombre completo del elemento. + Se detectó XML incorrecto en el flujo de entrada. o bien El objeto del elemento no coincide con el especificado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con las propiedades y especificadas y desplaza el lector hasta el siguiente nodo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Se detectó XML incorrecto en el flujo de entrada.o bienLas propiedades y del elemento encontrado no coinciden con los argumentos especificados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el estado del lector. + Uno de los valores de enumeración que especifica el estado del lector. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve una nueva instancia de XmlReader que se puede utilizar para leer el nodo actual y todos sus descendientes. + Una nueva instancia de lector XML se establece en .Llamar a la método coloca el nuevo sistema de lectura en el nodo que era actual antes de llamar a la método. + El lector de XML no está situado en un elemento cuando se llama a este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Hace avanzar el objeto hasta al siguiente elemento descendiente con el nombre completo especificado. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre completo del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto hasta el siguiente elemento descendiente que tenga el URI de espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre local del elemento al que se desea desplazar. + URI del espacio de nombres del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee hasta que encuentra un elemento con el nombre completo especificado. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre completo del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Lee hasta que encuentra un elemento con el nombre local y el URI de espacio de nombres especificados. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Hace avanzar el objeto XmlReader hasta al siguiente elemento relacionado con el nombre completo especificado. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre completo del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto XmlReader hasta el siguiente elemento relacionado que tenga el URI del espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre local del elemento relacionado al que se desea desplazar. + URI del espacio de nombres del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + El nodo actual no tiene ningún valor ( es false). + El valor de es null. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El formato de los datos XML no es correcto. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, resuelve la referencia a entidad para los nodos EntityReference. + El lector no está situado en un nodo EntityReference; esta implementación del lector no puede resolver entidades ( devuelve false). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto utilizado para crear esta instancia del lector.Si este lector no se creó utilizando el método , esta propiedad devuelve null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite los nodos secundarios del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite de forma asincrónica los elementos secundarios del valor del nodo actual. + Nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, obtiene el valor de texto del nodo actual. + El valor devuelto depende de la propiedad del nodo.En la siguiente tabla se recogen los tipos de nodo que tienen un valor para devolver.Todos los demás tipos de nodo devuelven String.Empty.Tipo de nodo Valor AttributeValor del atributo. CDATAContenido de la sección CDATA. CommentContenido del comentario. DocumentTypeSubconjunto interno. ProcessingInstructionTodo el contenido, salvo el destino. SignificantWhitespaceEspacio en blanco entre marcas en un modelo de contenido mixto. TextEl contenido del nodo de texto. WhitespaceEspacio en blanco entre marcas. XmlDeclarationContenido de la declaración. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el tipo de Common Language Runtime (CLR) del nodo actual. + Tipo de CLR correspondiente al valor con tipo del nodo.De manera predeterminada, es System.String. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:space actual. + Uno de los valores de .Si no existe ningún ámbito de xml:space, el valor predeterminado de esta propiedad será XmlSpace.None. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece si los métodos asincrónicos de se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si se va a realizar la comprobación de caracteres. + Es true si se va a realizar la comprobación de caracteres; en caso contrario, es false.De manera predeterminada, es true.NotaSi procesa datos de texto, siempre comprueba que los nombres XML y el contenido de texto son válidos, independientemente de la configuración de la propiedad.Al establecer la propiedad en false, se desactiva la comprobación de caracteres en las referencias a entidades de caracteres. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si se debe cerrar la secuencia o el objeto subyacente al cerrar el lector. + Es true para cerrar la secuencia o subyacente al cerrar el lector; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que cumplirá . + Uno de los valores de enumeración que especifica el nivel de cumplimiento que se aplicará el lector XML.De manera predeterminada, es . + + + Obtiene o establece un valor que determine el procesamiento de DTD. + Uno de los valores de enumeración que determina el procesamiento de DTD.De manera predeterminada, es . + + + Obtiene o establece un valor que indica si se van a omitir los comentarios. + Es true para omitir los comentarios; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se van a omitir las instrucciones de procesamiento. + Es true para omitir las instrucciones de procesamiento; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se va a omitir el espacio en blanco no significativo. + Es true para omitir el espacio en blanco; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el desplazamiento del número de línea del objeto . + Desplazamiento del número de línea.El valor predeterminado es 0. + + + Obtiene o establece el desplazamiento de la posición de línea del objeto . + Desplazamiento de la posición de la línea.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo de caracteres permitido en un documento que resulta de expandir las entidades. + El número máximo de caracteres permitido de las entidades expandidas.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo permitido de caracteres en un documento XML.Un valor cero (0) significa que no existe ningún límite en el tamaño del documento XML.Un valor distinto de cero especifica el tamaño máximo, en caracteres. + El número máximo de caracteres permitido en un documento XML.El valor predeterminado es 0. + + + Obtiene o establece el objeto utilizado para las comparaciones de cadenas subdivididas. + Objeto que almacena todas las cadenas subdivididas que utilizan todas las instancias del objeto creadas mediante este objeto .De manera predeterminada, es null.La instancia de creada utilizará un nuevo objeto vacío si este valor es null. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Especifica el ámbito de xml:space actual. + + + El ámbito de xml:space equivale a default. + + + Sin ámbito de xml:space. + + + El ámbito de xml:space equivale a preserve. + + + Representa un sistema de escritura que constituye una manera rápida, no almacenada en caché y de solo avance para generar flujos o archivos que contienen datos XML. + + + Inicializa una nueva instancia de la clase . + + + Crea una nueva instancia de mediante el flujo especificado. + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + The value is null. + + + Crea una nueva instancia de mediante el flujo y el objeto . + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + The value is null. + + + Crea una nueva instancia de mediante los objetos y especificados. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Libera todos los recursos usados por la instancia actual de la clase . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libera los recursos no administrados que usa y libera los recursos administrados de forma opcional. + Es true para liberar recursos tanto administrados como no administrados; es false para liberar únicamente recursos no administrados. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, vuelca el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vuelca asincrónicamente el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + Tarea que representa la operación Flush asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, devuelve el prefijo más próximo definido en el ámbito de espacio de nombres actual correspondiente al identificador URI de espacio de nombres. + Prefijo coincidente o null si no se encuentra ningún identificador URI de espacio de nombres coincidente en el ámbito actual. + Identificador URI de espacio de nombres cuyo prefijo se desea buscar. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto usado para crear esta instancia del sistema de escritura.Si este sistema de escritura no se creó usando el método , esta propiedad devuelve null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe todos los atributos que se encuentran en la posición actual en . + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe todos los atributos encontrados en la posición actual en . + Tarea que representa la operación WriteAttributes asincrónica. + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el valor y nombre local especificados. + Nombre local del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe un atributo con el valor, nombre local e identificador URI del espacio de nombres especificados. + Nombre local del atributo. + Identificador URI de espacio de nombres que se va asociar al atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el prefijo, el nombre local, el identificador URI de espacio de nombres y el valor especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un atributo con el prefijo, el nombre local, el URI del espacio de nombres y el valor especificados. + Tarea que representa la operación WriteAttributeString asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en Base64 y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados en Base64 y escribe el texto resultante. + Tarea que representa la operación WriteBase64 asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en BinHex y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados como BinHex y escribe el texto resultante. + Tarea que representa la operación WriteBinHex asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un bloque <![CDATA[...]]> que contiene el texto especificado. + Texto que se va a colocar en el bloque CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un bloque <![CDATA[...]]> que contiene el texto especificado. + Tarea que representa la operación WriteCData asincrónica. + Texto que se va a colocar en el bloque CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, impone la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Carácter Unicode para el que se va a generar una entidad de caracteres. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Impone asincrónicamente la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Tarea que representa la operación WriteCharEntity asincrónica. + Carácter Unicode para el que se va a generar una entidad de caracteres. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe texto en un búfer cada vez. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente texto en un búfer cada vez. + Tarea que representa la operación WriteChars asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un comentario <!--...--> que contiene el texto especificado. + Texto que se va a colocar en el comentario. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe un comentario <!--...--> que contiene el texto especificado. + Tarea que representa la operación WriteComment asincrónica. + Texto que se va a colocar en el comentario. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración DOCTYPE con el nombre y atributos opcionales especificados. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración DOCTYPE con el nombre y los atributos opcionales especificados. + Tarea que representa la operación WriteDocType asincrónica. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un elemento con el nombre local y el valor especificados. + Nombre local del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el nombre local especificado, el URI de espacio de nombres y el valor. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el prefijo, nombre local, el URI de espacio de nombres y el valor especificados. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un elemento con el nombre local, el URI de espacio de nombres, el valor y el prefijo especificados. + Tarea que representa la operación WriteElementString asincrónica. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra la llamada a anterior. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra de forma asincrónica la llamada anterior al método . + Tarea que representa la operación WriteEndAttribute asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra todos los elementos o atributos abiertos y vuelve a colocar el sistema de escritura en el estado de inicio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente todos los elementos o atributos abiertos y coloca de nuevo el sistema de escritura en el estado de inicio. + Tarea que representa la operación WriteEndDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una referencia a entidad de la siguiente forma: &name;. + Nombre de la referencia a entidad. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente una referencia a entidad de la siguiente manera: &name;. + Tarea que representa la operación WriteEntityRef asincrónica. + Nombre de la referencia a entidad. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteFullEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteName asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteNmToken asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, copia todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia asincrónicamente todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + Tarea que representa la operación WriteNode asincrónica. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe de forma asincrónica una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Tarea que representa la operación WriteProcessingInstruction asincrónica. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Tarea que representa la operación WriteQualifiedName asincrónica. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde un búfer de caracteres. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde una cadena. + Cadena que contiene el texto que se va a escribir. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el marcado sin formato de un búfer de caracteres. + Tarea que representa la operación WriteRaw asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente el marcado sin formato de una cadena. + Tarea que representa la operación WriteRaw asincrónica. + Cadena que contiene el texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe el inicio de un atributo con el nombre local especificado. + Nombre local del atributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el inicio de un atributo con el URI de espacio de nombres y el nombre local especificados. + Nombre local del atributo. + URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el inicio de un atributo con el prefijo, el nombre local y el URI de espacio de nombres especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el inicio de un atributo con el prefijo, URI de espacio de nombres y el nombre local especificados. + Tarea que representa la operación WriteStartAttribute asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0" y el atributo independiente. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0". + Tarea que representa la operación WriteStartDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0" así como el atributo independiente. + Tarea que representa la operación WriteStartDocument asincrónica. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una etiqueta de apertura con el nombre local especificado. + Nombre local del elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres especificado. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento.Si este espacio de nombres ya está en el ámbito y tiene asociado un prefijo, el sistema de escritura escribe automáticamente también dicho prefijo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres y prefijo especificados. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la etiqueta de apertura especificada y la asocia al espacio de nombres y al prefijo especificados. + Tarea que representa la operación WriteStartElement asincrónica. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el estado del sistema de escritura. + Uno de los valores de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el contenido de texto especificado. + Texto que se va a escribir. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el contenido de texto dado. + Tarea que representa la operación WriteString asincrónica. + Texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, genera y escribe la entidad de carácter suplente para el par de caracteres suplentes. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera y escribe asincrónicamente la entidad de carácter suplente del par de caracteres suplentes. + Tarea que representa la operación WriteSurrogateCharEntity asincrónica. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el valor del objeto. + Valor del objeto que se va a escribir.Nota   Con el lanzamiento de .NET Framework 3.5, este método acepta como parámetro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un número de punto flotante de precisión sencilla. + El número de punto flotante de precisión sencilla que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el espacio en blanco especificado. + Cadena de caracteres de espacio en blanco. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el espacio en blanco especificado. + Tarea que representa la operación WriteWhitespace asincrónica. + Cadena de caracteres de espacio en blanco. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, se obtiene un que representa el ámbito de xml:space actual. + XmlSpace que representa el ámbito de xml:space actual.Valor Significado NoneEste es el valor predeterminado si no existe ningún ámbito de xml:space.DefaultEl ámbito actual es xml:space="default".PreserveEl ámbito actual es xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece un valor que indica si los métodos asincrónicos se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si el sistema de escritura XML debería comprobar y asegurarse de que todos los caracteres en el documento se ajustan a la sección "2.2 Characters" de la recomendación XML 1.0 del Consorcio W3C. + true si se va a realizar la comprobación de caracteres; en caso contrario, false.De manera predeterminada, es true. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si el objeto también debe cerrar el flujo subyacente o cuando se llama al método . + true para cerrar también el flujo subyacente o ; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que el sistema de escritura XML comprueba para la salida XML. + Uno de los valores de enumeración que especifica el nivel de conformidad (documento, fragmento o detección automática).De manera predeterminada, es . + + + Obtiene o establece el tipo de codificación de texto que se va a usar. + Codificación de texto que se va a usar.De manera predeterminada, es Encoding.UTF8. + + + Obtiene o establece un valor que indica si se va a aplicar sangría a los elementos. + true para escribir elementos individuales en líneas nuevas y aplicar sangría; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece la cadena de caracteres que se va a usar al aplicar sangría.Esta opción se usa cuando la propiedad se establece en true. + Cadena de caracteres que se va a usar al aplicar sangría.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es dos espacios. + The value assigned to the is null. + + + Obtiene o establece un valor que indica si debe quitar declaraciones de espacio de nombres duplicadas al escribir contenido XML.El comportamiento predeterminado es que el sistema de escritura genere todas las declaraciones de espacio de nombres que se encuentran en la resolución de espacios de nombres del sistema de escritura. + Enumeración usada para especificar si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Obtiene o establece la cadena de caracteres que se va a usar para los saltos de línea. + Cadena de caracteres que se va a usar para los saltos de línea.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es \r\n (retorno de carro, nueva línea). + The value assigned to the is null. + + + Obtiene o establece un valor que indica si se deben normalizar los saltos de línea en el resultado. + Uno de los valores de .De manera predeterminada, es . + + + Obtiene o establece un valor que indica si los atributos se deben escribir en una nueva línea. + true para escribir los atributos en líneas individuales; en caso contrario, false.De manera predeterminada, es false.NotaEsta configuración no se aplica cuando el valor de la propiedad es false.Cuando se establece en true, a cada atributo le precede una nueva línea y un nivel adicional de sangría. + + + Obtiene o establece un valor que indica si debe omitir una declaración XML. + true para omitir la declaración XML; en caso contrario, false.El valor predeterminado es false, se escribe una declaración XML. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Obtiene o establece un valor que indica si agregará etiquetas de cierre a todas las etiquetas de elementos sin cerrar cuando se llame al método . + + Es true si se cerrarán todas las etiquetas de elementos sin cerrar; si no, es false.El valor predeterminado es true. + + + Una representación en memoria de un esquema XML según se indica en las especificaciones XML Schema Part 1: Structures y XML Schema Part 2: Datatypes de World Wide Web Consortium (W3C). + + + Indica si los atributos o los elementos deben calificarse con un espacio de nombres como prefijo. + + + El formato de elemento y de atributo no se especifica en el esquema. + + + Los atributos y los elementos deben estar calificados con el espacio de nombres como prefijo. + + + Los elementos y los atributos no deben estar calificados con el espacio de nombres como prefijo. + + + Proporciona formato personalizado para la serialización y deserialización XML. + + + Este método se reserva y no debe utilizarse.Al implementar la interfaz IXmlSerializable, debe devolver null (Nothing en Visual Basic) desde este método y, en su lugar, si se requiere especificar un esquema personalizado, aplique a la clase. + Clase que describe la representación XML del objeto producido por el método y utilizado por el método . + + + Genera un objeto a partir de su representación XML. + Secuencia de desde la que se deserializa el objeto. + + + Convierte un objeto en su representación XML. + Secuencia de para la que se serializa el objeto. + + + Cuando se aplica a un tipo, almacena el nombre de un método estático del tipo que devuelve un esquema XML y un (o para los tipos anónimos) que controla la serialización del tipo. + + + Inicializa una nueva instancia de la clase , tomando el nombre del método estático que proporciona el esquema XML del tipo. + El nombre del método estático que se debe implementar. + + + Obtiene o establece un valor que determina si la clase de destino es un carácter comodín o que el esquema para la clase contiene sólo un elemento xs:any. + true, si la clase es un comodín, o si el esquema contiene sólo el elemento xs:any; de lo contrario, false. + + + Obtiene el nombre del método estático que proporciona el esquema XML del tipo y el nombre de su tipo de datos de esquemas XML. + Nombre del método que invoca la infraestructura de XML para devolver un esquema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/fr/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/fr/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..f9d6d67 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/fr/System.Xml.ReaderWriter.xml @@ -0,0 +1,2659 @@ + + + + System.Xml.ReaderWriter + + + + Spécifie l'ampleur des contrôles d'entrée ou de sortie que les objets et effectuent. + + + L'objet ou détecte automatiquement si une vérification au niveau du document ou du fragment doit être effectuée et procède au contrôle approprié.Si vous encapsulez un autre objet ou , l'objet externe n'effectue aucune vérification de conformité supplémentaire.Le contrôle de conformité doit être fait par l'objet sous-jacent.Pour plus de détails sur la détermination du niveau de conformité, consultez les propriétés et . + + + Les données XML respectent les règles définissant un document XML 1.0 bien formé, tel que défini par le W3C. + + + Les données XML constituent un fragment XML bien formé, tel que défini par le W3C. + + + Spécifie les options de traitement des DTD.L'énumération est utilisée par la classe . + + + Entraîne le fait que l'élément DOCTYPE est ignoré.Aucun traitement de DTD ne se poursuit. + + + Spécifie que lorsqu'une DTD est rencontrée, un est levé avec un message signalant que les DTD sont interdites.Il s'agit du comportement par défaut. + + + Fournit une interface pour permettre à une classe de retourner des informations de ligne et de position. + + + Obtient une valeur indiquant si la classe peut retourner des informations de ligne. + true si et peuvent être fournis ; sinon, false. + + + Obtient le numéro de la ligne active. + Le numéro de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Obtient la position de la ligne active. + La position de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Fournit un accès en lecture seule à un jeu de mappages de préfixes et d'espaces de noms. + + + Obtient une collection de mappages de préfixes sur des espaces de noms définis qui sont actuellement dans la portée. + + qui contient les espaces de noms actuellement dans la portée. + Valeur de qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient l'URI de l'espace de noms mappé sur le préfixe spécifié. + L'URI de l'espace de noms qui est mappé au préfixe ; null si le préfixe n'est pas mappé à un URI d'espace de noms. + Préfixe dont vous recherchez l'URI de l'espace de noms. + + + Obtient le préfixe qui est mappé sur l'URI de l'espace de noms spécifié. + Le préfixe qui est mappé sur l'URI de l'espace de noms ; null si l'URI de l'espace de noms n'est pas mappé sur un préfixe. + URI de l'espace de noms dont vous recherchez le préfixe. + + + Spécifie si vous souhaitez supprimer les déclarations d'espace de noms en double dans le . + + + Spécifie que les déclarations d'espace de noms en double ne seront pas supprimées. + + + Spécifie que les déclarations d'espace de noms en double seront supprimées.Pour l'espace de noms en double à supprimer, le préfixe et l'espace de noms doivent correspondre. + + + Implémente un à thread unique. + + + Initialise une nouvelle instance de la classe NameTable. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans NameTable.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant les chaînes à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère de la chaîne. + Nombre de caractères dans la chaîne. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans le NameTable. + Chaîne à ajouter. + + a la valeur null. + + + Obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Obtient la chaîne atomisée de valeur spécifiée. + L'objet de chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie comment gérer les sauts de ligne. + + + Les caractères de nouvelle ligne sont définis comme "entitize".Ce paramètre conserve tous les caractères lorsque la sortie est lue par un normalisant. + + + Les caractères de nouvelle ligne restent inchangés.La sortie est identique à l'entrée. + + + Les caractères de nouvelle ligne sont remplacés pour correspondre au caractère spécifié dans la propriété . + + + Spécifie l'état du lecteur. + + + La méthode a été appelée. + + + La fin du fichier a été atteinte avec succès. + + + Une erreur s'est produite et empêche l'opération de lecture de se poursuivre. + + + La méthode Read n'a pas été appelée. + + + La méthode Read a été appelée.Des méthodes supplémentaires peuvent être appelées sur le lecteur. + + + Spécifie l'état de . + + + Indique qu'une valeur d'attribut est en cours d'écriture. + + + Indique que la méthode a été appelée. + + + Indique que le contenu d'élément est en cours d'écriture. + + + Indique qu'une balise de début d'élément est en cours d'écriture. + + + Une exception a été levée et a laissé le dans un état non valide.Vous pouvez appeler la méthode pour mettre le à l'état .Toute autre méthode appelle les résultats dans un . + + + Indique que le prologue est en cours d'écriture. + + + Indique qu'une méthode Write n'a pas encore été appelée. + + + Encode et décode les noms XML, et fournit des méthodes pour la conversion entre les types Common Language Runtime et les types XSD (XML Schema Definition).Lors de la conversion de types de données, les valeurs retournées sont indépendantes des paramètres régionaux. + + + Décode un nom.Cette méthode fait le contraire des méthodes et . + Nom décodé. + Nom à transformer. + + + Convertit le nom en un nom local XML valide. + Nom encodé. + Nom à encoder. + + + Convertit le nom en un nom XML valide. + Retourne le nom avec les caractères non valides remplacés par une chaîne d'échappement. + Nom à traduire. + + + Vérifie que le nom est valide selon la spécification XML. + Nom encodé. + Nom à encoder. + + + Convertit la chaîne en un équivalent . + Valeur Boolean, c'est-à-dire true ou false. + Chaîne à convertir. + + is null. + + does not represent a Boolean value. + + + Convertit la chaîne en un équivalent . + Équivalent Byte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Char représentant le caractère unique. + Chaîne contenant un seul caractère à convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convertit la chaîne en un élément en utilisant le mode spécifié. + Équivalent de la chaîne . + Valeur de la chaîne à convertir. + Une des valeurs de qui spécifient si la date doit être convertie en heure locale ou conservée en temps UTC, s'il s'agit d'une date UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir.Remarque   La chaîne doit être conforme à un sous-ensemble de la recommandation du W3C sur le type XML dateTime.Pour plus d'informations, consultez http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Format à partir duquel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à ce format. + + is null. + + or is an empty string or is not in the specified format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Tableau de formats à partir duquel peut être convertie.Chaque format figurant dans peut correspondre à un des sous-ensembles de la recommandation W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à un de ces formats. + + + Convertit la chaîne en un équivalent . + Équivalent Decimal de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Double de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Guid de la chaîne. + Chaîne à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent Int16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent SByte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Single de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit le en . + Une représentation sous forme de chaîne de l'élément Boolean, c'est-à-dire "true" ou "false". + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Byte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Char. + Valeur à convertir. + + + Convertit l'élément en une chaîne en utilisant le mode spécifié. + Équivalent de l'élément . + Valeur à convertir. + Une des valeurs de qui spécifient comment traiter la valeur . + The value is not valid. + The or value is null. + + + Convertit l'élément fourni en une chaîne . + Représentation de l'élément fourni. + + à convertir. + + + Convertit l'élément fourni en une chaîne dans le format spécifié. + Représentation dans le format spécifié de l'élément . + + à convertir. + Format vers lequel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Convertit le en . + Représentation sous forme de chaîne de Decimal. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Double. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Guid. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int64. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de SByte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Single. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de TimeSpan. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt64. + Valeur à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent TimeSpan de la chaîne. + Chaîne à convertir.Le format de chaîne doit être conforme à la recommandation W3C intitulée Schema Part 2 : Datatypes pour les durées. + + is not in correct format to represent a TimeSpan value. + + + Convertit la chaîne en un équivalent . + Équivalent UInt16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Vérifie que le nom est un nom valide selon la recommandation W3C XML (Extended Markup Language). + Le nom, s'il s'agit d'un nom XML valide. + Nom à vérifier. + + is not a valid XML name. + + is null or String.Empty. + + + Vérifie que le nom est un NCName valide selon la recommandation W3C XML (Extended Markup Language).Un élément NCName est un nom qui ne peut pas contenir un signe deux-points. + Le nom, s'il s'agit d'un NCName valide. + Nom à vérifier. + + is null or String.Empty. + + is not a valid non-colon name. + + + Vérifie que la chaîne est un NMTOKEN valide selon la recommandation du W3C intitulée XML Schema Part2 : Datatypes + Jeton de nom, s'il s'agit d'un NMTOKEN valide. + Chaîne à vérifier. + The string is not a valid name token. + + is null. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'ID publics valides. + Retourne la chaîne passée si tous les caractères de l'argument sont des caractères d'ID publics valides. + + qui contient l'ID à valider. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides. + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides, sinon null. + + à vérifier. + + + Retourne les caractères de la chaîne passée si tous les caractères et caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations relatives au premier caractère non valide rencontré. + Retourne les caractères de la chaîne passée si tous les caractères et les caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations sur le premier caractère non valide rencontré. + Chaîne qui contient les caractères à vérifier. + + + Spécifie la façon de traiter la valeur d'heure lors de la conversion entre chaîne et . + + + Traiter en tant qu'heure locale.Si l'objet représente une heure UTC (Universal Time Coordinates), il est converti en heure locale. + + + Les informations relatives au fuseau horaire doivent être conservées lors de la conversion. + + + Traiter en tant qu'heure locale si un est converti en chaîne. + + + Traiter en tant qu'heure UTC.Si l'objet représente une heure locale, il est converti en UTC. + + + Retourne des informations détaillées sur la dernière exception. + + + Initialise une nouvelle instance de la classe XmlException. + + + Initialise une nouvelle instance de la classe XmlException avec un message d'erreur spécifié. + Description de l'erreur. + + + Initialise une nouvelle instance de la classe XmlException. + Description de la condition d'erreur. + + qui a levé XmlException, le cas échéant.Cette valeur peut être null. + + + Initialise une nouvelle instance de la classe XmlException avec le message, l'exception interne, le numéro de ligne et la position de ligne spécifiés. + Description de l'erreur. + Exception qui constitue la cause de l'exception actuelle.Cette valeur peut être null. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient le numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient la position de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient un message décrivant l'exception actuelle. + Message d'erreur indiquant la raison de l'exception. + + + Résout des espaces de noms dans une collection, ajoute des espaces de noms à une collection, en supprime de celle-ci et gère la portée de ces espaces de noms. + + + Initialise une nouvelle instance de la classe avec le spécifié. + + à utiliser. + null is passed to the constructor + + + Ajoute l'espace de noms spécifié à la collection. + Préfixe à associer à l'espace de noms ajouté.Utilisez String.Empty pour ajouter un espace de noms par défaut.Remarque : si est utilisé pour la résolution des espaces de noms dans une expression XPath (XML Path Language), un préfixe doit être spécifié.Si une expression XPath n'inclut pas de préfixe, l'URI (Uniform Resource Identifier) d'espace de noms est supposé être un espace de noms vide.Pour plus d'informations sur les expressions XPath et , reportez-vous aux méthodes et . + Espace de noms à ajouter. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtient l'URI de l'espace de noms de l'espace de noms par défaut. + Retourne l'URI de l'espace de noms de l'espace de noms par défaut ou String.Empty s'il n'existe aucun espace de noms par défaut. + + + Retourne un énumérateur qui peut être utilisé pour itérer au sein des espaces de noms de . + + contenant les préfixes stockés par . + + + Obtient une collection de noms d'espace de noms indexés par préfixe qui peut être utilisée pour énumérer les espaces de noms figurant actuellement dans la portée. + Collection de paires d'espace de noms et préfixe actuellement dans la portée. + Valeur d'énumération qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient une valeur indiquant si le préfixe fourni possède un espace de noms défini pour la portée actuelle faisant l'objet d'un push. + true si un espace de noms est défini ; sinon, false. + Préfixe de l'espace de noms que vous souhaitez rechercher. + + + Obtient l'URI de l'espace de noms du préfixe spécifié. + Retourne l'URI de l'espace de noms pour ou null en l'absence d'un espace de noms mappé.La chaîne retournée est atomisée.Pour plus d'informations sur les chaînes atomisées, consultez la classe . + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour mettre en correspondance l'espace de noms par défaut, passez String.Empty. + + + Recherche le préfixe déclaré pour l'URI de l'espace de noms spécifié. + Préfixe correspondant.S'il n'y a aucun préfixe mappé, la méthode retourne String.Empty.Si une valeur nulle est fournie, null est retourné. + Espace de noms à résoudre pour le préfixe. + + + Obtient le associé à cet objet. + + utilisé par cet objet. + + + Dépile une portée espace de noms de la pile. + true s'il reste des portées espaces de noms sur la pile ; false s'il n'existe plus d'espaces de noms à dépiler. + + + Exécute un push d'une portée espace de noms dans la pile. + + + Supprime l'espace de noms indiqué pour le préfixe spécifié. + Préfixe de l'espace de noms. + Espace de noms à supprimer pour le préfixe spécifié.L'espace de noms supprimé provient de la portée espace de noms en cours.Les espaces de noms situés en dehors de la portée actuelle sont ignorés. + The value of or is null. + + + Définit la portée espace de noms. + + + Tous les espaces de noms définis dans la portée du nœud actuel.Ceci inclut l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms définis dans la portée du nœud actuel, à l'exclusion de l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms qui sont définis localement sur le nœud actuel. + + + Table d'objets de chaînes atomisées. + + + Initialise une nouvelle instance de la classe . + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante.Si la longueur a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante. + Nom à ajouter. + + a la valeur null. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant la même valeur que la chaîne spécifiée. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie le type de nœud. + + + Attribut (par exemple, id='123'). + + + Section CDATA (par exemple, <![CDATA[my escaped text]]>). + + + Commentaire (par exemple, <!-- my comment -->). + + + Objet document qui, en tant que racine de l'arborescence de documents, permet d'accéder à l'intégralité du document XML. + + + Fragment de document. + + + Déclaration de type du document, indiquée par la balise suivante (par exemple, <!DOCTYPE...>). + + + Élément (par exemple, <item>). + + + Balise d'élément de fin (par exemple, </item>). + + + Retourné lorsque XmlReader parvient à la fin du remplacement de l'entité, à la suite d'un appel à . + + + Déclaration d'entité (par exemple, <!ENTITY...>). + + + Référence à une entité (par exemple, &num;). + + + Ceci est retourné par si aucune méthode Read n'a été appelée. + + + Notation dans la déclaration de type du document (par exemple, <!NOTATION...>). + + + Instruction de traitement (par exemple, <?pi test?>). + + + Espace blanc entre le balisage dans un modèle de contenu mixte ou espace blanc dans la portée xml:space="preserve". + + + Texte d'un nœud. + + + Espace blanc entre le balisage. + + + Déclaration XML (par exemple, <?xml version='1.0'?>). + + + Fournit toutes les informations de contexte requises par pour analyser un fragment XML. + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le sous-ensemble DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space, encodage et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les valeurs , , xml:lang et xml:space spécifiées. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , xml:lang, xml:space spécifiés et l'encodage spécifié. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations sur les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Obtient ou définit l'URI de base. + URI de base à utiliser pour résoudre le fichier DTD. + + + Obtient ou définit le nom de la déclaration de type du document. + Nom de la déclaration de type du document. + + + Obtient ou définit le type d'encodage. + Objet indiquant le type d'encodage. + + + Obtient ou définit le sous-ensemble interne DTD. + Sous-ensemble interne DTD.Par exemple, cette propriété retourne tout ce qui est contenu entre crochets <!DOCTYPE doc [...]>. + + + Obtient ou définit l'. + XmlNamespaceManager. + + + Obtient le utilisé pour atomiser les chaînes.Pour plus d'informations sur les chaînes atomisées, consultez . + XmlNameTable. + + + Obtient ou définit l'identificateur public. + Identificateur public. + + + Obtient ou définit l'identificateur système. + Identificateur système. + + + Obtient ou définit la portée xml:lang en cours. + Portée xml:lang en cours.S'il n'existe aucun xml:lang dans la portée, String.Empty est retournée. + + + Obtient ou définit la portée xml:space en cours. + Valeur indiquant la portée xml:space. + + + Représente un nom qualifié XML. + + + Initialise une nouvelle instance de la classe . + + + Initialise une nouvelle instance de la classe avec le nom spécifié. + Le nom local à utiliser comme nom de l'objet . + + + Initialise une nouvelle instance de la classe avec le nom et l'espace de noms spécifiés. + Le nom local à utiliser comme nom de l'objet . + Espace de noms pour l'objet . + + + Fournit une chaîne vide . + + + Détermine si l'objet spécifié est identique à l'objet en cours. + true si les deux sont le même objet d'instance ; sinon, false. + + à comparer. + + + Retourne le code de hachage pour . + Code de hachage de cet objet. + + + Obtient une valeur indiquant si est vide. + true si le nom et l'espace de noms sont des chaînes vides ; sinon false. + + + Obtient une représentation de chaîne du nom complet de . + Une représentation du nom complet ou String.Empty si un nom n'est pas défini pour l'objet. + + + Obtient une représentation d'espace de noms de . + Une représentation de l'espace de noms, ou String.Empty si un espace de noms n'est pas défini pour l'objet. + + + Compare deux objets . + true si les deux objets ont le même nom et les mêmes valeurs d'espace de noms ; sinon false. + + à comparer. + + à comparer. + + + Compare deux objets . + true si les valeurs de nom et d'espace de noms diffèrent pour les deux objets ; sinon false. + + à comparer. + + à comparer. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + Nom de l'objet. + Espace de noms pour l'objet. + + + Représente un lecteur fournissant un accès rapide, non mis en cache et en avant uniquement vers les données XML.Pour parcourir le code source de .NET Framework pour ce type, consultez la Source de référence. + + + Initialise une nouvelle instance de la classe XmlReader. + + + En cas de substitution dans une classe dérivée, obtient le nombre d'attributs du nœud actuel. + Nombre d'attributs du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de base du nœud actuel. + URI de base du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur qui indique si implémente les méthodes de lecture de contenu binaire. + true si les méthodes de lecture de contenu binaire sont implémentées ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si implémente la méthode spécifiée. + true si implémente la méthode  ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si ce lecteur peut analyser et résoudre les entités. + true si le lecteur peut analyser et résoudre les entités ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Crée un nouveau instance à l'aide du flux spécifié avec les paramètres par défaut. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + + + Crée un nouveau instance avec les paramètres et les flux de données spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance à l'aide des informations de contexte, les paramètres et les flux de données spécifiées pour l'analyse. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau à l'aide du lecteur de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + La valeur est null. + + + Crée un nouveau à l'aide de la lecture du texte spécifié et les paramètres. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau .Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance pour l'analyse à l'aide des informations de lecteur, les paramètres et le contexte de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + Les propriétés et contiennent toutes deux des valeurs.(Seule une de ces propriétés NameTable peut être définie et utilisée). + + + Crée une instance de avec l'URI spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier qui contient les données XML.La classe permet de convertir un chemin d'accès en représentation de données canonique. + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + Le fichier identifié par l'URI n'existe pas. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau à l'aide de l'URI et les paramètres spécifiés. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier contenant les données XML.L'objet sur l'objet permet de convertir un chemin d'accès en représentation de données canonique.Si est null, un nouvel objet est utilisé. + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + Impossible de trouver le fichier spécifié par l'URI. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau instance à l'aide du lecteur XML spécifié et les paramètres. + Un objet qui est encapsulé autour du texte spécifié objet. + L'objet à utiliser comme lecteur XML sous-jacent. + Les paramètres du nouveau instance.Le niveau de conformité de l'objet doit soit correspondre au niveau de conformité du lecteur sous-jacent, soit avoir la valeur . + La valeur est null. + Si l'objet spécifie un niveau de conformité qui n'est pas cohérent avec le niveau de conformité du lecteur sous-jacent.ouLe sous-jacent est dans un état ou . + + + En cas de substitution dans une classe dérivée, obtient la profondeur du nœud actuel dans le document XML. + Profondeur du nœud actuel dans le document XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour ne libérer que les ressources non managées. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le lecteur est placé à la fin du flux. + true si le lecteur est placé à la fin du flux ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié.Cette méthode ne déplace pas le lecteur. + Index de l'attribut.L'index est de base zéro.Le premier attribut possède l'index 0. + + est hors limites.Il doit être non négatif et inférieur à la taille de la collection d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné. + Nom qualifié de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné.Cette méthode ne déplace pas le lecteur. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient de façon asynchrone la valeur du nœud actuel. + Valeur du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Obtient une valeur indiquant si le nœud actuel a des attributs. + true si le nœud actuel possède des attributs ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel peut posséder . + true si le nœud sur lequel le lecteur est placé actuellement peut posséder Value ; sinon, false.Si false, le nœud a une valeur de String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un attribut généré à partir de la valeur par défaut définie dans le DTD ou le schéma. + true si le nœud actuel est un attribut dont la valeur a été générée à partir de la valeur par défaut définie dans le DTD ou le schéma ; false si la valeur d'attribut a été définie explicitement. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un élément vide (par exemple, <MyElement/>). + true si le nœud actuel est un élément (la propriété est égale à XmlNodeType.Element) qui se termine par /> ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une valeur indiquant si l'argument de chaîne est un nom XML valide. + true si le nom est valide ; sinon, false. + Nom à valider. + La valeur est null. + + + Retourne une valeur indiquant si l'argument de chaîne est un jeton de nom XML valide. + true si le jeton de nom est valide ; sinon, false. + Jeton de nom à valider. + La valeur est null. + + + Appelle et vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide. + true si trouve une balise de début ou une balise d'élément vide ; false si un type de nœud autre que XmlNodeType.Element est trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si la propriété de l'élément trouvé correspond à l'argument spécifié. + true si le nœud résultant est un élément et si la propriété Name correspond à la chaîne spécifiée.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si la propriété Name de l'élément ne correspond pas à la chaîne spécifiée. + Chaîne comparée à la propriété Name de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si les propriétés et de l'élément trouvé correspondent aux chaînes spécifiées. + true si le nœud résultant est un élément.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si les propriétés LocalName et NamespaceURI de l'élément ne correspondent pas aux chaînes spécifiées. + Chaîne à comparer à la propriété LocalName de l'élément trouvé. + Chaîne à comparer à la propriété NamespaceURI de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom local du nœud actuel. + Nom du nœud actuel dont le préfixe est supprimé.Par exemple, LocalName est book pour l'élément <bk:book>.Pour les types de nœuds ne possédant pas de nom (par exemple Text, Comment, etc.), cette propriété retourne String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, résout un préfixe de l'espace de noms dans la portée de l'élément actuel. + URI de l'espace de noms vers lequel le préfixe est mappé ou null si aucun préfixe correspondant n'est trouvé. + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour établir une correspondance avec l'espace de noms par défaut, passez une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec l'index spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre a une valeur négative. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le spécifié. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le et le spécifiés. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Vérifie si le nœud actuel est un nœud de contenu (texte non constitué d'espaces blancs, CDATA, Element, EndElement, EntityReference ou EndEntity).Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier.Il ignore les nœuds possédant les types suivants : ProcessingInstruction, DocumentType, Comment, Whitespace ou SignificantWhitespace. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie de façon asynchrone si le nœud actuel est un nœud de contenu.Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, se déplace vers l'élément contenant le nœud d'attribut actuel. + true si le lecteur est placé sur un attribut (le lecteur se déplace vers l'élément possédant l'attribut) ; false si le lecteur n'est pas placé sur un attribut (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers le premier attribut. + true si un attribut existe (le lecteur se déplace vers le premier attribut) ; sinon, false (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut suivant. + true s'il existe un attribut suivant ; false s'il n'existe plus d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom qualifié du nœud actuel. + Nom qualifié du nœud actuel.Par exemple, Name est bk:book pour l'élément <bk:book>.Le nom retourné dépend du du nœud.Les types de nœuds suivants retournent les valeurs répertoriées.Tous les autres types de nœuds retournent une chaîne vide.Type de nœud Nom AttributeNom de l'attribut. DocumentTypeNom du type de document. ElementNom de la balise. EntityReferenceNom de l'entité référencée. ProcessingInstructionCible de l'instruction de traitement. XmlDeclarationChaîne littérale xml. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de l'espace de noms (tel qu'il est défini dans la spécification relative aux espaces de noms du W3C) du nœud sur lequel le lecteur est placé. + URI d'espace de noms du nœud actuel ; sinon, une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le associé à cette implémentation. + XmlNameTable vous permettant d'obtenir la version atomisée d'une chaîne du nœud. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le type du nœud actuel. + Une des valeurs d'énumération qui spécifient le type du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le préfixe de l'espace de noms associé au nœud actuel. + Préfixe de l'espace de noms associé au nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit le nœud suivant à partir du flux. + trueSi le nœud suivant a été lu avec succès ; Sinon, false. + Une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le nœud suivant à partir du flux de données. + true si le nœud suivant a été lu correctement ; false s'il n'existe plus de nœuds à lire. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, analyse la valeur d'attribut dans un ou plusieurs nœuds Text, EntityReference ou EndEntity. + true s'il existe des nœuds à retourner.false si le lecteur n'est pas placé sur un nœud d'attribut lorsque l'appel initial est effectué ou si toutes les valeurs d'attributs ont été lues.Un attribut vide, par exemple misc="", retourne true avec un nœud unique et la valeur String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type.Par exemple, il peut être utilisé lors de la conversion d'un objet en xs:string.Cette valeur peut être null. + Le format du contenu n'est pas correct pour le type cible. + La tentative de cast n'est pas valide. + La valeur est null. + Le nœud actuel n'est pas un type de nœud pris en charge.Voir le tableau ci-dessous pour plus d'informations. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un Boolean. + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte à la position actuelle comme un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante double précision. + Contenu de texte sous la forme d'un nombre à virgule flottante double précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + Contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 32 bits. + Contenu de texte sous la forme d'un entier signé de 32 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 64 bits. + Contenu de texte sous la forme d'un entier signé de 64 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit le contenu d'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante double précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud de contenu actuel est une balise de fin et avance le lecteur jusqu'au nœud suivant. + Le nœud actuel n'est pas une balise de fin ou un code XML incorrect est trouvé dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit tout le contenu, y compris le balisage, sous forme de chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée.Si le nœud actuel n'est ni un élément ni un attribut, une chaîne vide est retournée. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone tout le contenu, notamment le balisage, en tant que chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, lit le contenu, y compris le balisage, représentant ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu, notamment le balisage, qui représente ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud actuel est un élément et avance le lecteur jusqu'au nœud suivant. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le spécifié, puis avance le lecteur jusqu'au nœud suivant. + Nom qualifié de l'élément. + Code XML incorrect dans le flux d'entrée. ou Le de l'élément ne correspond pas au donné. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le et le spécifiés, puis avance le lecteur jusqu'au nœud suivant. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Code XML incorrect dans le flux d'entrée.ouLes propriétés et de l'élément trouvé ne correspondent pas aux arguments spécifiés. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'état du lecteur. + L'une des valeurs d'énumération qui spécifie l'état du lecteur. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une nouvelle instance de XmlReader qui permet de lire le nœud actuel, ainsi que tous ses descendants. + Une nouvelle instance de lecteur XML définie sur .Appel de la méthode positionne le nouveau lecteur sur le nœud qui était actif avant l'appel à la (méthode). + Lorsque cette méthode est appelée, le lecteur XML n'est pas positionné sur un élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Avance le vers l'élément descendant suivant portant le nom qualifié spécifié. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom qualifié de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance vers le nœud descendant suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom local de l'élément vers lequel se déplacer. + URI de l'espace de noms de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit jusqu'à trouver un élément avec le nom qualifié spécifié. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Nom qualifié de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Lit jusqu'à trouver un élément avec le nom local et l'URI de l'espace de noms spécifiés. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Avance le XmlReader vers l'élément frère suivant portant le nom qualifié spécifié. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom qualifié de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance XmlReader vers l'élément frère suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom local de l'élément frère vers lequel se déplacer. + URI de l'espace de noms de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Le nœud actuel n'a pas de valeur ( est false). + La valeur est null. + L'index de la mémoire tampon, ou l'index augmenté de la valeur du paramètre count, est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + La forme des données XML n'est pas correcte. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, résout la référence d'entité des nœuds EntityReference. + Le lecteur n'est pas placé sur un nœud EntityReference ; cette implémentation du lecteur ne permet pas de résoudre les entités ( retourne false). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance du lecteur.Si ce lecteur n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore les enfants du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore de façon asynchrone les enfants du nœud actuel. + Nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, obtient la valeur texte du nœud actuel. + La valeur retournée dépend du du nœud.Le tableau suivant répertorie les types de nœuds possédant une valeur de retour.Tous les autres types de nœuds retournent String.Empty.Type de nœud Valeur AttributeValeur de l'attribut. CDATAContenu de la section CDATA. CommentContenu du commentaire. DocumentTypeSous-ensemble interne. ProcessingInstructionContenu entier, à l'exclusion de la cible. SignificantWhitespaceEspace blanc entre les balisages dans un modèle de contenu mixte. TextContenu du nœud de texte. WhitespaceEspace blanc entre les balisages. XmlDeclarationContenu de la déclaration. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient le type de CLR du nœud actuel. + Type CLR qui correspond à la valeur typée du nœud.La valeur par défaut est System.String. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang en cours. + Portée xml:lang en cours. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:space en cours. + Une des valeurs de .S'il n'existe pas de portée xml:space, cette propriété prend la valeur par défaut XmlSpace.None. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur indiquant si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur indiquant si la vérification des caractères doit être assurée. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true.RemarqueSi le traite des données de texte, il vérifie toujours que les noms XML et le contenu de texte sont valides, indépendamment du paramètre de propriété.L'attribution à de la valeur false désactive la vérification de caractères pour la recherche de références d'entité de caractère. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si le flux sous-jacent ou doit être fermé à la fermeture du lecteur. + true pour fermer le flux sous-jacent ou à la fermeture du lecteur ; sinon false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité que respecte. + Une des valeurs d'énumération qui spécifie le niveau de conformité appliqué par le lecteur XML.La valeur par défaut est . + + + Obtient ou définit une valeur qui détermine le traitement des DTD. + L'une des valeurs d'énumération qui détermine le traitement des DTD.La valeur par défaut est . + + + Obtient ou définit une valeur indiquant si les commentaires doivent être ignorés. + true pour ignorer les commentaires ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les instructions de traitement doivent être ignorées. + true pour ignorer les instructions de traitement ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les espaces blancs non significatifs doivent être ignorés. + true pour ignorer l'espace blanc ; sinon false.La valeur par défaut est false. + + + Obtient ou définit l'offset du numéro de ligne de l'objet . + Offset de numéro de ligne.La valeur par défaut est 0. + + + Obtient ou définit l'offset de position de ligne de l'objet . + Décalage de position de ligne.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document, qui résultent du développement des entités. + Nombre maximal autorisé de caractères résultant du développement des entités.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document XML.Zéro (0) signifie que la taille du document XML n'est pas limitée.Une valeur non nulle spécifie la taille maximale, en caractères. + Nombre maximal autorisé de caractères dans un document XML.La valeur par défaut est 0. + + + Obtient ou définit servant aux comparaisons de chaînes atomisées. + + qui stocke toutes les chaînes atomisées utilisées par toutes les instances créées à l'aide de cet objet .La valeur par défaut est null.L'instance de créée utilisera un nouveau vide si cette valeur est null. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Spécifie la portée xml:space en cours. + + + La portée xml:space est default. + + + Pas de portée xml:space. + + + La portée xml:space est preserve. + + + Représente un writer qui fournit un moyen rapide, sans mise en cache et en avant de générer des flux de données ou des fichiers contenant des données XML. + + + Initialise une nouvelle instance de la classe . + + + Crée une instance de à l'aide du flux spécifié. + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + The value is null. + + + Crée une instance de à l'aide du flux et de l'objet . + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide de l'objet spécifié. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + The value is null. + + + Crée une instance de à l'aide des objets et spécifiés. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour libérer uniquement les ressources non managées. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, vide le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vide de façon asynchrone le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + Tâche qui représente l'opération Flush asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, retourne le préfixe le plus proche défini dans la portée espace de noms actuelle pour l'URI de l'espace de noms. + Le préfixe correspondant ou null, s'il n'existe aucun URI d'espace de noms correspondant dans la portée actuelle. + URI de l'espace de noms dont vous recherchez le préfixe. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance de writer.Si ce writer n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit tous les attributs trouvés à la position actuelle dans . + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone tous les attributs trouvés à la position actuelle dans le . + Tâche qui représente l'opération WriteAttributes asynchrone. + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le nom local et la valeur spécifiés. + Le nom local de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit un attribut avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'attribut. + URI de l'espace de noms à associer à l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteAttributeString asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format Base64 et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format base64 et écrit le texte résultant. + Tâche qui représente l'opération WriteBase64 asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format BinHex et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format BinHex et écrit le texte résultant. + Tâche qui représente l'opération WriteBinHex asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un bloc <![CDATA[...]]> contenant le texte spécifié. + Texte à placer dans le bloc CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un bloc <![CDATA[…]]> contenant le texte spécifié. + Tâche qui représente l'opération WriteCData asynchrone. + Texte à placer dans le bloc CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, force la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Caractère Unicode pour lequel une entité de caractère doit être générée. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Force de façon asynchrone la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Tâche qui représente l'opération WriteCharEntity asynchrone. + Caractère Unicode pour lequel une entité de caractère doit être générée. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit du texte mémoire tampon par mémoire tampon. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone du texte mémoire tampon par mémoire tampon. + Tâche qui représente l'opération WriteChars asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un commentaire <!--...--> contenant le texte spécifié. + Texte à placer dans le commentaire. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un commentaire <!--...--> contenant le texte spécifié. + Tâche qui représente l'opération WriteComment asynchrone. + Texte à placer dans le commentaire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Tâche qui représente l'opération WriteDocType asynchrone. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit un élément avec la valeur et le nom locaux spécifiés. + Le nom local de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteElementString asynchrone. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme le précédent appel de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone l'appel précédent. + Tâche qui représente l'opération WriteEndAttribute asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme les éléments ou attributs ouverts, et replace le writer à l'état Start. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone les éléments ou attributs ouverts, et replace le writer à l'état Start. + Tâche qui représente l'opération WriteEndDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une référence d'entité comme suit : &name;. + Nom de la référence d'entité. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une référence d'entité comme suit : &name;. + Tâche qui représente l'opération WriteEntityRef asynchrone. + Nom de la référence d'entité. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteFullEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteName asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteNmToken asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, copie tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copie de façon asynchrone tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + Tâche qui représente l'opération WriteNode asynchrone. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une instruction de traitement avec un espace entre le nom et le texte : <?nom texte?>. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une instruction de traitement avec un espace entre le nom et le texte, comme suit : <?nom texte?>. + Tâche qui représente l'opération WriteProcessingInstruction asynchrone. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Nom local à écrire. + URI d'espace de noms de ce nom. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Tâche qui représente l'opération WriteQualifiedName asynchrone. + Nom local à écrire. + URI d'espace de noms de ce nom. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une mémoire tampon de caractères. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une chaîne. + Chaîne contenant le texte à écrire. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit manuellement de façon asynchrone un balisage brut à partir d'une mémoire tampon de caractères. + Tâche qui représente l'opération WriteRaw asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone un balisage brut à partir d'une chaîne. + Tâche qui représente l'opération WriteRaw asynchrone. + Chaîne contenant le texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit le début d'un attribut avec le nom local spécifié. + Le nom local de l'attribut. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit le début d'un attribut avec le nom local et l'URI de l'espace de noms spécifiés. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Tâche qui représente l'opération WriteStartAttribute asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0" et l'attribut autonome. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 ». + Tâche qui représente l'opération WriteStartDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 » et l'attribut autonome. + Tâche qui représente l'opération WriteStartDocument asynchrone. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une balise de début avec le nom local spécifié. + Le nom local de l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée et l'associe à l'espace de noms indiqué. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément.Si cet espace de noms est déjà dans la portée et qu'il possède un préfixe associé, le writer écrit automatiquement ce préfixe également. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée, puis l'associe à l'espace de noms et au préfixe indiqués. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la balise de début indiquée et l'associe à l'espace de noms et au préfixe spécifiés. + Tâche qui représente l'opération WriteStartElement asynchrone. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient l'état du writer. + Une des valeurs de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le texte spécifié. + Texte à écrire. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le texte spécifié. + Tâche qui représente l'opération WriteString asynchrone. + Texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, génère et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Génère de façon asynchrone et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Tâche qui représente l'opération WriteSurrogateCharEntity asynchrone. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit la valeur de l'objet. + Valeur de l'objet à écrire.Remarque   Avec le .NET Framework version 3.5, cette méthode accepte en tant que paramètre. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un nombre à virgule flottante simple précision. + Nombre à virgule flottante simple précision à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'espace blanc spécifié. + Chaîne d'espaces blancs. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'espace blanc spécifié. + Tâche qui représente l'opération WriteWhitespace asynchrone. + Chaîne d'espaces blancs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang actuelle. + Portée xml:lang actuelle. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, obtient représentant la portée xml:spaceactuelle. + Obtient un XmlSpace représentant la portée xml:space actuelle.Valeur Signification NoneValeur par défaut si aucune portée xml:space n'existe.DefaultLa portée actuelle est xml:space="default".PreserveLa portée actuelle est xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur qui indique si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur qui indique si le writer XML doit vérifier que tous les caractères du document sont conformes à la section « 2.2 Characters » de la W3C XML 1.0 Recommendation.. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si doit également fermer le flux sous-jacent ou quand la méthode est appelée. + true pour également fermer le flux sous-jacent ou  ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité de vérification de sortie XML du writer XML. + Une des valeurs d'énumération qui spécifie le niveau de conformité (document, fragment ou détection automatique).La valeur par défaut est . + + + Obtient ou définit le type d'encodage de texte à utiliser. + Encodage de texte à utiliser.La valeur par défaut est Encoding.UTF8. + + + Obtient ou définit une valeur indiquant si les éléments doivent être mis en retrait. + true pour écrire des éléments individuels sur de nouvelles lignes et les mettre en retrait ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit la chaîne de caractères à utiliser au moment de la mise en retrait.Ce paramètre est utilisé quand la propriété a la valeur true. + Chaîne de caractères à utiliser au moment de la mise en retrait.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.Par défaut, il s'agit de deux espaces. + The value assigned to the is null. + + + Obtient ou définit une valeur qui indique si doit supprimer des déclarations d'espace de noms en double pendant l'écriture du contenu XML.Le comportement par défaut consiste pour le writer à générer la sortie de toutes les déclarations d'espace de noms qui sont présentes dans le programme de résolution d'espace de noms du writer. + L'énumération utilisée pour spécifier s'il faut supprimer les déclarations d'espace de noms en double dans le . + + + Obtient ou définit la chaîne de caractères à utiliser pour les sauts de ligne. + Chaîne de caractères à utiliser pour les sauts de ligne.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.La valeur par défaut est \r\n (retour chariot, nouvelle ligne). + The value assigned to the is null. + + + Obtient ou définit une valeur indiquant s'il convient de normaliser des sauts de ligne dans la sortie. + Une des valeurs de .La valeur par défaut est . + + + Obtient ou définit une valeur indiquant s'il convient d'écrire des attributs sur une nouvelle ligne. + true pour écrire des attributs sur des lignes ; sinon, false.La valeur par défaut est false.RemarqueCe paramètre n'a aucun effet si la propriété a la valeur false.Quand a la valeur true, chaque attribut est ajouté avec une nouvelle ligne et un niveau supplémentaire de mise en retrait. + + + Obtient ou définit une valeur indiquant si une déclaration XML doit être omise. + true pour omettre la déclaration XML ; sinon, false.La valeur par défaut est false, une déclaration XML est écrite. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Obtient ou définit une valeur qui indique si ajoutera des indicateurs de fermeture à tous les indicateurs d'éléments non fermés quand la méthode est appelée. + true si toutes les balises d'élément non fermées seront fermées ; sinon, false.La valeur par défaut est true. + + + Représentation en mémoire d'un schéma XML, comme spécifié dans les spécifications XML Schema Part 1: Structures et XML Schema Part 2: Datatypes du World Wide Web Consortium (W3C). + + + Indique si les attributs ou les éléments doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Aucune forme d'élément et d'attribut n'est spécifiée dans le schéma. + + + Les éléments et les attributs doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Les éléments et les attributs ne doivent pas obligatoirement être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Offre une mise en forme personnalisée pour la sérialisation et la désérialisation XML. + + + Cette méthode est réservée et ne doit pas être utilisée.Lorsque vous implémentez l'interface IXmlSerializable, vous devez retourner la valeur null (Nothing dans Visual Basic) à partir cette méthode et, si la spécification d'un schéma personnalisé est requise, appliquez à la place à la classe. + + qui décrit la représentation XML de l'objet qui est généré par la méthode et utilisé par la méthode . + + + Génère un objet à partir de sa représentation XML. + + source à partir de laquelle l'objet est désérialisé. + + + Convertit un objet en sa représentation XML. + + flux dans lequel l'objet est sérialisé. + + + Dans le cadre d'une application à un type, stocke le nom d'une méthode statique du type qui retourne un schéma XML et un (ou pour les types anonymes) qui contrôle la sérialisation du type. + + + Initialise une nouvelle instance de la classe , en acceptant le nom de la méthode statique qui fournit le schéma XML du type. + Nom de la méthode statique qui doit être implémentée. + + + Obtient ou définit une valeur qui détermine si la classe cible est un caractère générique, ou que le schéma pour la classe contient uniquement un élément xs:any. + true si la classe est un caractère générique ou si le schéma contient uniquement l'élément xs:any ; sinon, false. + + + Obtient le nom de la méthode statique qui fournit le schéma XML du type et le nom de son type de données de schéma XML. + Nom de la méthode qui est appelée par l'infrastructure XML pour retourner un schéma XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/it/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/it/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..0b7c9a4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/it/System.Xml.ReaderWriter.xml @@ -0,0 +1,2611 @@ + + + + System.Xml.ReaderWriter + + + + Specifica il livello di controllo dell'input o dell'output eseguito dagli oggetti e . + + + L'oggetto o rileva automaticamente se il controllo deve essere eseguito a livello di documento o di frammento e procede nel modo appropriato.Se viene eseguito il wrapping di un altro oggetto o , l'oggetto esterno non esegue altri controlli di conformità.Il controllo di conformità viene eseguito fino al livello dell'oggetto sottostante.Per informazioni su come viene determinato il livello di conformità, vedere le proprietà e . + + + I dati XML sono conformi alle regole per un documento XML 1.0 ben formato, in base alla definizione di W3C. + + + I dati XML sono un frammento XML ben formato, in base alla definizione di W3C. + + + Specifica le opzioni per l'elaborazione dei DTD.L'enumerazione viene utilizzata dalla classe . + + + Fa in modo che venga ignorato l'elemento DOCTYPE.L'operazione di elaborazione dei DTD non ha luogo. + + + Specifica che quando viene rilevato un DTD, viene generato un oggetto con un messaggio indicante che i DTD non sono consentiti.Questo è il comportamento predefinito. + + + Fornisce un'interfaccia che consente ad una classe di restituire informazioni sulla riga e sulla posizione. + + + Ottiene un valore che indica se la classe può restituire informazioni sulla riga. + true se è possibile specificare la e ; in caso contrario false. + + + Ottiene il numero corrente di riga. + Numero della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Ottiene la posizione corrente di riga. + Posizione della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Fornisce l'accesso in sola lettura a un set di mapping di prefissi e spazi dei nomi. + + + Ottiene una raccolta di mapping definiti di prefissi-spazi dei nomi attualmente inclusi nell'ambito. + + contenente tutti gli spazi dei nomi attualmente inclusi nell'ambito. + Valore di che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene l'URI dello spazio dei nomi mappato al prefisso specificato. + L'URI dello spazio dei nomi mappato al prefisso; null se il prefisso non è mappato all'URI dello spazio dei nomi. + Prefisso del quale si desidera individuare l'URI dello spazio dei nomi. + + + Ottiene il prefisso mappato all'URI dello spazio dei nomi specificato. + Il prefisso mappato all'URI dello spazio dei nomi; null se l'URI dello spazio dei nomi non è mappato al prefisso. + URI dello spazio dei nomi di cui si desidera individuare il prefisso. + + + Specifica se rimuovere le dichiarazioni di spazio dei nomi duplicate nell'oggetto . + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate non verranno rimosse. + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate verranno rimosse.Affinché lo spazio dei nomi duplicato venga rimosso, il prefisso e lo spazio dei nomi devono corrispondere. + + + Implementa una classe a thread singolo. + + + Inizializza una nuova istanza della classe NameTable. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente la stringa da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere della stringa. + Numero di caratteri nella stringa. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable. + Stringa da aggiungere. + + è null. + + + Ottiene la stringa suddivisa in elementi di base che contiene gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da trovare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Ottiene la stringa suddivisa in elementi di base con il valore specificato. + Oggetto della stringa suddivisa in elementi di base o null se la stringa non è stata ancora suddivisa. + Nome da trovare. + + è null. + + + Specifica in che modo gestire le interruzioni di riga. + + + I caratteri della nuova riga diventano entità.Questa impostazione mantiene tutti i caratteri quando l'output viene letto da una classe di normalizzazione. + + + I caratteri della nuova riga restano invariati.L'output è uguale all'input. + + + I caratteri della nuova riga vengono sostituiti in modo che corrispondano al carattere specificato nella proprietà . + + + Specifica lo stato del lettore. + + + È stato chiamato il metodo . + + + È stata raggiunta correttamente la fine del file. + + + Si è verificato un errore che non consente di continuare l'operazione di lettura. + + + Il metodo Read non è stato chiamato. + + + È stato chiamato il metodo Read.È possibile chiamare altri metodi sul lettore. + + + Specifica lo stato della classe . + + + Indica che viene scritto il valore di un attributo. + + + Indica che il metodo è già stato chiamato. + + + Indica che viene scritto il contenuto dell'elemento. + + + Indica che viene scritto il tag di inizio di un elemento. + + + È stata generata un'eccezione che ha lasciato la classe in uno stato non valido.È possibile chiamare il metodo per porre in stato .Qualsiasi altra chiamata al metodo ha come conseguenza un'eccezione . + + + Indica che viene scritto il prologo. + + + Indica che un metodo Write non è ancora stato chiamato. + + + Codifica e decodifica i nomi XML e fornisce metodi per la conversione tra tipi Common Language Runtime e tipi XSD (XML Schema Definition Language).Quando si convertono i tipi di dati, i valori restituiti sono indipendenti dalle impostazioni locali. + + + Decodifica un nome.Questo metodo produce effetti opposti rispetto ai metodi e . + Nome decodificato. + Nome da trasformare. + + + Converte il nome in un nome XML locale valido. + Nome codificato. + Nome da codificare. + + + Converte il nome in un nome XML valido. + Restituisce il nome con gli eventuali caratteri non validi sostituiti da una stringa di escape. + Nome da convertire. + + + Verifica che il nome sia valido secondo le specifiche XML. + Nome codificato. + Nome da codificare. + + + Converte l'oggetto in un oggetto equivalente. + Valore Boolean, ossia true o false. + Stringa da convertire. + + is null. + + does not represent a Boolean value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Byte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Oggetto Char che rappresenta il carattere singolo. + Stringa contenente un singolo carattere da convertire. + The value of the parameter is null. + The parameter contains more than one character. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica se la data deve essere convertita nell'ora locale o mantenuta nel formato UTC (Coordinated Universal Time), se si tratta di una data UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire.Nota   La stringa deve essere conforme a un sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Formato da cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di questo formato. + + is null. + + or is an empty string or is not in the specified format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Matrice di formati dalla quale è possibile convertire .Ogni formato in può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di uno di questi formati. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Decimal della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Double della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Guid della stringa. + Stringa da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente SByte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Single della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte in un oggetto . + Rappresentazione di stringa del valore Boolean, ossia "true" o "false". + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Byte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Char. + Valore da convertire. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica la modalità di gestione del valore . + The value is not valid. + The or value is null. + + + Converte l'oggetto fornito in un oggetto . + Rappresentazione dell'oggetto specificato. + Elemento da convertire. + + + Converte l'oggetto fornito in un oggetto nel formato specificato. + Rappresentazione nel formato specificato dell'oggetto fornito. + Elemento da convertire. + Formato in cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte in un oggetto . + Rappresentazione di stringa di Decimal. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Double. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Guid. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int64. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di SByte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Single. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di TimeSpan. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt64. + Valore da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente TimeSpan della stringa. + Stringa da convertire.Il formato della stringa deve essere conforme alla raccomandazione W3C XML Schema Part 2: Datatypes per la durata. + + is not in correct format to represent a TimeSpan value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifica che il nome sia valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C. + Nome, se è un nome XML valido. + Nome da verificare. + + is not a valid XML name. + + is null or String.Empty. + + + Verifica che il nome sia un NCName valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C.Un NCName è un nome che non può contenere i due punti (:). + Nome, se è un nome NCName valido. + Nome da verificare. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifica che la stringa sia un tipo NMTOKEN valido in base alla raccomandazione W3C XML Schema Part2: Datatypes. + Token del nome, se è un NMTOKEN valido. + Stringa da verificare. + The string is not a valid name token. + + is null. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di tipo stringa sono caratteri dell'ID pubblico validi. + Restituisce la stringa passata se tutti i caratteri nell'argomento sono caratteri dell'ID pubblico validi. + + che contiene l'ID da convalidare. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi. + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi; in caso contrario null. + + da verificare. + + + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + + che contiene i caratteri da verificare. + + + Specifica in che modo deve essere considerato il valore dell'ora nelle conversioni tra una stringa e . + + + Viene considerato come ora locale.Se l'oggetto rappresenta un'ora UTC (Coordinated Universal Time), viene convertito nell'ora locale. + + + Durante la conversione devono essere mantenute le informazioni sul fuso orario. + + + Viene considerato come ora locale se viene convertito in una stringa. + + + Viene considerato come UTC.Se l'oggetto rappresenta un'ora locale, viene convertito in un valore UTC. + + + Restituisce informazioni dettagliate sull'ultima eccezione. + + + Inizializza una nuova istanza della classe XmlException. + + + Consente l'inizializzazione di una nuova istanza della classe XmlException con un messaggio di errore specificato. + Descrizione dell'errore. + + + Inizializza una nuova istanza della classe XmlException. + Descrizione della condizione di errore. + + che ha generato l'eccezione XmlException, se presente.Il valore può essere null. + + + Inizializza una nuova istanza della classe XmlException con l'eccezione interna, il numero di riga, la posizione nella riga e il messaggio specificati. + Descrizione dell'errore. + Eccezione causa dell'eccezione corrente.Il valore può essere null. + Numero di riga che indica dove si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene il numero di riga che indica dove si è verificato l'errore. + Numero di riga che indica dove si è verificato l'errore. + + + Ottiene la posizione di riga in cui si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene un messaggio in cui viene descritta l'eccezione corrente. + Messaggio di errore nel quale viene indicato il motivo dell’eccezione + + + Risolve, aggiunge e rimuove spazi dei nomi in una raccolta e ne consente la gestione dell'ambito. + + + Inizializza una nuova istanza della classe con l'oggetto specificato. + Oggetto da usare. + null is passed to the constructor + + + Aggiunge alla raccolta lo spazio dei nomi specificato. + Prefisso da associare allo spazio dei nomi aggiunto.Usare String.Empty per aggiungere uno spazio dei nomi predefinito.NotaSe si usa l'oggetto per risolvere gli spazi dei nomi in un'espressione XML Path Language (XPath), è necessario specificare un prefisso.Se in un'espressione XPath non è incluso un prefisso, si presuppone che l'URI (Uniform Resource Identifier) dello spazio dei nomi sia lo spazio dei nomi vuoto.Per altre informazioni sulle espressioni XPath e su , fare riferimento ai metodi e . + Spazio dei nomi da aggiungere. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ottiene l'URI dello spazio dei nomi per lo spazio dei nomi predefinito. + Restituisce l'URI dello spazio dei nomi per lo spazio dei nomi predefinito o String.Empty se non è presente uno spazio dei nomi predefinito. + + + Restituisce un enumeratore usato per scorrere gli spazi dei nomi nell'oggetto . + Oggetto contenente i prefissi archiviati da . + + + Ottiene una raccolta di nomi di spazi dei nomi con chiave in base al prefisso, che può essere usata per enumerare gli spazi dei nomi attualmente nell'ambito. + Raccolta delle coppie di spazio dei nomi e prefisso attualmente nell'ambito. + Valore di enumerazione che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene un valore che indica se il prefisso fornito dispone di uno spazio dei nomi definito per l'ambito inserito attualmente. + true se è presente uno spazio dei nomi definito; in caso contrario, false. + Prefisso dello spazio dei nomi da trovare. + + + Ottiene l'URI dello spazio dei nomi per il prefisso specificato. + Restituisce l'URI dello spazio dei nomi per o null se non è disponibile uno spazio dei nomi mappato.La stringa restituita è atomizzata.Per altre informazioni sulle stringhe atomizzate, vedere la classe . + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per trovare la corrispondenza con lo spazio dei nomi predefinito, passare String.Empty. + + + Trova il prefisso dichiarato per l'URI dello spazio dei nomi specificato. + Prefisso corrispondente.Se non è presente un prefisso mappato, il metodo restituisce String.Empty. Se viene specificato un valore Null, viene restituito null. + Spazio dei nomi da risolvere per il prefisso. + + + Ottiene l'oggetto associato a questo oggetto. + Oggetto usato da questo oggetto. + + + Estrae un ambito dello spazio dei nomi dallo stack. + true se sono rimasti ambiti dello spazio dei nomi nello stack; false se non sono più disponibili spazi dei nomi da prelevare. + + + Inserisce un ambito dello spazio dei nomi nello stack. + + + Rimuove lo spazio dei nomi specificato per il prefisso specificato. + Prefisso per lo spazio dei nomi + Spazio dei nomi da rimuovere per il prefisso specificato.Lo spazio dei nomi rimosso deriva dall'ambito dello spazio dei nomi corrente.Gli spazi dei nomi non compresi nell'ambito corrente vengono ignorati. + The value of or is null. + + + Definisce l'ambito dello spazio dei nomi. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente,compreso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente, escluso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti localmente nel nodo corrente. + + + Tabella degli oggetti stringa suddivisi in elementi di base. + + + Inizializza una nuova istanza della classe . + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente.Se la lunghezza equivale a zero, verrà restituito String.Empty. + Matrice di caratteri contenente il nome da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente. + Nome da aggiungere. + + è null. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da cercare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente lo stesso valore della stringa specificata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa. + Nome da cercare. + + è null. + + + Specifica il tipo di nodo. + + + Attributo (ad esempio, id='123' ). + + + Sezione CDATA (ad esempio, <![CDATA[my escaped text]]>). + + + Commento (ad esempio, <!-- my comment -->). + + + Oggetto documento che, come radice della struttura ad albero del documento, fornisce accesso all'intero documento XML. + + + Frammento di documento. + + + Dichiarazione del tipo di documento, indicata dal tag seguente (ad esempio, <!DOCTYPE...>). + + + Elemento (ad esempio, <item>). + + + Tag di fine dell'elemento (ad esempio, </item>). + + + Viene restituito quando XmlReader completa l'analisi del testo sostitutivo dell'entità in seguito a una chiamata al metodo . + + + Dichiarazione di entità (ad esempio, <!ENTITY...>). + + + Riferimento a un'entità (ad esempio, &num;). + + + Viene restituito dall'oggetto se non è stato chiamato un metodo Read. + + + Notazione nella dichiarazione del tipo del documento (ad esempio <!NOTATION...>). + + + Istruzione di elaborazione (ad esempio, <?pi test?>). + + + Spazio vuoto all'interno di markup in un modello a contenuto misto oppure spazio vuoto all'interno dell'ambito xml:space="preserve". + + + Contenuto di un nodo. + + + Spazio vuoto all'interno di markup. + + + Dichiarazione XML (ad esempio, <?xml version='1.0'?>). + + + Fornisce tutte le informazioni sul contesto richieste dalla classe per analizzare un frammento XML. + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.Il sottoinsieme DTD viene utilizzato per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.La definizione DTD viene utilizzata per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con i valori di , , xml:lang e xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con la codifica, l'oggetto , l'oggetto , l'xml:lang e l'xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Ottiene o imposta l'URI di base. + URI di base da utilizzare per risolvere il file DTD. + + + Ottiene o imposta il nome della dichiarazione del tipo di documento. + Nome della dichiarazione del tipo di documento. + + + Ottiene o imposta il tipo di codifica. + Oggetto che indica il tipo di codifica. + + + Ottiene o imposta il sottoinsieme DTD interno. + Sottoinsieme DTD interno.Questa proprietà restituisce ad esempio tutte le informazioni racchiuse tra parentesi quadre <!DOCTYPE doc [...]>. + + + Ottiene o imposta . + Campo XmlNamespaceManager. + + + Ottiene l' utilizzata per suddividere le stringhe in elementi di base.Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Campo XmlNameTable. + + + Ottiene o imposta l'identificatore pubblico. + Identificatore pubblico. + + + Ottiene o imposta l'identificatore di sistema. + Identificatore di sistema. + + + Ottiene o imposta l'ambito xml:lang corrente. + Ambito xml:lang corrente.Se nell'ambito non è disponibile alcun valore xml:lang, viene restituito String.Empty. + + + Ottiene o imposta l'ambito xml:space corrente. + Valore di che indica l'ambito xml:space. + + + Rappresenta un nome XML completo. + + + Inizializza una nuova istanza della classe . + + + Consente l'inizializzazione di una nuova istanza della classe con il nome specificato. + Nome locale da utilizzare come nome dell'oggetto . + + + Inizializza una nuova istanza della classe con il nome e lo spazio dei nomi specificati. + Nome locale da utilizzare come nome dell'oggetto . + Spazio dei nomi per l'oggetto . + + + Fornisce un oggetto vuoto. + + + Determina se l'oggetto specificato equivale all'oggetto corrente. + true se i due oggetti rappresentano lo stesso oggetto di istanza; in caso contrario, false. + Oggetto da confrontare. + + + Restituisce il codice hash per l'oggetto . + Codice hash per l'oggetto. + + + Ottiene un valore che indica se l'oggetto è vuoto. + true se il nome e lo spazio dei nomi sono stringhe vuote; in caso contrario, false. + + + Ottiene una rappresentazione in forma di stringa del nome completo dell'oggetto . + Rappresentazione in forma di stringa del nome completo, oppure String.Empty se un nome non è definito per l'oggetto. + + + Ottiene una rappresentazione in forma di stringa dello spazio dei nomi dell'oggetto . + Rappresentazione in forma di stringa dello spazio dei nomi, oppure String.Empty se uno spazio dei nomi non è definito per l'oggetto. + + + Confronta due oggetti . + true se i due oggetti hanno lo stesso nome e gli stessi valori di spazio dei nomi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Confronta due oggetti . + true se il nome e i valori di spazio dei nomi dei due oggetti sono diversi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + Nome dell'oggetto. + Spazio dei nomi dell'oggetto. + + + Rappresenta un lettore che fornisce accesso veloce, non in cache e di tipo forward-only ai dati XML.Per esaminare il codice sorgente .NET Framework per questo tipo, vedere Origine riferimento. + + + Inizializza una nuova istanza della classe XmlReader. + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il numero di attributi sul nodo corrente. + Numero di attributi sul nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI di base del nodo corrente. + URI di base del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa metodi di lettura del contenuto binario. + true se i metodi di lettura del contenuto binario vengono implementati; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa il metodo . + true se implementa il metodo ; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se il lettore può analizzare e risolvere le entità. + true se il lettore può analizzare e risolvere le entità; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Crea una nuova istanza di con il flusso specificato e le impostazioni predefinite. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + + + Crea una nuova istanza di con il flusso e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il flusso, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML. L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo specificato. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni del nuovo oggetto .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + Le proprietà e contengono entrambe valori.È possibile impostare e utilizzare una sola delle proprietà NameTable. + + + Crea una nuova istanza di con l'URI specificato. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.La classe viene usata per convertire il percorso in una rappresentazione canonica dei dati. + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + Il file identificato dall'URI non esiste. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con l'URI e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.L'oggetto nell'oggetto viene usato per eseguire la conversione del percorso a una rappresentazione canonica dei dati.Se è null, viene usato un nuovo oggetto . + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + Il file specificato dall'URI non è stato trovato. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con il lettore XML e le impostazioni specificate. + Oggetto di cui è stato eseguito il wrapping intorno all'oggetto specificato. + Oggetto da usare come lettore XML sottostante. + Impostazioni per la nuova istanza di .Il livello di conformità dell'oggetto deve corrispondere a quello del lettore sottostante o deve essere impostato su . + Il valore è null. + Se l'oggetto specifica un livello di conformità che non corrisponde al livello di conformità del lettore sottostante.-oppure-Lo stato dell'oggetto sottostante è o . + + + Quando ne viene eseguito l'override in una classe derivata, ottiene la profondità del nodo corrente nel documento XML. + Profondità del nodo corrente nel documento XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il lettore è posizionato alla fine del flusso. + true se il lettore è posizionato alla fine del flusso; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato.Questo metodo non determina lo spostamento del lettore. + Indice dell'attributo.L'indice è in base zero.Il primo attributo ha indice 0. + + non è compreso nell'intervallo.Richiesto valore non negativo e minore della dimensione dell'insieme di attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null. + Nome completo dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null.Questo metodo non determina lo spostamento del lettore. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene in modo asincrono il valore del nodo corrente. + Valore del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Ottiene un valore che indica se il nodo corrente dispone di attributi. + true se il nodo corrente contiene attributi; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente può avere . + true se il nodo sul quale il lettore è attualmente posizionato può contenere Value; in caso contrario, false.Se false, il valore del nodo è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un attributo generato dal valore predefinito configurato nella definizione DTD o nello schema. + true se il nodo corrente è un attributo il cui valore è stato generato in base al valore predefinito configurato nella definizione DTD o nello schema; false se il valore dell'attributo è stato impostato in modo esplicito. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un elemento vuoto, ad esempio <MyElement/>. + true se il nodo corrente rappresenta un elemento ( uguale a XmlNodeType.Element) che termina con />; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce un valore che indica se l'argomento della stringa è un nome XML valido. + true se il nome è valido; in caso contrario, false. + Nome da convalidare. + Il valore è null. + + + Restituisce un valore che indica se l'argomento della stringa è un token di un nome XML valido o meno. + true se è un token del nome valido; in caso contrario, false. + Token del nome da convalidare. + Il valore è null. + + + Chiama e verifica se il nodo di contenuto corrente è un tag di inizio o un tag di elemento vuoto. + true se trova un tag di inizio o un tag di elemento vuoto; false se viene trovato un tipo di nodo diverso da XmlNodeType.Element. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo corrente è un tag di inizio o un tag di elemento vuoto e se la proprietà dell'elemento trovato corrisponde all'argomento specificato. + true se il nodo risultante è un elemento e la proprietà Name corrisponde alla stringa specificata.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se la proprietà Name dell'elemento non corrisponde alla stringa specificata. + Stringa confrontata con la proprietà Name dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo di contenuto è un tag di inizio o un tag di elemento vuoto e se le proprietà e dell'elemento trovato corrispondono alle stringhe specificate. + true, se il nodo risultante è un elemento.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se le proprietà LocalName e NamespaceURI dell'elemento non corrispondono alle stringhe specificate. + Stringa da confrontare con la proprietà LocalName dell'elemento trovato. + Stringa da confrontare con la proprietà NamespaceURI dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome locale del nodo corrente. + Nome del nodo corrente senza il prefisso.Ad esempio, LocalName è book per l'elemento <bk:book>.Per i tipi di nodo privi di nome, quali Text, Comment e così via, questa proprietà restituisce String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, risolve il prefisso di uno spazio dei nomi nell'ambito dell'elemento corrente. + URI dello spazio dei nomi a cui viene mappato il prefisso oppure null se non viene trovato alcun prefisso corrispondente. + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per ottenere lo spazio dei nomi predefinito corrispondente, passare una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con l'indice specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro ha un valore negativo. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con la proprietà specificata. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con le proprietà e specificate. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Controlla se il nodo corrente è un nodo di contenuto (testo diverso da spazi vuoti, CDATA, Element, EndElement, EntityReference o EndEntity).Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file.Ignora i nodi del tipo seguente: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica in modo asincrono se il nodo corrente è un nodo di contenuto.Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, passa all'elemento che contiene il nodo attributo corrente. + true se il lettore è posizionato in corrispondenza di un attributo, ovvero il lettore si sposta in corrispondenza dell'elemento che possiede l'attributo; false se il lettore non è posizionato in corrispondenza di un attributo, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa al primo attributo. + true se esiste un attributo, ovvero il lettore si sposta in corrispondenza del primo attributo; in caso contrario, false, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo successivo. + true se esiste un attributo successivo; false se non esistono altri attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome completo del nodo corrente. + Nome completo del nodo corrente.Ad esempio, Name è bk:book per l'elemento <bk:book>.Il nome restituito dipende dalla proprietà del nodo.I seguenti tipi di nodo restituiscono i valori inclusi nell'elenco.Tutti gli altri tipi di nodo restituiscono una stringa vuota.Tipo di nodo Nome AttributeNome dell'attributo. DocumentTypeNome del tipo di documento. ElementNome del tag. EntityReferenceNome dell'entità a cui si fa riferimento. ProcessingInstructionDestinazione dell'istruzione di elaborazione. XmlDeclarationStringa letterale xml. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI dello spazio dei nomi, definito nella specifica W3C Namespace, del nodo su cui è posizionato il lettore. + URI dello spazio dei nomi del nodo corrente; in caso contrario, una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'oggetto associato a questa implementazione. + Oggetto XmlNameTable che consente di ottenere la versione atomizzata di una stringa all'interno del nodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il tipo del nodo corrente. + Uno dei valori di enumerazione che specifica il tipo del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il prefisso dello spazio dei nomi associato al nodo corrente. + Prefisso dello spazio dei nomi associato al nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, visualizza il nodo successivo nel flusso. + true se il nodo successivo è stato letto correttamente; in caso contrario, false. + Si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il nodo successivo del flusso. + true se è stata completata la lettura del nodo successivo; false se non esistono altri nodi da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, analizza il valore dell'attributo incluso in uno o più nodi Text, EntityReference o EndEntity. + true se sono presenti nodi da restituire.false se il lettore non è posizionato in corrispondenza del nodo attributo quando viene effettuata la chiamata iniziale oppure se è stato letto il valore di tutti gli attributi.Un attributo vuoto, quale misc="", restituisce true con un singolo nodo il cui valore è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione.Può essere usato ad esempio per la conversione di un oggetto in xs:string.Il valore può essere null. + Il contenuto non presenta il formato corretto per il tipo di destinazione. + Il tentativo di cast non è valido. + Il valore è null. + Il nodo corrente non è un tipo di nodo supportato.Per ulteriori informazioni vedere la tabella riportata di seguito. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce byte binari decodificati Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce byte binari con decodifica Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce i byte binari decodificati BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce dati binari con decodifica BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come Boolean. + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo nella posizione corrente come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione doppia. + Contenuto di testo come numero a virgola mobile a precisione doppia. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 32 bit. + Contenuto di testo come valore intero con segno a 32 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 64 bit. + Contenuto di testo come valore intero con segno a 64 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione doppia. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi corrispondano a quelli dell'elemento corrente, quindi legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica che il nodo di contenuto corrente sia un tag di fine e sposta il lettore al nodo successivo. + Il nodo corrente non è un tag di fine oppure è stata rilevata una stringa di codice XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, legge tutto il contenuto come stringa, incluso il markup. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota.Se il nodo corrente non è né un elemento né un attributo, verrà restituita una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono tutto il contenuto, incluso il markup, come stringa. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, legge il contenuto, incluso il markup, che rappresenta questo nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto, incluso il markup, che rappresenta il nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica se il nodo corrente è un elemento e sposta il lettore al nodo successivo. + È stata rilevata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con la proprietà specificata e passa il lettore al nodo successivo. + Nome completo dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input. -oppure- Il dell'elemento non corrisponde al specificato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con le proprietà e specificate e passa il lettore al nodo successivo. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input.-oppure-Le proprietà e dell'elemento trovato non corrispondono agli argomenti specificati. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del lettore. + Uno dei valori di enumerazione che specifica lo stato del lettore. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce una nuova istanza di XmlReader che può essere usata per leggere il nodo corrente e tutti i relativi discendenti. + Nuova istanza del lettore XML impostata su .La chiamata al metodo posiziona il nuovo lettore sul nodo che era il nodo corrente prima della chiamata al metodo . + Il lettore XML non è posizionato su un elemento quando viene chiamato questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Sposta l'oggetto al successivo elemento discendente con il nome completo specificato. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome completo dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto al successivo elemento discendente con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome locale dell'elemento a cui spostarsi. + URI dello spazio dei nomi dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge fino a trovare un elemento con il nome completo specificato. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome completo dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Legge fino a trovare un elemento con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome completo specificato. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome completo dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome locale dell'elemento di pari livello a cui spostarsi. + URI dello spazio dei nomi dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Il nodo corrente non ha un valore ( è false). + Il valore è null. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Il formato dei dati XML non è corretto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, risolve il riferimento a entità per i nodi EntityReference. + Il lettore non è posizionato in corrispondenza di un nodo EntityReference; questa implementazione del lettore non consente di risolvere le entità, ovvero la proprietà restituisce il valore false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del lettore.Se il lettore non è stato creato con il metodo , la proprietà restituisce null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora gli elementi figlio del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora in modo asincrono gli elementi figlio del nodo corrente. + Nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore del testo del nodo corrente. + Il valore restituito dipende dalla proprietà del nodo.La tabella seguente elenca i tipi di nodo che hanno un valore da restituire.Tutti gli altri tipi di nodo restituiscono String.Empty.Tipo di nodo Valore AttributeValore dell'attributo. CDATAContenuto della sezione CDATA. CommentContenuto del commento. DocumentTypeSottoinsieme interno. ProcessingInstructionIntero contenuto, esclusa la destinazione. SignificantWhitespaceSpazio vuoto tra markup in un modello con contenuto misto. TextContenuto del nodo di testo. WhitespaceSpazio vuoto tra markup. XmlDeclarationContenuto della dichiarazione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene il tipo CLR (Common Language Runtime) per il nodo corrente. + Tipo CLR che corrisponde al valore tipizzato del nodo.Il valore predefinito è System.String. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:space corrente. + Uno dei valori di .Se non esiste alcun ambito xml:space, alla proprietà viene applicata l'impostazione predefinita XmlSpace.None. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare metodi asincroni in una determinata istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se eseguire il controllo dei caratteri. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true.NotaSe l'oggetto elabora dati di testo, controlla sempre che i nomi XML e il contenuto del testo siano validi, indipendentemente dall'impostazione della proprietà.Se si imposta la proprietà su false, il controllo dei caratteri per i riferimenti a entità carattere viene disattivato. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se il flusso o la classe sottostante devono essere chiusi alla chiusura del lettore. + true per chiudere il flusso o l'oggetto sottostante alla chiusura del lettore; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità dell'oggetto . + Uno dei valori di enumerazione che specifica il livello di conformità che verrà applicato dal lettore XML.Il valore predefinito è . + + + Ottiene o imposta un valore che determina l'elaborazione di DTD. + Uno dei valori di enumerazione che determina l'elaborazione di DTD.Il valore predefinito è . + + + Ottiene o imposta un valore che indica se ignorare i commenti. + true per ignorare i commenti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare le istruzioni di elaborazione. + true per ignorare le istruzioni di elaborazione; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare gli spazi vuoti non significativi. + true per ignorare gli spazi vuoti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta l'offset del numero di riga dell'oggetto . + Offset del numero di riga.Il valore predefinito è 0. + + + Ottiene o imposta l'offset della posizione della riga dell'oggetto . + Offset della posizione della riga.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento generato dall'espansione delle entità. + Numero massimo consentito per i caratteri generati dalle entità espanse.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento XML.Un valore zero (0) indica che non è previsto alcun limite alla dimensione del documento XML.Un valore diverso da zero specifica la dimensione massima in caratteri. + Numero massimo di caratteri consentito in un documento XML.Il valore predefinito è 0. + + + Ottiene o imposta l'oggetto usato per il confronto delle stringhe atomizzate. + Classe che archivia tutte le stringhe atomizzate usate da tutte le istanze di create tramite l'oggetto .Il valore predefinito è null.Se questo valore è null, l'istanza di creata userà una nuova classe vuota. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Specifica l'ambito xml:space corrente. + + + L'ambito xml:space è uguale a default. + + + Nessun ambito xml:space. + + + L'ambito xml:space è uguale a preserve. + + + Rappresenta un writer che fornisce un modo veloce, non in cache e di tipo forward-only per generare flussi o i file contenenti dati XML. + + + Inizializza una nuova istanza della classe . + + + Crea una nuova istanza di con il flusso specificato. + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + The value is null. + + + Crea una nuova istanza di con i flusso e l'oggetto . + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di con l'oggetto specificato. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + The value is null. + + + Crea una nuova istanza di con gli oggetti e specificati. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scarica il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scarica in modo asincrono il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + Attività che rappresenta l'operazione asincrona Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, restituisce il prefisso più vicino definito nell'ambito dello spazio dei nomi corrente per l'URI dello spazio dei nomi. + Prefisso corrispondente o null se nell'ambito corrente non viene trovato nessun URI dello spazio dei nomi corrispondente. + URI dello spazio dei nomi di cui trovare il prefisso. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del writer.Se il writer non è stato creato usando il metodo , questa proprietà restituisce null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive tutti gli attributi che si trovano nella posizione corrente in . + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono tutti gli attributi che si trovano nella posizione corrente in . + Attività che rappresenta l'operazione asincrona WriteAttributes. + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il nome locale e il valore specificati. + Nome locale dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un attributo con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi da associare all'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteAttributeString. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, codifica i byte binari specificati come valori Base64 e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come valori Base64 e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBase64. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata,codifica i byte binari specificati come BinHex e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come BinHex e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBinHex. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un blocco <![CDATA[...]]> che contiene il testo specificato. + Testo da inserire all'interno del blocco CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un blocco <![CDATA[...]]> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteCData. + Testo da inserire all'interno del blocco CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, forza la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Carattere Unicode per cui generare l'entità carattere. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Forza in modo asincrono la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Attività che rappresenta l'operazione asincrona WriteCharEntity. + Carattere Unicode per cui generare l'entità carattere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il testo in un buffer alla volta. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il testo in un buffer alla volta. + Attività che rappresenta l'operazione asincrona WriteChars. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un commento <!--...--> che contiene il testo specificato. + Testo da inserire nel commento. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un commento <!--...--> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteComment. + Testo da inserire nel commento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Attività che rappresenta l'operazione asincrona WriteDocType. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un elemento con il nome locale e il valore specificati. + Nome locale dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteElementString. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude la chiamata a precedente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono la chiamata a precedente. + Attività che rappresenta l'operazione asincrona WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando se ne esegue l'override in una classe derivata, chiude qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + Attività che rappresenta l'operazione asincrona WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un riferimento a entità come &name;. + Nome del riferimento a entità. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un riferimento a entità come &name;. + Attività che rappresenta l'operazione asincrona WriteEntityRef. + Nome del riferimento a entità. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteName. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un oggetto NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteNmToken. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, copia tutto il contenuto del lettore nel writer e sposta il lettore all'inizio del successivo elemento di pari livello. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia in modo asincrono tutto il contenuto del lettore nel writer e sposta il lettore sul successivo elemento di pari livello. + Attività che rappresenta l'operazione asincrona WriteNode. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Attività che rappresenta l'operazione asincrona WriteProcessingInstruction. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Attività che rappresenta l'operazione asincrona WriteQualifiedName. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a un buffer di caratteri. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a una stringa. + Stringa contenente il testo da scrivere. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a un buffer di caratteri. + Attività che rappresenta l'operazione asincrona WriteRaw. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a una stringa. + Attività che rappresenta l'operazione asincrona WriteRaw. + Stringa contenente il testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive l'inizio di un attributo con il nome locale specificato. + Nome locale dell'attributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive l'inizio di un attributo con il nome locale e l'URI dello spazio dei nomi specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Attività che rappresenta l'operazione asincrona WriteStartAttribute. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0" e all'attributo standalone. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0". + Attività che rappresenta l'operazione asincrona WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0" e l'attributo standalone. + Attività che rappresenta l'operazione asincrona WriteStartDocument. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un tag di inizio con il nome locale specificato. + Nome locale dell'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi indicato. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento.Se questo spazio dei nomi si trova già all'interno dell'ambito ed è associato a un prefisso, il writer scriverà automaticamente anche tale prefisso. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Attività che rappresenta l'operazione asincrona WriteStartElement. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del writer. + Uno dei valori di . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il contenuto di testo specificato. + Testo da scrivere. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il contenuto di testo specificato. + Attività che rappresenta l'operazione asincrona WriteString. + Testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, genera e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera in modo asincrono e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Attività che rappresenta l'operazione asincrona WriteSurrogateCharEntity. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive il valore dell'oggetto. + Valore dell'oggetto da scrivere.Nota   In .NET Framework 3.5 questo metodo accetta come parametro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un numero a virgola mobile e precisione singola. + Numero a virgola mobile e precisione singola da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive lo spazio specificato. + Stringa di caratteri spazio vuoto. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono lo spazio vuoto specificato. + Attività che rappresenta l'operazione asincrona WriteWhitespace. + Stringa di caratteri spazio vuoto. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un oggetto che rappresenta l'ambito xml:space corrente. + Oggetto XmlSpace che rappresenta l'ambito xml:space corrente.Valore Significato NoneValore predefinito se non esistono ambiti xml:space.DefaultL'ambito corrente è xml:space="default".PreserveL'ambito corrente è xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare i metodi asincroni in una specifica istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se il writer XML deve verificare la conformità di tutti i caratteri nel documento alla sezione "2.2 Characters" della specifica W3C XML 1.0 Recommendation. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se l'oggetto deve anche chiudere il flusso sottostante o quando viene chiamato il metodo . + true per chiudere anche il flusso sottostante o ; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità per cui il writer XML controlla l'output XML. + Uno dei valori di enumerazione che specifica il livello di conformità (documento, frammento o rilevamento automatico).Il valore predefinito è . + + + Ottiene o imposta il tipo di codifica testo da usare. + Codifica testo da usare.Il valore predefinito è Encoding.UTF8. + + + Ottiene o imposta un valore che indica se impostare il rientro di elementi. + true per scrivere singoli elementi su nuove righe e applicare il rientro; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta la stringa di caratteri da usare per il rientro.Questa impostazione viene usata quando la proprietà è impostata su true. + Stringa di caratteri da usare per il rientro.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è due spazi. + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se deve rimuovere le dichiarazioni dello spazio dei nomi duplicati quando viene scritto contenuto XML.Il comportamento predefinito del writer è restituire tutte le dichiarazioni dello spazio dei nomi presenti nel resolver dello spazio dei nomi del writer. + Enumerazione usata per specificare se rimuovere le dichiarazioni dello spazio dei nomi duplicate in . + + + Ottiene o imposta la stringa di caratteri da usare per le interruzioni di riga. + Stringa di caratteri da usare per le interruzioni di riga.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è \r\n (ritorno a capo, nuova riga). + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se le interruzioni di riga devono essere normalizzate nell'output. + Uno dei valori di .Il valore predefinito è . + + + Ottiene o imposta un valore che indica se scrivere gli attributi su una nuova riga. + true per scrivere gli attributi su una nuova riga; in caso contrario, false.Il valore predefinito è false.NotaQuesta impostazione non ha effetto se il valore della proprietà è false.Se il valore di è impostato su true, ogni attributo viene preceduto da una nuova riga e da un livello aggiuntivo di rientro. + + + Ottiene o imposta un valore che indica se omettere una dichiarazione XML. + true per omettere la dichiarazione XML; in caso contrario, false.Il valore predefinito false significa che viene scritta una dichiarazione XML. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Ottiene o imposta un valore che indica se aggiungerà tag di chiusura a tutti i tag di elemento senza chiusura quando viene chiamato metodo . + true se tutti i tag di elemento senza chiusura verranno chiusi; in caso contrario, false.Il valore predefinito è true. + + + Rappresentazione in memoria di un XML Schema, come descritto nelle specifiche di World Wide Web Consortium (W3C) XML Schema Part 1: Structures e XML Schema Part 2: Datatypes. + + + Indica se gli attributi o gli elementi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + La forma dell'attributo e dell'elemento non è specificata nello schema. + + + Gli elementi e gli attributi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + Non occorre che gli attributi e gli elementi siano qualificati con un prefisso di uno spazio dei nomi. + + + Fornisce una formattazione personalizzata per la serializzazione e la deserializzazione XML. + + + Il metodo è riservato e non deve essere utilizzato.Quando si implementa l'interfaccia IXmlSerializable, è necessario restituire null (Nothing in Visual Basic) da questo metodo. Se invece è richiesta la specifica di uno schema personalizzato, applicare alla classe. + + che descrive la rappresentazione XML dell'oggetto generato dal metodo e utilizzato dal metodo . + + + Genera un oggetto dalla relativa rappresentazione XML. + Flusso di da cui viene deserializzato l'oggetto. + + + Converte un oggetto nella relativa rappresentazione XML. + Flusso di nel quale viene serializzato l'oggetto. + + + Quando viene applicata a un tipo, archivia il nome di un metodo statico del tipo che restituisce uno schema XML e una classe (o per i tipi anonimi) che controlla la serializzazione del tipo. + + + Inizializza una nuova istanza della classe utilizzando il nome del metodo statico che fornisce lo schema XML del tipo. + Nome del metodo statico che deve essere implementato. + + + Ottiene o imposta un valore che determina se la classe di destinazione è un carattere jolly o lo schema della classe contiene solo un elemento xs:any. + true se la classe è un carattere jolly o se lo schema contiene solo l'elemento xs:any; in caso contrario, false. + + + Ottiene il nome del metodo statico che fornisce lo schema XML del tipo e il nome del relativo tipo di dati XML Schema. + Nome del metodo che viene richiamato dall'infrastruttura XML per restituire uno schema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ja/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ja/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..4a6e035 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ja/System.Xml.ReaderWriter.xml @@ -0,0 +1,2897 @@ + + + + System.Xml.ReaderWriter + + + + + オブジェクトおよび オブジェクトで実行する、入力チェックまたは出力チェックの量を指定します。 + + + + オブジェクトまたは オブジェクトは、ドキュメント レベルのチェックまたはフラグメント レベルのチェックを実行する必要があるかどうかを自動的に検出し、適切なチェックを実行します。別の オブジェクトまたは オブジェクトをラップしている場合、外側のオブジェクトは追加の準拠のチェックを実行しません。準拠のチェックは、基になるオブジェクトだけで実行されます。準拠レベルの決定方法の詳細については、 プロパティと プロパティを参照してください。 + + + XML データは、W3C によって定義された整形式の XML 1.0 ドキュメント のルールに準拠します。 + + + XML データは、W3C によって定義された整形式の XML フラグメントです。 + + + DTD を処理するためのオプションを指定します。 列挙体は クラスによって使用されます。 + + + DOCTYPE 要素は無視されます。DTD 処理は発生しません。 + + + DTD を検出したときに、DTD が禁止されていることを示すメッセージと共に をスローします。これが既定の動作です。 + + + クラスが行情報および位置情報を返せるようにするインターフェイスを提供します。 + + + クラスが行情報を返すことができるかどうかを示す値を取得します。 + + および を提供できる場合は true。それ以外の場合は false。 + + + 現在の行番号を取得します。 + 現在の行番号。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + 現在の行の位置を取得します。 + 現在の行の位置。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + プレフィックスと名前空間の一連の割り当てに対する読み取り専用アクセスを提供します。 + + + 現在スコープ内にあるプレフィックスと名前空間の間に定義された割り当てのコレクションを取得します。 + 現在のスコープ内にある名前空間が格納された + 返される名前空間ノードの種類を指定する 値。 + + + 指定したプレフィックスに割り当てられた名前空間 URI を取得します。 + プレフィックスに割り当てられている名前空間 URI。このプレフィックスに名前空間 URI が割り当てられていない場合は null。 + 検索対象の名前空間 URI を持つプレフィックス。 + + + 指定した名前空間 URI に割り当てられたプレフィックスを取得します。 + 名前空間 URI に割り当てられているプレフィックス。この名前空間 URI にプレフィックスが割り当てられていない場合は null。 + 検索対象のプレフィックスを持つ名前空間 URI。 + + + + で重複する名前空間宣言を削除するかどうかを指定します。 + + + 重複する名前空間宣言が削除されないように指定します。 + + + 重複する名前空間宣言を削除するように指定します。重複する名前空間を削除するには、プレフィックスと名前空間が一致している必要があります。 + + + シングルスレッド を実装します。 + + + NameTable クラスの新しいインスタンスを初期化します。 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。または NameTable に既に存在している場合は既存の文字列。 が 0 の場合は、String.Empty が返されます。 + 追加する文字列を格納している文字配列。 + 文字列の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 文字列の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。NameTable に既に存在している場合は既存の文字列。 + 追加する文字列。 + + は null なので、 + + + 指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した値を持つ最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列オブジェクト。または文字列がまだ最小単位に分割されていない場合は null。 + 検索対象の名前。 + + は null なので、 + + + 改行の処理方法を指定します。 + + + 改行文字をエンティティ化します。この設定では、正規化 で出力を読み取るときにすべての文字が保持されます。 + + + 改行文字を変更しません。出力は入力と同じになります。 + + + + プロパティに指定されている文字と一致するように、改行文字を置き換えます。 + + + リーダーの状態を指定します。 + + + + メソッドが呼び出されています。 + + + ファイルの末尾に正常に到達しています。 + + + 読み取り操作を継続できないようにするエラーが発生しました。 + + + Read メソッドが呼び出されていません。 + + + Read メソッドが呼び出されています。リーダーで追加のメソッドが呼び出される場合があります。 + + + + の状態を指定します。 + + + 属性値が書き込まれていることを示します。 + + + + メソッドが呼び出されていることを示します。 + + + 要素の内容が書き込まれていることを示します。 + + + 要素開始タグが書き込まれていることを示します。 + + + 例外がスローされ、 が無効な状態になっています。 メソッドを呼び出すと、 状態にできます。それ以外の メソッドを呼び出した場合、 が発生します。 + + + プロローグが書き込まれていることを示します。 + + + Write メソッドがまだ呼び出されていないことを示します。 + + + XML 名をエンコードおよびデコードし、共通言語ランタイム型と XML スキーマ定義言語 (XSD) 型との間で変換を実行するメソッドを提供します。データ型を変換する場合、返される値はロケールには依存しません。 + + + 名前をデコードします。このメソッドは、 メソッドおよび メソッドの変換を元に戻します。 + デコードされた名前。 + 変換対象の名前。 + + + 名前を有効な XML ローカル名に変換します。 + エンコードされた名前。 + エンコードする名前。 + + + 名前を有効な XML 名に変換します。 + 無効な文字をエスケープ文字列で置換した名前を返します。 + 変換する対象の名前。 + + + XML 仕様に従って有効な名前であることを検証します。 + エンコードされた名前。 + エンコードする名前。 + + + + を等価の に変換します。 + Boolean 値。つまり true または false。 + 変換する文字列。 + + is null. + + does not represent a Boolean value. + + + + を等価の に変換します。 + 文字列と等価の Byte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 単一の文字を表す Char。 + 変換する単一の文字を含んでいる文字列。 + The value of the parameter is null. + The parameter contains more than one character. + + + 指定された を使用して、 に変換します + + と等価の + 変換する 値。 + 世界協定時刻 (UTC) 日付を使用している場合に、日付を現地時間に変換するか、または UTC のままにするかを指定する 値の 1 つ。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。メモ   文字列は、W3C 勧告の XML dateTime 型のサブセットに準拠している必要があります。詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + 変換前の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 はこの形式に対して妥当性が検査されます。 + + is null. + + or is an empty string or is not in the specified format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + + に変換可能な形式の配列。 の各形式には、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 は、これらの形式のいずれかに対して妥当性が検査されます。 + + + + を等価の に変換します。 + 文字列と等価の Decimal。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Double。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Guid。 + 変換する文字列。 + + + + を等価の に変換します。 + 文字列と等価の Int16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の SByte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Single。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + に変換します。 + Boolean の文字列形式。つまり "true" または "false"。 + 変換する値。 + + + + に変換します。 + Byte の文字列形式。 + 変換する値。 + + + + に変換します。 + Char の文字列形式。 + 変換する値。 + + + 指定された を使用して、 に変換します。 + + と等価の + 変換する 値。 + + 値を処理する方法を指定する 値の 1 つ。 + The value is not valid. + The or value is null. + + + 指定した に変換します。 + 指定した 表現。 + 変換される 。 + + + 指定した を指定した形式の に変換します。 + 指定した の指定した形式での 表現。 + 変換される 。 + 変換後の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 + + + + に変換します。 + Decimal の文字列形式。 + 変換する値。 + + + + に変換します。 + Double の文字列形式。 + 変換する値。 + + + + に変換します。 + Guid の文字列形式。 + 変換する値。 + + + + に変換します。 + Int16 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int32 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int64 の文字列形式。 + 変換する値。 + + + + に変換します。 + SByte の文字列形式。 + 変換する値。 + + + + に変換します。 + Single の文字列形式。 + 変換する値。 + + + + に変換します。 + TimeSpan の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt16 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt32 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt64 の文字列形式。 + 変換する値。 + + + + を等価の に変換します。 + 文字列と等価の TimeSpan。 + 変換する文字列。文字列の形式は、W3C『XML Schema Part 2: Datatypes』の期間に関する勧告に準拠している必要があります。 + + is not in correct format to represent a TimeSpan value. + + + + を等価の に変換します。 + 文字列と等価の UInt16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な名前であることを検証します。 + 有効な XML 名の場合は、その名前。 + 検証対象となる名前。 + + is not a valid XML name. + + is null or String.Empty. + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な NCName であることを検証します。NCName は、コロンを入れることができない名前です。 + 有効な NCName の場合は、その名前。 + 検証対象となる名前。 + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C 勧告『XML Schema Part 2: Datatypes』に照らし合わせて、文字列が有効な NMTOKEN であることを検証します。 + 有効な NMTOKEN の場合は、名前トークン。 + 検証する文字列。 + The string is not a valid name token. + + is null. + + + 文字列引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列インスタンスを返します。 + 引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列を返します。 + 検証対象の識別子が格納されている 。 + + + 文字列引数のすべての文字が有効な空白文字の場合、渡された文字列インスタンスを返します。 + 文字列引数のすべての文字が有効な空白文字の場合は渡された文字列インスタンスを返し、それ以外の場合は null を返します。 + 検証する 。 + + + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 検証対象の文字が格納されている 。 + + + 文字列と の間で変換を行うときに、時刻の値をどのように処理するかを指定します。 + + + 現地時刻として処理します。 オブジェクトが世界協定時刻 (UTC: Coordinated Universal Time) を表す場合、これを現地時刻に変換します。 + + + 変換を行うときに、タイム ゾーン情報が保持されます。 + + + + を文字列に変換する場合は、現地時刻として処理します。 + + + UTC として処理します。 オブジェクトが現地時刻を表す場合は、UTC に変換します。 + + + 最後の例外に関する詳細情報を返します。 + + + XmlException クラスの新しいインスタンスを初期化します。 + + + 指定したエラー メッセージを使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + + + XmlException クラスの新しいインスタンスを初期化します。 + エラー状態の説明。 + XmlException をスローした (存在する場合)。この値は、null の場合もあります。 + + + 指定したメッセージ、内部例外、行番号、行の位置を使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + 現在の例外の原因である例外。この値は、null の場合もあります。 + エラーの発生場所を示す行番号。 + エラーの発生場所を示す行の位置。 + + + エラーの発生場所を示す行番号を取得します。 + エラーの発生場所を示す行番号。 + + + エラーの発生場所を示す行の位置を取得します。 + エラーの発生場所を示す行の位置。 + + + 現在の例外を説明するメッセージを取得します。 + 例外の原因を説明するエラー メッセージ。 + + + 名前空間を解決し、コレクションに追加および削除して、これらの名前空間に対するスコープ管理を提供します。 + + + + を指定して、 クラスの新しいインスタンスを初期化します。 + 使用する 。 + null is passed to the constructor + + + 指定した名前空間をコレクションに追加します。 + 追加する名前空間に関連付けるプリフィックス。String.Empty を使用して、既定の名前空間を追加します。メモ XML Path Language (XPath) 式の名前空間の解決に を使用する場合は、プレフィックスを指定する必要があります。XPath 式にプレフィックスが含まれていない場合、名前空間 URI (Uniform Resource Identifier) は、空の名前空間であると見なされます。XPath 式および の詳細については、 メソッドおよび メソッドの説明を参照してください。 + 追加する名前空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 既定の名前空間の名前空間 URI を取得します。 + 既定の名前空間の名前空間 URI を返します。既定の名前空間がない場合は String.Empty を返します。 + + + + 内の名前空間を反復処理するために使用する列挙子を返します。 + + によって格納されているプレフィックスを含む + + + 現在スコープ内にある名前空間を列挙するために使用できる、プレフィックスをキーとした、名前空間の名前のコレクションを取得します。 + 現在スコープ内にある名前空間とプレフィックスのペアのコレクション。 + 返される名前空間ノードの種類を指定する列挙値。 + + + 提供されたプリフィックスに現在のプッシュされたスコープに対して定義された名前空間があるかどうかを示す値を取得します。 + 定義された名前空間がある場合は true。それ以外の場合は false。 + 検索する対象の名前空間のプリフィックス。 + + + 指定したプリフィックスの名前空間 URI を取得します。 + + の名前空間 URI を返します。マップされた名前空間がない場合は null を返します。返される文字列は最小単位に分割されます。最小単位に分割された文字列の詳細については、 クラスを参照してください。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間に一致するようにするには、String.Empty を渡します。 + + + 指定した名前空間 URI に対して宣言されたプリフィックスを検索します。 + 一致するプリフィックス。割り当てられたプリフィックスがない場合、メソッドは String.Empty を返します。null 値を指定した場合、null が返されます。 + プリフィックスに対して解決する名前空間。 + + + このオブジェクトに関連付けられている を取得します。 + このオブジェクトが使用する + + + 名前空間スコープをスタックからポップします。 + スタックに名前空間スコープが残されている場合は true。ポップする名前空間がそれ以上ない場合は false。 + + + 名前空間スコープをスタックにプッシュします。 + + + 指定したプリフィックスの指定した名前空間を削除します。 + 名前空間のプリフィックス。 + 指定したプリフィックスに対して削除する名前空間。削除された名前空間は、現在の名前空間スコープに由来しています。現在のスコープ外の名前空間は無視されます。 + The value of or is null. + + + 名前空間スコープを定義します。 + + + 現在のノードのスコープに定義されているすべての名前空間。この名前空間には、常に暗黙的に宣言される xmlns:xml 名前空間が含まれます。返される名前空間の順序は定義されません。 + + + 常に暗黙的に宣言される xmlns:xml 名前空間を除く、現在のノードのスコープに定義されているすべての名前空間。返される名前空間の順序は定義されません。 + + + 現在のノードでローカルに定義されているすべての名前空間。 + + + 最小単位に分割された文字列オブジェクトのテーブル。 + + + + クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。長さが 0 の場合は、String.Empty が返されます。 + 追加する名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。 + 追加する名前。 + + は null なので、 + + + 派生クラスでオーバーライドされると、指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列と同じ値を含む最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 + 検索する名前。 + + は null なので、 + + + ノードの型を指定します。 + + + 属性 (例 : id='123')。 + + + CDATA セクション (例 : <![CDATA[my escaped text]]>)。 + + + コメント (例 : <!-- my comment -->)。 + + + ドキュメント ツリーのルートして、XML ドキュメント全体へのアクセスを実現するドキュメント オブジェクト。 + + + ドキュメント フラグメント。 + + + 次のようなタグで示されるドキュメント型宣言 (例 : <!DOCTYPE...>)。 + + + 要素 (例 : <item>)。 + + + 終了要素タグ (例 : </item>)。 + + + + を呼び出した結果、XmlReader がエンティティ置換の末尾に到達したときに返されます。 + + + エンティティ宣言 (例 : <!ENTITY...>)。 + + + エンティティへの参照 (例 : &num;)。 + + + Read メソッドが呼び出されなかった場合に、 によって返されます。 + + + ドキュメント型宣言内の表記 (例 : <!NOTATION...>)。 + + + 処理命令 (例 : <?pi test?>)。 + + + 混合コンテンツ モデル内のマークアップ間にある空白、または xml:space="preserve" スコープ内の空白。 + + + ノードのテキストの内容。 + + + マークアップ間の空白。 + + + XML 宣言 (例 : <?xml version='1.0'?>)。 + + + XML フラグメントを解析するために が必要とするコンテキスト情報をすべて提供します。 + + + + 、ベース URI、xml:lang、xml:space、ドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD サブセットはエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、ベース URI、xml:lang、xml:space、エンコーディング、およびドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD はエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、および xml:space のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、xml:space、およびエンコーディングを指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + ベース URI を取得または設定します。 + DTD ファイルを解決するために使用するベース URI。 + + + ドキュメント型宣言の名前を取得または設定します。 + ドキュメント型宣言の名前。 + + + エンコーディングの種類を取得または設定します。 + エンコーディングの種類を示す オブジェクト。 + + + 内部 DTD サブセットを取得または設定します。 + 内部 DTD サブセット。たとえば、このプロパティは、<!DOCTYPE doc [...]> の角かっこの中のすべての内容を返します。 + + + + を取得または設定します。 + XmlNamespaceManager。 + + + 文字列を最小単位に分割するために使用される を取得します。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + XmlNameTable。 + + + パブリック識別子を取得または設定します。 + パブリック識別子。 + + + システム識別子を取得または設定します。 + システム識別子。 + + + 現在の xml:lang スコープを取得または設定します。 + 現在の xml:lang スコープ。スコープ内に xml:lang がない場合は、String.Empty が返されます。 + + + 現在の xml:space スコープを取得または設定します。 + xml:space スコープを示す 値。 + + + XML 限定名を表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定した名前を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + + 指定した名前と名前空間を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + オブジェクトの名前空間。 + + + 空の を提供します。 + + + 指定した オブジェクトが、現在の オブジェクトと等しいかどうかを判断します。 + 2 つのオブジェクトが同じインスタンス オブジェクトである場合は true。それ以外の場合は false。 + 比較対象の 。 + + + + のハッシュ コードを返します。 + このオブジェクトのハッシュ コード。 + + + + が空かどうかを示す値を取得します。 + 名前と名前空間が空の文字列である場合は true。それ以外の場合は false。 + + + + の限定名の文字列形式を取得します。 + 限定名の文字列形式。オブジェクトに対して名前が定義されていない場合は String.Empty。 + + + + の名前空間の文字列形式を取得します。 + 名前空間の文字列形式。オブジェクトに対して名前空間が定義されていない場合は String.Empty。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が同じである場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が異なっている場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + オブジェクトの名前です。 + オブジェクトの名前空間。 + + + XML データへの高速で非キャッシュの前方向アクセスを提供するリーダーを表します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、参照ソースです。 + + + XmlReader クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、現在のノードの属性数を取得します。 + 現在のノードにある属性の数。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのベース URI を取得します。 + 現在のノードのベース URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + がバイナリ コンテンツ用の読み取りメソッドを実装するかどうかを示す値を取得します。 + バイナリ コンテンツ用の読み取りメソッドを実装する場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドを実装しているかどうかを示す値を取得します。 + true if the implements the method; otherwise false. + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このリーダーがエンティティを解析および解決できるかどうかを示す値を取得します。 + リーダーがエンティティを解析および解決できる場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 新たに作成インスタンスの既定の設定で指定されたストリームを使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + + + 新たに作成インスタンスは、指定したストリームおよび設定を使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成インスタンスを解析するための指定したストリーム、設定、およびコンテキスト情報を使用しています。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーを使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーと設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定です。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成を解析するための指定されたテキスト リーダー、設定、およびコンテキスト情報を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + プロパティと プロパティの両方に値が設定されています(これらの NameTable プロパティのいずれか 1 つだけを設定して使用できます)。 + + + 指定された URI で新しい インスタンスを作成します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 クラスは、パスを正規データ形式に変換するときに使用されます。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + URI で指定されたファイルが存在しません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成指定された URI および設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 オブジェクトの オブジェクトは、パスを正規データ形式に変換するときに使用されます。 が null の場合は、新しい オブジェクトが使用されます。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + URI で指定されたファイルが見つかりません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成、指定した XML リーダーと設定を使用してインスタンス。 + ラップされているオブジェクトには、指定されたオブジェクトです。 + 基になる XML リーダーとして使用するオブジェクト。 + 新しい設定インスタンス。 オブジェクトの準拠レベルは、基になるリーダーの準拠レベルと一致するか、または に設定する必要があります。 + + 値が null です。 + + オブジェクトが、基になるリーダーの準拠レベルと一致しない準拠レベルを指定しています。または基になる の状態または の状態にあります。 + + + 派生クラスでオーバーライドされると、XML ドキュメント内の現在のノードの深さを取得します。 + XML ドキュメント内の現在のノードの深さ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーがストリームの末尾に配置されているかどうかを示す値を取得します。 + ストリームの末尾にリーダーが配置されている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。このメソッドは、リーダーを移動しません。 + 属性のインデックス。インデックスの値は、0 から始まります。最初の属性のインデックスは 0 です。 + 該当する がありません。負の値以外で、属性コレクションのサイズよりも小さくなければなりません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。 + 属性の限定名。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。このメソッドは、リーダーを移動しません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードのテキスト値を非同期に取得します。 + 現在のノードの値。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードに属性があるかどうかを示す値を取得します。 + 現在のノードが属性を持っている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが を持つことができるかどうかを示す値を取得します。 + リーダーが現在配置されているノードが Value を持つことができる場合は true。それ以外の場合は false。false の場合、ノードは String.Empty の値を持ちます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが DTD またはスキーマで定義された既定値から生成された属性かどうかを示す値を取得します。 + 現在のノードが、DTD またはスキーマで定義された既定値から生成された値を持つ属性である場合は true。属性値が明示的に設定された場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが空の要素 (<MyElement/> など) かどうかを示す値を取得します。 + 現在のノードが /> で終わる要素である ( が XmlNodeType.Element に等しい) 場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 文字列引数が有効な XML 名かどうかを示す値を返します。 + 名前が有効な場合は true。それ以外の場合は false。 + 検証対象の名前。 + + 値が null です。 + + + 文字列引数が有効な XML 名トークンかどうかを示す値を返します。 + 有効な名前トークンの場合は true。それ以外の場合は false。 + 検証対象の名前トークン。 + + 値が null です。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうかをテストします。 + + が開始タグまたは空の要素タグを見つけた場合は true。XmlNodeType.Element 以外のノード型が見つかった場合は false。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティが、指定した引数と一致するかどうかをテストします。 + 見つかったノードが要素であり、Name プロパティが指定した文字列と一致する場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の Name プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の Name プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティと プロパティが、指定した文字列と一致するかどうかをテストします。 + 見つかったノードが要素の場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の LocalName および NamespaceURI プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の LocalName プロパティと一致する文字列。 + 見つかった要素の NamespaceURI プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのローカル名を取得します。 + プリフィックスを削除した現在のノードの名前。たとえば、LocalName は、要素 <bk:book> の book です。名前を持たないノード型 (Text、Comment など) の場合、このプロパティは String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の要素のスコープの名前空間プリフィックスを解決します。 + プリフィックスの割り当て先の名前空間 URI。条件に合うプリフィックスが見つからない場合は null。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間と一致させるには、空の文字列を渡します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性に移動します。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターの値が負数です。 + + + 派生クラスでオーバーライドされると、指定した の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 派生クラスでオーバーライドされると、指定した および の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 現在のノードがコンテンツ (空白でないテキスト、CDATA、Element、EndElement、EntityReference、または EndEntity) ノードかどうかを確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。リーダーは、ProcessingInstruction、DocumentType、Comment、Whitespace、または SignificantWhitespace の型のノードをスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + 入力ストリームで検出された正しくない XML。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードがコンテンツ ノードであるかどうかを非同期的に確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の属性ノードを含む要素に移動します。 + リーダーが属性の位置に配置されている場合は true で、属性を所有している要素の位置にリーダーが移動します。リーダーが属性の位置に配置されていない場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、最初の属性に移動します。 + 属性が存在する場合は true で、リーダーが最初の属性へ移動します。それ以外の場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、次の属性に移動します。 + 次の属性が存在する場合は true。それ以上、属性が存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの限定名を取得します。 + 現在のノードの限定名。たとえば、Name は、要素 <bk:book> の bk:book です。返される名前は、ノードの によって異なります。リストされた値を返すノード型を次に示します。その他のすべてのノード型は、空の文字列を返します。ノード型名前 Attribute属性の名前。 DocumentTypeドキュメントの種類の名前。 Elementタグ名。 EntityReference参照されたエンティティの名前。 ProcessingInstruction処理命令の対象。 XmlDeclarationリテラル文字列 xml。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーが配置されているノードの名前空間 URI (W3C の名前空間の仕様における定義に準拠) を取得します。 + 現在のノードの名前空間 URI。それ以外の場合は空の文字列。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、この実装に関連付けられている を取得します。 + ノード内の最小単位に分割された文字列を取得できる XmlNameTable。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの型を取得します。 + 現在のノードの型を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードに関連付けられている名前空間プリフィックスを取得します。 + 現在のノードに関連付けられた名前空間プリフィックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、ストリームから次のノードを読み取ります。 + true次のノードが正常に読み取られた場合それ以外の場合、falseです。 + XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + ストリームから次のノードを非同期に読み取ります。 + 次のノードが正常に読み取られた場合は true。それ以上読み取る対象となるノードが存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、属性値を解析して、1 つ以上の Text、EntityReference、または EndEntity の各ノードに格納します。 + 返すノードがある場合は true。初めて呼び出すときにリーダーの位置が属性ノード上にない場合、またはすべての属性値が読み込まれている場合は、false。misc="" などの空の属性は、値 true を持つ単一のノードと一緒に String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。たとえば、 オブジェクトを xs:string に変換するときにこれを使用できます。この値は、null の場合もあります。 + 内容が、指定した型の正しい形式になっていません。 + 試行されたキャストが無効です。 + + 値が null です。 + 現在のノードは、サポートされているノード型ではありません。詳細については、次の表を参照してください。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を非同期に読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を Boolean として読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + 現在の位置における オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、倍精度浮動小数点数として読み取ります。 + 倍精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、単精度浮動小数点数として読み取ります。 + 現在の位置における単精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 32 ビット符号付き整数として読み取ります。 + 32 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 64 ビット符号付き整数として読み取ります。 + 64 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として非同期に読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして非同期に読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として返します。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、要素の内容を要求された型として読み込みます。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として非同期に読み取ります。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を倍精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが終了タグで、リーダーを次のノードに進めることを確認します。 + 現在のノードが終了タグでないか、入力ストリームで正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、マークアップを含むすべての内容を文字列として読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。現在のノードが要素でも属性でもない場合は、空の文字列が返されます。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + マークアップを含むすべてのコンテンツを文字列として非同期に読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、このノードとそのすべての子を表す内容 (マークアップを含む) を読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このノードとその子を表すコンテンツをマークアップを含めて非同期に読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードが要素であるか調べ、リーダーを次のノードに進めます。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素の限定名。 + 入力ストリームで、正しくない XML が検出されました。または要素の が指定した と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素のローカル名。 + 要素の名前空間 URI。 + 入力ストリームで、正しくない XML が検出されました。または見つかった要素の プロパティと プロパティが指定した引数と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーの状態を取得します。 + リーダーの状態を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードおよびそのすべての子孫ノードを読み取るために使用できる、新しい XmlReader インスタンスを返します。 + 新しい XML リーダー インスタンスの設定です。呼び出す、メソッド呼び出しの前に現在のノードで、新しいリーダーを配置する、メソッドです。 + XML リーダーではありません、このメソッドが呼び出されると、要素に配置されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された修飾名を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。 が呼び出されたときに が要素に配置されていない場合、このメソッドは false を返し、 の位置を変更しません。 + 移動先となる要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 移動先となる要素のローカル名。 + 移動先となる要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名の要素が見つかるまで読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI が見つかるまで要素を読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素のローカル名。 + 要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素のローカル名。 + 移動先となる兄弟要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを読み込みます。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + 現在のノードに値がありません ( が false)。 + + 値が null です。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + XML データは、整形式ではありません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを非同期に読み取ります。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、EntityReference ノードのエンティティ参照を解決します。 + リーダーが EntityReference ノードに配置されていません。つまり、このリーダーの実装では、エンティティを解決できません。 は false を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + Gets the object used to create this instance. + このリーダーのインスタンスを作成するために使用した オブジェクト。 メソッドを使用しないでこのリーダーを作成した場合、このプロパティは null を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子をスキップします。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子を非同期にスキップします。 + 現在のノード。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのテキスト値を取得します。 + 返される値は、ノードの によって異なります。返す値を持つノード型の一覧を次の表に示します。これ以外のノード型はすべて String.Empty を返します。ノード型値 Attribute属性の値。 CDATACDATA セクションの内容。 Commentコメントの内容。 DocumentType内部サブセット。 ProcessingInstructionターゲットを含まない、全体の内容。 SignificantWhitespace混合コンテンツ モデル内のマークアップ間の空白。 Textテキスト ノードの内容。 Whitespaceマークアップ間の空白。 XmlDeclaration宣言の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの共通言語ランタイム (CLR) 型を取得します。 + ノードの型指定された値に対応する CLR 型。既定値は、System.String です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを取得します。 + + 値のいずれか。xml:space スコープが存在しない場合、このプロパティは既定の XmlSpace.None に設定されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + 文字のチェックを行うかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。メモ がテキスト データの処理を行う場合は、プロパティの設定に関係なく、XML 名とテキストの内容が有効であることを常にチェックします。 を false に設定すると、文字エンティティ参照に対する文字のチェック機能がオフになります。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + リーダーを閉じるときに基になるストリームまたは を閉じる必要があるかどうかを示す値を取得または設定します。 + リーダーを閉じるときに基になるストリームまたは を閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + + が従う準拠のレベルを取得または設定します。 + XML リーダーが適用する準拠のレベルを指定する列挙値のいずれか。既定値は、 です。 + + + DTD の処理を決定する値を取得または設定します。 + DTD の処理を決定する列挙値の 1 つ。既定値は、 です。 + + + コメントを無視するかどうかを示す値を取得または設定します。 + コメントを無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 処理命令を無視するかどうかを示す値を取得または設定します。 + 処理命令を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 意味のない空白を無視するかどうかを示す値を取得または設定します。 + 空白を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + 行番号オフセット。既定値は 0 です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + ラインの位置のオフセット。既定値は 0 です。 + + + エンティティの展開時に許容されるドキュメント内の最大文字数を示す値を取得または設定します。 + エンティティの展開時に許容される最大文字数。既定値は 0 です。 + + + XML ドキュメントの最大文字数を示す値を取得または設定します。ゼロ (0) の値は、XML ドキュメントのサイズに制限がないことを示します。0 以外の値は、最大サイズを文字数で示します。 + XML ドキュメント内の最大文字数。既定値は 0 です。 + + + 最小単位に分割された文字列の比較に使用する を取得または設定します。 + この オブジェクトを使用して作成されたすべての インスタンスで使用する、最小単位に分割されたすべての文字列を格納する 。既定値は、null です。この値が null の場合、作成された インスタンスは、新しい空の を使用します。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + 現在の xml:space スコープを指定します。 + + + xml:space スコープと default は等価です。 + + + xml:space スコープがありません。 + + + xml:space スコープと preserve は等価です。 + + + XML データが格納されたストリームまたはファイルを、高速かつ非キャッシュで前方のみに生成する方法を提供するライターを表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定されたストリームを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + The value is null. + + + ストリームと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バッファー内のデータをすべて基になるストリームにフラッシュし、基になるストリームもフラッシュします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バッファー内のデータをすべて基になるストリームに非同期にフラッシュし、基になるストリームもフラッシュします。 + 非同期の Flush 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間 URI の現在の名前空間スコープで定義された最も近いプリフィックスを返します。 + 一致するプリフィックス。現在のスコープに一致する名前空間 URI が見つからない場合は null。 + 検索対象のプリフィックスを持つ名前空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + この インスタンスを作成するために使用された オブジェクトを取得します。 + このライターのインスタンスを作成するために使用した オブジェクト。このライターが メソッドを使用して作成されなかった場合、このプロパティは null を返します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスによってオーバーライドされると、 の現在の位置で見つかったすべての属性を書き込みます。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + の現在の位置で見つかったすべての属性を非同期に書き込みます。 + 非同期の WriteAttributes 操作を表すタスク。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名と値の属性を書き込みます。 + 属性のローカル名。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性のローカル名。 + 属性に関連付ける名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したプリフィックス、ローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して属性を非同期に書き込みます。 + 非同期の WriteAttributeString 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したバイナリ バイトを Base64 としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを base64 として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBase64 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定されたバイナリ バイトを BinHex としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを BinHex として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBinHex 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを含む <![CDATA[...]]> ブロックを書き込みます。 + CDATA ブロック内に配置するテキスト。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを格納する <![CDATA[...]]> ブロックを非同期に書き込みます。 + 非同期の WriteCData 操作を表すタスク。 + CDATA ブロック内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した Unicode 文字値の文字エンティティを強制的に生成します。 + 文字エンティティを生成する Unicode 文字。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した Unicode 文字値の文字エンティティを非同期に強制的に生成します。 + 非同期の WriteCharEntity 操作を表すタスク。 + 文字エンティティを生成する Unicode 文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、一度に 1 つのバッファーにテキストを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 一度に 1 つのバッファーにテキストを非同期に書き込みます。 + 非同期の WriteChars 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを格納している <!--...--> コメントを書き込みます。 + コメント内に配置するテキスト。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを含むコメント <!--...--> を非同期に書き込みます。 + 非同期の WriteComment 操作を表すタスク。 + コメント内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前とオプションの属性を含む DOCTYPE 宣言を書き込みます。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定された名前とオプション属性を使用して DOC 宣言を非同期に書き込みます。 + 非同期の WriteDocType 操作を表すタスク。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を非同期に書き込みます。 + 非同期の WriteElementString 操作を表すタスク。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、前の 呼び出しを閉じます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 前の 呼び出しを非同期に閉じます。 + 非同期の WriteEndAttribute 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、開いている任意の要素または属性を閉じ、ライターを Start 状態に戻します。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 開いている要素または属性を非同期に閉じ、ライターを Start 状態に戻します。 + 非同期の WriteEndDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、&name; などのエンティティ参照を書き込みます。 + エンティティ参照の名前。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + エンティティ参照を &name; として非同期的に書き込みます。 + 非同期の WriteEntityRef 操作を表すタスク。 + エンティティ参照の名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteFullEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であるようにします。 + 書き込む名前。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であることを確認し、それを非同期に書き込みます。 + 非同期の WriteName 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であるようにします。 + 書き込む名前。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であることを確認し、それを非同期に書き込みます。 + 非同期の WriteNmToken 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターにコピーし、リーダーを次の兄弟の開始位置に移動します。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターに非同期にコピーし、リーダーを次の兄弟の開始位置に移動します。 + 非同期の WriteNode 操作を表すタスク。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、<?name text?> など、名前とテキストの間に空白が入った処理命令を書き込みます。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前とテキストの間にスペースがある処理命令を、次のように非同期的に書き込みます: <?name text?>。 + 非同期の WriteProcessingInstruction 操作を表すタスク。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間の限定名を書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 書き込むローカル名。 + 名前の名前空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前空間の修飾名を非同期に書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 非同期の WriteQualifiedName 操作を表すタスク。 + 書き込むローカル名。 + 名前の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、手動で文字バッファーから生のマークアップを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、手動で文字列から生のマークアップを書き込みます。 + 書き込むテキストを格納している文字列。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 文字バッファーから手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 文字列から手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名を使用して属性の開始を書き込みます。 + 属性のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名および名前空間 URI を使用して属性の開始を書き込みます。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定されたプリフィックス、ローカル名、および名前空間 URI を使用して属性の開始を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、および名前空間 URI を使用して属性の開始を非同期に書き込みます。 + 非同期の WriteStartAttribute 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言とスタンドアロン属性を書き込みます。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バージョン "1.0" で XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + バージョン "1.0" とスタントアロン属性を使用して XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名の開始タグを書き込みます。 + 要素のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間に関連付けます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。この名前空間が既にスコープ内にあり、関連付けられたプリフィックスを持つ場合、ライターは、そのプリフィックスも自動的に書き込みます。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間とプリフィックスに関連付けます。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した開始タグを非同期に書き込み、指定した名前空間とプレフィックスに関連付けます。 + 非同期の WriteStartElement 操作を表すタスク。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、ライターの状態を取得します。 + + 値のいずれか。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したテキスト内容を書き込みます。 + 書き込むテキスト。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストの内容を非同期に書き込みます。 + 非同期の WriteString 操作を表すタスク。 + 書き込むテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、サロゲート文字ペアのサロゲート文字エンティティを生成し、書き込みます。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + サロゲート文字ペアのサロゲート文字エンティティを非同期に生成して書き込みます。 + 非同期の WriteSurrogateCharEntity 操作を表すタスク。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + オブジェクト値を書き込みます。 + 書き込むオブジェクト値。メモ   .NET Framework 3.5 のリリースでは、このメソッドは をパラメーターとして受け入れます。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 単精度浮動小数点数を書き込みます。 + 書き込む単精度浮動小数点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した空白を書き込みます。 + 空白文字の文字列。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した空白を非同期に書き込みます。 + 非同期の WriteWhitespace 操作を表すタスク。 + 空白文字の文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを表す を取得します。 + 現在の xml:space スコープを表す XmlSpace。値説明 Nonexml:space スコープが存在しない場合は、これが既定値になります。Default現在のスコープは、xml:space="default" です。Preserve現在のスコープは、xml:space="preserve" です。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを示す値を取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + ドキュメント内のすべての文字が W3C の「XML 1.0 Recommendation (XML 1.0 勧告)」の「2.2 Characters (2.2 文字)」に準拠していることを XML ライターがチェックする必要があるかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + + を呼び出したときに、 が、基になるストリームまたは も閉じる必要があるかどうかを示す値を取得または設定します。 + 基になるストリームまたは も閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + XML ライターが XML 出力をチェックする準拠のレベルを取得または設定します。 + 準拠のレベル (ドキュメント、フラグメント、自動検出) を指定する列挙値のいずれか。既定値は、 です。 + + + 使用するテキスト エンコーディングの種類を取得または設定します。 + 使用するテキスト エンコーディング。既定値は、Encoding.UTF8 です。 + + + 要素にインデントを設定するかどうかを示す値を取得または設定します。 + 各要素を新しい行に書き込んでインデントを設定する場合は true、それ以外の場合は false。既定値は、false です。 + + + インデント処理を行うときに使用する文字列を取得または設定します。この設定は、 プロパティが true に設定されている場合に使用します。 + インデント処理を行うときに使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は 2 つのスペースです。 + The value assigned to the is null. + + + XML コンテンツの書き込み時に、重複する名前空間宣言を で削除するかどうかを示す値を取得または設定します。既定の動作では、ライターの名前空間リゾルバーに存在するすべての名前空間宣言がライターによって出力されます。 + + で重複する名前空間宣言を削除するかどうかを指定するための 列挙体。 + + + 改行に使用する文字列を取得または設定します。 + 改行に使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は \r\n (復帰、改行) です。 + The value assigned to the is null. + + + 出力内の改行を正規化するかどうかを示す値を取得または設定します。 + + 値のいずれか。既定値は、 です。 + + + 新しい行に属性を書き込むかどうかを示す値を取得または設定します。 + 個々の行に属性を書き込む場合に true、それ以外の場合は false。既定値は、false です。メモ プロパティ値が false の場合、この設定は無効です。 を true に設定すると、各属性は、新しい行にインデントを 1 レベル増やして記述されます。 + + + XML 宣言を省略するかどうかを示す値を取得または設定します。 + XML 宣言を省略する場合は true、それ以外の場合は false。既定値は false で、XML 宣言が書き込まれます。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + + メソッドが呼び出されるときに がすべての閉じられていない要素タグに終了タグを追加するかどうかを示す値を取得または設定します。 + 閉じられていない要素タグがすべて閉じられる場合は true。それ以外の場合は false。既定値は true です。 + + + W3C (World Wide Web Consortium) の『XML Schema Part 1: Structures』および『XML Schema Part 2: Datatypes』の仕様で指定されている XML スキーマのインメモリ表現です。 + + + 属性または要素を、名前空間プレフィックスで修飾する必要があるかどうかを示します。 + + + スキーマには、要素および属性の形式が指定されません。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要があります。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要はありません。 + + + XML シリアル化および逆シリアル化のカスタム書式を提供します。 + + + このメソッドは予約されているため、使用できません。IXmlSerializable インターフェイスを実装する場合、このメソッドから null (Visual Basic では Nothing) を返す必要があります。また、カスタム スキーマの指定が要求されている場合は、このクラスに を適用します。 + + メソッドによって生成され メソッドによって処理されるオブジェクトの XML 表現を記述する + + + オブジェクトの XML 表現からオブジェクトを生成します。 + オブジェクトの逆シリアル化元である ストリーム。 + + + オブジェクトを XML 表現に変換します。 + オブジェクトのシリアル化先の ストリーム。 + + + 型に適用された場合、XML スキーマを返す型の静的メソッドの名前と、型のシリアル化を制御する (または匿名型の ) を格納します。 + + + 型の XML スキーマを提供する静的メソッドの名前を受け取って、 クラスの新しいインスタンスを初期化します。 + 実装する必要がある静的メソッドの名前。 + + + ターゲット クラスがワイルドカードかどうか、またはクラスのスキーマに xs:any 要素のみが含まれているかどうかを判断する値を取得または設定します。 + クラスがワイルドカードの場合、またはスキーマに xs:any 要素のみが含まれている場合は true。それ以外の場合は false。 + + + 型の XML スキーマおよびその XML スキーマ データ型の名前を提供する静的メソッドの名前を取得します。 + XML スキーマを返すために XML インフラストラクチャによって呼び出されるメソッドの名前。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ko/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ko/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..9be6f63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ko/System.Xml.ReaderWriter.xml @@ -0,0 +1,2766 @@ + + + + System.Xml.ReaderWriter + + + + 만들어진 개체에서 수행할 입력 또는 출력 검사 수준을 지정합니다. + + + + 또는 개체가 문서 또는 조각 검사의 수행 여부를 자동으로 확인하고 적합한 검사를 수행합니다.다른 또는 개체를 래핑하면 외부 개체는 추가 규칙 검사를 수행하지 않습니다.내부 개체에서만 규칙 검사를 수행합니다.규격 수준을 결정하는 데 대한 자세한 내용은 속성을 참조하세요. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 1.0 문서에 대한 규칙을 준수합니다. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 조각입니다. + + + DTD 처리 옵션을 지정합니다. 열거형은 클래스에서 사용됩니다. + + + DOCTYPE 요소가 무시됩니다.DTD 처리가 수행되지 않습니다. + + + DTD가 발견되면 DTD가 금지되었다는 메시지와 함께 이 throw되도록 지정합니다.이것은 기본적인 동작입니다. + + + 클래스에서 줄과 위치 정보를 반환할 수 있는 인터페이스를 제공합니다. + + + 클래스에서 줄 정보를 반환할 수 있는지 여부를 나타내는 값을 가져옵니다. + + 을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 현재 줄 번호를 가져옵니다. + 현재 줄 번호이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 현재 줄 위치를 가져옵니다. + 현재 줄 위치이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 접두사 및 네임스페이스 매핑 집합에 읽기 전용으로 액세스하는 데 사용됩니다. + + + 현재 범위 내에 정의된 접두사-네임스페이스 매핑 컬렉션을 가져옵니다. + 현재 범위 내의 네임스페이스가 포함된 입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 값입니다. + + + 지정된 접두사에 매핑된 네임스페이스 URI를 가져옵니다. + 접두사에 매핑된 네임스페이스 URI이거나, 접두사가 네임스페이스 URI에 매핑되지 않은 경우 null입니다. + 찾을 네임스페이스 URI의 접두사입니다. + + + 지정된 네임스페이스 URI에 매핑된 접두사를 가져옵니다. + 네임스페이스 URI에 매핑된 접두사이거나, 네임스페이스 URI가 접두사에 매핑되지 않은 경우 null입니다. + 찾을 접두사의 네임스페이스 URI입니다. + + + + 에서 중복된 네임스페이스 선언을 제거할지 여부를 지정합니다. + + + 중복된 네임스페이스 선언을 제거하지 않도록 지정합니다. + + + 중복된 네임스페이스 선언을 제거하도록 지정합니다.중복된 네임스페이스를 제거하려면 접두사와 네임스페이스가 일치해야 합니다. + + + 단일 스레드 을 구현합니다. + + + NameTable 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다.이 0이면 String.Empty가 반환됩니다. + 추가할 문자열이 포함된 문자 배열입니다. + 문자열의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 문자열에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다. + 추가할 문자열입니다. + + 가 null입니다. + + + 주어진 배열의 지정된 문자 범위와 같은 문자가 포함된 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.이 0이면 String.Empty가 반환됩니다. + 찾을 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 값을 가진 원자화된 문자열을 가져옵니다. + 원자화된 문자열이거나 문자열이 이미 원자화되지 않은 경우에는 null입니다. + 찾을 이름입니다. + + 가 null입니다. + + + 줄 바꿈을 처리하는 방법을 지정합니다. + + + 새 줄 문자를 엔터티화합니다.이 설정을 사용하면 정규화 에서 출력을 읽을 경우 모든 문자가 유지됩니다. + + + 새 줄 문자를 변경하지 않습니다.이 경우에는 입력과 출력이 같습니다. + + + + 속성에 지정된 문자와 일치하도록 새 줄 문자를 바꿉니다. + + + 판독기의 상태를 지정합니다. + + + + 메서드가 호출되었습니다. + + + 파일 끝에 성공적으로 도달했습니다. + + + 읽기 작업을 계속할 수 없는 오류가 발생했습니다. + + + Read 메서드가 호출되지 않았습니다. + + + Read 메서드가 호출되었습니다.판독기에 메서드가 추가로 호출될 수 있습니다. + + + + 의 상태를 지정합니다. + + + 특성 값을 쓰고 있음을 나타냅니다. + + + + 메서드가 이미 호출되었음을 나타냅니다. + + + 요소 내용을 쓰고 있음을 나타냅니다. + + + 요소 시작 태그를 쓰고 있음을 나타냅니다. + + + 예외가 throw되어 가 잘못된 상태에 있습니다. 메서드를 호출하여 상태로 설정할 수 있습니다.이외의 경우 메서드를 호출하면 이 throw됩니다. + + + 프롤로그를 쓰고 있음을 나타냅니다. + + + Write 메서드가 아직 호출되지 않았음을 나타냅니다. + + + XML 이름을 인코딩 및 디코딩하고 공용 언어 런타임 형식과 XSD(XML 스키마 정의) 언어 형식 사이의 변환 메서드를 제공합니다.데이터 형식을 변환할 때 반환되는 값은 로캘과 무관합니다. + + + 이름을 디코딩합니다.이 메서드는 메서드 및 메서드와 반대로 수행합니다. + 디코딩한 이름입니다. + 변환될 이름입니다. + + + 이름을 올바른 XML 로컬 이름으로 변환합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + 이름을 올바른 XML 이름으로 변환합니다. + 잘못된 문자가 이스케이프 문자열로 바뀐 이름을 반환합니다. + 변환할 이름입니다. + + + XML 사양에 따라 올바른 이름인지 확인합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + + 을 해당하는 값으로 변환합니다. + Boolean 값, 즉 true 또는 false입니다. + 변환할 문자열입니다. + + is null. + + does not represent a Boolean value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Byte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 단일 문자를 나타내는 Char입니다. + 변환할 단일 문자가 포함된 문자열입니다. + The value of the parameter is null. + The parameter contains more than one character. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + UTC(Coordinated Universal Time) 날짜를 현지 시간으로 변환할지 아니면 UTC로 유지할지 지정하는 값 중 하나입니다. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다.참고   이 문자열은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분을 준수해야 합니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이 형식을 사용하여 문자열 의 유효성을 검사합니다. + + is null. + + or is an empty string or is not in the specified format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 수 있는 형식의 배열입니다.의 각 형식은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이러한 형식 중 하나를 사용하여 문자열 의 유효성을 검사합니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Decimal 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Double 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Guid 값입니다. + 변환할 문자열입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 SByte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Single 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 으로 변환합니다. + Boolean에 대한 문자열 표현, 즉 "true" 또는 "false"입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Byte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Char의 문자열 표현입니다. + 변환할 값입니다. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + + 값 처리 방법을 지정하는 값 중 하나입니다. + The value is not valid. + The or value is null. + + + 제공된 으로 변환합니다. + 제공된 표현입니다. + 변환될 입니다. + + + 제공된 을 지정된 형식의 으로 변환합니다. + 제공된 을 지정된 형식으로 나타낸 입니다. + 변환될 입니다. + + 를 변환할 대상 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + + + 으로 변환합니다. + Decimal의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Double의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Guid의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int64의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + SByte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Single의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + TimeSpan의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt64의 문자열 표현입니다. + 변환할 값입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 TimeSpan 값입니다. + 변환할 문자열입니다.형식 문자열은 기간에 대한 W3C XML Schema Part 2: Datatypes 권장 사항을 준수해야 합니다. + + is not in correct format to represent a TimeSpan value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 해당 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 이름인지 확인합니다. + 이름입니다. 단, 이름이 올바른 XML 이름인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is not a valid XML name. + + is null or String.Empty. + + + 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 NCName인지 확인합니다.NCName은 콜론이 포함될 수 없는 이름입니다. + 이름입니다. 단, 이름이 올바른 NCName인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C XML Schema Part2: Datatypes 권장 사항을 기준으로 문자열이 올바른 NMTOKEN인지 확인합니다. + 이름 토큰입니다. 단, 문자열이 올바른 NMTOKEN인 경우에 한합니다. + 확인할 문자열입니다. + The string is not a valid name token. + + is null. + + + 문자열 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열 인스턴스를 반환합니다. + 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열을 반환합니다. + 유효성을 검사할 ID가 포함된 입니다. + + + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환합니다. + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환하고, 그렇지 않으면 null을 반환합니다. + 확인할 입니다. + + + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 확인할 문자가 포함된 입니다. + + + 문자열과 사이에 변환할 때 시간 값을 처리하는 방법을 지정합니다. + + + 현지 시간으로 처리합니다. 개체가 UTC(Coordinated Universal Time)를 나타내면 값을 현지 시간으로 변환합니다. + + + 변환할 때 표준 시간대 정보를 유지합니다. + + + + 을 문자열로 변환하는 경우 값을 현지 시간으로 처리합니다. + + + UTC로 처리합니다. 개체가 현지 시간을 나타내면 값을 UTC로 변환합니다. + + + 마지막 예외에 대한 자세한 정보를 반환합니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 오류 메시지를 사용하여 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 조건에 대한 설명입니다. + XmlException을 throw한 입니다.이 값은 null일 수 있습니다. + + + 지정된 메시지, 내부 예외, 줄 번호 및 줄 위치를 갖는 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + 현재 예외의 원인이 되는 예외입니다.이 값은 null일 수 있습니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 오류가 발생한 곳을 나타내는 줄 번호를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + + + 오류가 발생한 곳을 나타내는 줄 위치를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 현재 예외를 설명하는 메시지를 가져옵니다. + 예외에 대한 이유를 설명하는 오류 메시지입니다. + + + 컬렉션에 대한 네임스페이스를 확인, 추가 및 제거하고 이 네임스페이스에 대한 범위 관리를 제공합니다. + + + 지정된 을 사용하여 클래스의 새 인스턴스를 초기화합니다. + 사용할 입니다. + null is passed to the constructor + + + 지정된 네임스페이스를 컬렉션에 추가합니다. + 추가할 네임스페이스와 관련된 접두사입니다.기본 네임스페이스를 추가하려면 String.Empty를 사용합니다.참고XPath(XML Path Language) 식에서 네임스페이스를 확인하는 데 를 사용할 경우에는 접두사를 지정해야 합니다.XPath 식에 접두사가 없으면 네임스페이스 URI(Uniform Resource Identifier)를 빈 네임스페이스로 간주합니다.XPath 식 및 에 대한 자세한 내용은 메서드를 참조하세요. + 추가할 네임스페이스입니다. + The value for is "xml" or "xmlns". + The value for or is null. + + + 기본 네임스페이스의 네임스페이스 URI를 가져옵니다. + 기본 네임스페이스의 네임스페이스 URI를 반환하거나, 기본 네임스페이스가 없을 경우에는 String.Empty를 반환합니다. + + + + 에서 네임스페이스를 반복하는 데 사용할 열거자를 반환합니다. + + 가 저장하는 접두사가 포함된 입니다. + + + 현재 범위 내에 있는 네임스페이스를 열거하는 데 사용할 수 있는 접두사가 붙은 네임스페이스 이름 컬렉션을 가져옵니다. + 현재 범위 내에 있는 네임스페이스 및 접두사 쌍 컬렉션입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 열거형 값입니다. + + + 제공한 접두사에 현재 푸시된 범위에 정의한 네임스페이스가 있는지를 나타내는 값을 가져옵니다. + 정의된 네임스페이스가 있으면 true이고, 그렇지 않으면 false입니다. + 찾으려는 네임스페이스의 접두사입니다. + + + 지정된 접두사의 네임스페이스 URI를 가져옵니다. + + 의 네임스페이스 URI를 반환하거나, 매핑된 네임스페이스가 없을 경우에는 null을 반환합니다.반환되는 문자열은 원자화됩니다.원자화된 문자열에 대한 자세한 내용은 클래스를 참조하세요. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 String.Empty를 전달합니다. + + + 지정된 네임스페이스 URI에 대해 선언한 접두사를 찾습니다. + 일치하는 접두사입니다.매핑된 접두사가 없으면 메서드에서 String.Empty를 반환합니다.null 값이 제공되면 null이 반환됩니다. + 접두사에 대해 확인할 네임스페이스입니다. + + + 이 개체와 연결된 을 가져옵니다. + 이 개체에서 사용한 입니다. + + + 스택에서 네임스페이스 범위를 팝합니다. + 스택에 네임스페이스 범위가 남아 있으면 true이고, 팝할 네임스페이스가 없으면 false입니다. + + + 스택에 네임스페이스 범위를 푸시합니다. + + + 지정된 접두사의 지정된 네임스페이스를 제거합니다. + 네임스페이스의 접두사입니다. + 지정된 접두사의 제거할 네임스페이스입니다.네임스페이스는 현재 네임스페이스 범위에서 제거됩니다.현재 범위를 벗어난 네임스페이스는 무시됩니다. + The value of or is null. + + + 네임스페이스 범위를 정의합니다. + + + 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.여기에는 항상 암시적으로 선언되는 xmlns:xml 네임스페이스가 포함됩니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 항상 암시적으로 선언되는 xmlns:xml 네임스페이스를 제외하고 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 현재 노드에서 로컬로 정의된 모든 네임스페이스입니다. + + + 원자화된 문자열 개체의 테이블입니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다.길이가 0이면 String.Empty가 반환됩니다. + 추가할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 인덱스이며 배열에서 0부터 시작합니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다. + 추가할 이름입니다. + + 가 null입니다. + + + 파생 클래스에서 재정의할 경우 지정된 배열에 있는 지정된 범위의 문자와 같은 문자를 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.가 0이면 String.Empty가 반환됩니다. + 검색할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정된 문자열과 같은 값을 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다. + 검색할 이름입니다. + + 가 null입니다. + + + 노드 형식을 지정합니다. + + + 특성입니다(예를 들어, id='123'). + + + CDATA 섹션입니다(예를 들어, <![CDATA[my escaped text]]>). + + + 주석입니다(예를 들어, <!-- my comment -->). + + + 문서 트리의 루트인 문서 개체를 사용하여 전체 XML 문서에 액세스할 수 있습니다. + + + 문서 단편입니다. + + + 다음 태그를 사용한 문서 형식 선언입니다(예를 들어, <!DOCTYPE...>). + + + 요소입니다(예를 들어, <item>). + + + 끝 요소 태그입니다(예를 들어, </item>). + + + + 의 호출 결과 XmlReader가 대체 엔터티 끝에 도달했을 때 반환됩니다. + + + 엔터티 선업입니다(예를 들어, <!ENTITY...>). + + + 엔터티 참조입니다(예를 들어, &num;). + + + Read 메서드가 호출되지 않은 경우 에 의해 반환됩니다. + + + 문서 형식 선언 표기법입니다(예를 들어, <!NOTATION...>). + + + 처리 명령입니다(예를 들어, <?pi test?>). + + + 복합 콘텐츠 모델에서 태그들 사이의 공백 또는 xml:space="preserve" 범위 내의 공백입니다. + + + 노드의 텍스트 내용입니다. + + + 태그들 사이의 공백입니다. + + + XML 선언입니다(예를 들어, <?xml version='1.0'?>). + + + + 에서 XML 조각을 구문 분석할 때 필요한 모든 컨텍스트 정보를 제공합니다. + + + 지정된 , , 기본 URI, xml:lang, xml:space 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD 하위 집합은 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , 기본 URI, xml:lang, xml:space, 인코딩 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD는 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang 및 xml:space 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang, xml:space 및 인코딩을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 기본URI를 가져오거나 설정합니다. + DTD 파일 확인에 사용할 기본 URI입니다. + + + 문서 형식 선언의 이름을 가져오거나 설정합니다. + 문서 형식 선언의 이름입니다. + + + 인코딩 형식을 가져오거나 설정합니다. + 인코딩 형식을 나타내는 개체입니다. + + + 내부 DTD 하위 집합을 가져오거나 설정합니다. + 내부 DTD 하위집합입니다.예를 들어, 이 속성은 대괄호 <!DOCTYPE doc [...]> 사이에 있는 모든 것을 반환합니다. + + + + 를 가져오거나 설정합니다. + XmlNamespaceManager + + + 문자열을 원자화할 때 사용하는 을 가져옵니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + XmlNameTable + + + public 식별자를 가져오거나 설정합니다. + public 식별자입니다. + + + 시스템 식별자를 가져오거나 설정합니다. + 시스템 식별자입니다. + + + 현재 xml:lang 범위를 가져오거나 설정합니다. + 현재 xml:lang 범위입니다.범위에 xml:lang이 없으면 String.Empty가 반환됩니다. + + + 현재 xml:space 범위를 가져오거나 설정합니다. + xml:space 범위를 나타내는 값입니다. + + + 정규화된 XML 이름을 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 이름을 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + + 지정된 이름과 네임스페이스를 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + 개체의 네임스페이스입니다. + + + 을 제공합니다. + + + 지정된 개체가 현재 개체와 같은지 여부를 확인합니다. + 두 개체가 같은 인스턴스 개체이면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + + + + 에 대한 해시 코드를 반환합니다. + 이 개체에 대한 해시 코드입니다. + + + + 가 비어 있는지 여부를 나타내는 값을 가져옵니다. + 이름과 네임스페이스가 빈 문자열이면 true이고, 그렇지 않으면 false입니다. + + + + 의 정규화된 이름에 대한 문자열 표현을 가져옵니다. + 정규화된 이름의 문자열 표현이거나, 개체에 정의된 이름이 없는 경우 String.Empty입니다. + + + + 의 네임스페이스에 대한 문자열 표현을 가져옵니다. + 네임스페이스의 문자열 표현이거나, 개체에 정의된 네임스페이스가 없는 경우 String.Empty입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 같으면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 다르면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + 개체의 이름입니다. + 개체의 네임스페이스입니다. + + + 빠르고, 캐시되지 않으며 앞으로만 이동 가능한 XML 데이터 액세스를 제공하는 판독기를 나타냅니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 참조 원본. + + + XmlReader 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의되면 현재 노드에 포함된 특성 수를 가져옵니다. + 현재 노드에 포함된 특성의 수입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 기본 URI를 가져옵니다. + 현재 노드의 기본 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 가 이진 콘텐츠 읽기 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + 이진 콘텐츠 읽기 메서드를 구현하면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + true if the implements the method; otherwise false. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 판독기가 엔터티를 구문 분석하고 확인할 수 있는지를 나타내는 값을 가져옵니다. + 판독기가 엔터티를 구문 분석하고 확인할 수 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 새로 만듭니다 인스턴스에서 지정 된 스트림에 사용 하 여 기본 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + + + 새로 만듭니다 인스턴스에 지정 된 스트림 및 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 인스턴스에서 지정된 된 스트림, 설정 및 컨텍스트 정보를 사용 하 여 구문 분석 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다. 는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + + 값이 null인 경우 + + + 새로 만듭니다 설정과 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 .이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 구문 분석에 대 한 지정한 텍스트 판독기, 설정 및 컨텍스트 정보를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + 속성 모두에 값이 포함된 경우.이러한 NameTable 속성 중 하나만 설정하여 사용할 수 있습니다. + + + 지정된 URI를 사용하여 새 인스턴스를 만듭니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 클래스는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + URI가 나타내는 파일이 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 지정 된 URI 및 설정을 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 개체에 지정된 개체는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다.가 null이면 새 개체가 사용됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + URI로 지정된 파일을 찾을 수 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 설정과 지정 된 XML 판독기를 사용 하 여 인스턴스. + 래핑된 개체 주위 지정 된 개체입니다. + 내부 XML 판독기로 사용할 개체입니다. + 새 설정을 인스턴스. 개체의 규칙 수준은 내부 판독기의 규칙 수준과 일치하거나 로 설정되어야 합니다. + + 값이 null인 경우 + + 개체에 지정된 규칙 수준이 내부 판독기의 규칙 수준과 일치하지 않는 경우또는내부 의 상태가 또는 인 경우 + + + 파생 클래스에서 재정의되면 XML 문서에서 현재 노드의 수준을 가져옵니다. + XML 문서의 현재 노드 수준입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 스트림의 끝에 배치되었는지를 나타내는 값을 가져옵니다. + 판독기가 스트림의 맨 끝에 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 인덱스입니다.인덱스는 0부터 시작합니다.첫 번째 특성의 인덱스는 0입니다. + + 이 범위에서 벗어난 경우.음수가 아니어야 하며 특성 컬렉션의 크기보다 작아야합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 값을 비동기적으로 가져옵니다. + 현재 노드의 값입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드에 특성이 있는지를 나타내는 값을 얻습니다. + 현재 노드에 특성이 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드에 가 있는지 여부를 나타내는 값을 가져옵니다. + 현재 판독기가 위치한 노드에 Value가 있으면 true이고, 그렇지 않으면 false입니다.false인 경우 노드의 값은 String.Empty입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성인지를 나타내는 값을 가져옵니다. + 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성이면 true이고, 특성 값이 명시적으로 설정되었으면 false 입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 <MyElement/>와 같은 빈 요소인지 여부를 나타내는 값을 가져옵니다. + 현재 노드가 />로 끝나는 요소(이 XmlNodeType.Element인 경우)이면 true이고, 그렇지 않으면false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 문자열 인수가 유효한 XML 이름인지를 나타내는 값을 반환합니다. + 유효한 이름이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름입니다. + + 값이 null인 경우 + + + 문자열 인수가 유효한 XML 이름 토큰인지를 나타내는 값을 반환합니다. + 유효한 이름 토큰이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름 토큰입니다. + + 값이 null인 경우 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 테스트합니다. + + 가 시작 태그나 빈 요소 태그를 찾으면 true이고, XmlNodeType.Element 이외의 노드 형식을 찾으면 false입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이고 Name 속성이 지정된 문자열과 일치하면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소 Name 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 Name 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소의 LocalName 및 NamespaceURI 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 LocalName 속성과 일치하는 문자열입니다. + 찾은 요소의 NamespaceURI 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 로컬 이름을 가져옵니다. + 접두사를 제거한 현재 노드의 이름입니다.예를 들어, LocalName은 <bk:book> 요소에 대한 book입니다.이름이 없는 노드 형식(예: Text, Comment 등)의 경우 이 속성은 String.Empty를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 요소의 범위에서 네임스페이스 접두사를 확인합니다. + 접두사가 매핑되는 네임스페이스 URI이거나 일치하는 접두사가 없는 경우 null입니다. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 빈 문자열을 전달합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성으로 이동합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수에 음수 값이 있습니다. + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 현재 노드가 콘텐츠 노드(공백 없는 텍스트, CDATA, Element, EndElement, EntityReference 또는 EndEntity)인지 여부를 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다.판독기는 ProcessingInstruction, DocumentType, Comment, Whitespace 또는 SignificantWhitespace 같은 형식의 노드를 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드가 콘텐츠 노드인지를 비동기적으로 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 특성 노드를 포함하는 요소로 이동합니다. + 판독기가 특성에 있으면(특성이 있는 요소로 판독기가 이동하면) true이고, 판독기가 특성에 없으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 첫 번째 특성으로 이동합니다. + 특성이 있으면(판독기가 첫 번째 특성으로 이동하면) true이고, 그렇지 않으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 다음 특성으로 이동합니다. + 다음 특성이 있으면 true이고, 더 이상 특성이 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 정규화된 이름을 가져옵니다. + 현재 노드의 정규화된 이름입니다.예를 들어, Name은 <bk:book> 요소에 대한 bk:book입니다.반환되는 이름은 노드의 에 따라 달라집니다.다음 노드 형식은 나열된 값을 반환합니다.기타 모든 노드 형식은 빈 문자열을 반환합니다.노드 형식 이름 Attribute특성의 이름입니다. DocumentType문서 형식 이름입니다. Element태그 이름입니다. EntityReference참조된 엔터티의 이름입니다. ProcessingInstruction처리 명령의 대상입니다. XmlDeclaration리터럴 문자열 xml입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 배치된 노드의 네임스페이스 URI를 W3C 네임스페이스 사양에 정의된 대로 가져옵니다. + 현재 노드의 네임스페이스 URI이거나 빈 문자열입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 이 구현과 관련된 을 가져옵니다. + 노드 내에 있는 문자열의 원자화된 버전을 가져올 수 있도록 하는 XmlNameTable입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 형식을 가져옵니다. + 현재 노드의 형식을 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드와 관련된 네임스페이스 접두사를 가져옵니다. + 현재 노드와 관련된 네임스페이스 접두사입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 스트림에서 다음 노드를 읽습니다. + true다음 노드를 읽었으면 하는 경우 그렇지 않은 경우 false. + XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 스트림에서 다음 노드를 비동기적으로 읽습니다. + 다음 노드를 읽었으면 true이고, 더 이상 읽을 노드가 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 하나 이상의 Text, EntityReference 또는 EndEntity 노드로 특성 값을 구문 분석합니다. + 반환할 노드가 있으면 true입니다.처음 호출할 때 판독기가 Attribute 노드에 있거나 모든 특성 값을 읽었으면 false입니다.misc=""와 같은 빈 특성은 true를 반환하며 이것은 단일 노드가 String.Empty의 값을 갖는 것을 의미합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다.예를 들어, 개체를 xs:string으로 변환할 때 이 개체를 사용할 수 있습니다.이 값은 null일 수 있습니다. + 콘텐츠가 대상 형식에 맞지 않는 형식인 경우 + 시도된 캐스팅이 잘못된 경우 + + 값이 null인 경우 + 현재 노드가 지원되는 노드 형식이 아닌 경우.자세한 내용은 아래 표를 참조하십시오. + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 비동기적으로 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 Boolean으로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 배정밀도 부동 소수점 숫자로 읽습니다. + 텍스트 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 단정밀도 부동 소수점 숫자로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 32비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 64비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 비동기적으로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소 콘텐츠를 요청된 형식으로 비동기적으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 배정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 32비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 32비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 64비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 64비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 콘텐츠 노드가 끝 태그인지 확인하고 판독기를 다음 노드로 이동합니다. + 현재 노드가 끝 태그가 아니거나 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 태그를 포함한 모든 콘텐츠를 문자열로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다.현재 노드가 요소나 특성이 아니면 빈 문자열이 반환됩니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 태그를 포함한 모든 콘텐츠를 문자열로 비동기적으로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 태그를 포함하여 이 노드 및 모든 자식 노드를 나타내는 콘텐츠를 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 노드 및 이 노드의 모든 자식을 나타내는 태그를 포함한 콘텐츠를 비동기적으로 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드가 요소인지 확인하고 판독기를 다음 노드로 진행합니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 을 가진 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 정규화된 이름입니다. + 입력 스트림에 잘못된 XML이 있는 경우 또는 이 요소의 는 주어진 에 매치되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 가 있는 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 입력 스트림에 잘못된 XML이 있는 경우또는검색된 요소의 속성은 주어진 인수와 일치하지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기의 상태를 가져옵니다. + 판독기 상태를 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드와 해당 하위 노드 전체를 읽는 데 사용되는 새 XmlReader 인스턴스를 반환합니다. + 로 설정 된 새 XML 판독기 인스턴스 .호출 된 메서드를 호출 하기 전에 현재 노드 였던 노드에 새 판독기가 배치는 메서드. + 이 메서드가 호출 될 때 XML 판독기 요소에 배치 되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 정규화 이름을 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.를 호출했을 때 가 요소에 배치되어 있지 않으면 이 메서드가 false를 반환하고 의 위치는 변경되지 않습니다. + 판독기를 이동할 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 판독기를 이동할 요소의 로컬 이름입니다. + 판독기를 이동할 하위 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화된 이름의 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름 및 네임스페이스 URI를 사용하는 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화 이름을 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 로컬 이름입니다. + 판독기를 이동할 형제 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + XML 문서에 포함된 큰 텍스트 스트림을 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 현재 노드에 값이 없는 경우, 즉 가 false인 경우 + + 값이 null인 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + XML 데이터가 올바른 형식이 아닌 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + XML 문서에 포함된 큰 텍스트 스트림을 비동기적으로 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 EntityReference 노드에 대한 엔터티 참조를 확인합니다. + 판독기가 EntityReference 노드에 배치되지 않고 판독기의 이 구현에서 엔터티를 확인할 수 없는 경우(가 false를 반환하는 경우) + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + Gets the object used to create this instance. + 이 판독기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 판독기를 만들지 않은 경우 이 속성은 null을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 건너뜁니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 비동기적으로 건너뜁니다. + 현재 노드입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 노드의 텍스트 값을 가져옵니다. + 반환되는 값은 노드의 에 따라 달라집니다.다음 표에서는 반환할 값이 있는 노드 형식을 보여 줍니다.다른 모든 노드 형식은 String.Empty를 반환합니다.노드 형식 값 Attribute특성 값입니다. CDATACDATA 섹션의 콘텐츠입니다. Comment주석의 콘텐츠입니다. DocumentType내부 하위 집합입니다. ProcessingInstruction대상을 제외한 전체 콘텐츠입니다. SignificantWhitespace혼합된 콘텐츠 모델의 태그 간 공백입니다. Text텍스트 노드의 내용입니다. Whitespace태그 사이의 공백입니다. XmlDeclaration선언의 내용입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 CLR(공용 언어 런타임) 형식을 가져옵니다. + 노드의 형식화된 값에 해당하는 CLR 형식입니다.기본값은 System.String입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 가져옵니다. + + 값 중 하나입니다.xml:space 범위가 존재하지 않으면 이 속성은 기본적으로 XmlSpace.None으로 설정됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지 여부를 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 문자 검사를 수행할지를 나타내는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다.참고텍스트 데이터를 처리할 경우 는 이 속성의 설정에 상관없이 XML 이름 및 텍스트 콘텐츠의 유효성을 항상 검사합니다.를 false로 설정하면 문자 엔터티 참조에 대해 문자 검사가 수행되지 않습니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫을지 여부를 나타내는 값을 가져오거나 설정합니다. + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫으면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 에 적용할 규칙 수준을 가져오거나 설정합니다. + XML 판독기를 적용할 규칙 수준을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + DTD 처리를 결정하는 값을 가져오거나 설정합니다. + DTD 처리를 결정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 주석을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 주석을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 처리 명령을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 처리 명령을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 유효하지 않은 공백을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 공백을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 개체의 줄 번호 오프셋을 가져오거나 설정합니다. + 줄 번호 오프셋입니다.기본값은 0입니다. + + + + 개체의 줄 위치 오프셋을 가져오거나 설정합니다. + 선 위치 오프셋입니다.기본값은 0입니다. + + + 문서에서 엔터티 확장 후의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다. + 확장된 엔터티의 최대 허용 문자 수입니다.기본값은 0입니다. + + + XML 문서의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다.값 0은 XML 문서 크기에 제한이 없음을 의미합니다.0이 아닌 값은 최대 크기(문자 수)를 지정합니다. + XML 문서의 최대 허용 문자 수입니다.기본값은 0입니다. + + + 원자화된 문자열을 비교하는 데 사용할 을 가져오거나 설정합니다. + 개체를 사용하여 만든 모든 인스턴스에서 사용하는 원자화된 문자열 전체가 저장되는 입니다.기본값은 null입니다.이 값이 null이면 인스턴스는 비어 있는 새 을 사용합니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + 현재 xml:space 범위를 지정합니다. + + + xml:space 범위가 default입니다. + + + xml:space 범위가 없습니다. + + + xml:space 범위가 preserve입니다. + + + XML 데이터가 포함된 스트림 또는 파일을 생성할 수 있도록 빠르고, 앞으로만 이동 가능하며, 캐시되지 않은 방법을 제공하는 작성기를 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 스트림을 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + The value is null. + + + 스트림과 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + The value is null. + + + + 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버퍼에 있는 항목을 내부 스트림으로 플러시하고 내부 스트림도 플러시합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버퍼에 있는 모든 내용을 내부 스트림으로 비동기적으로 플러시하고 내부 스트림도 플러시합니다. + 비동기 Flush 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스 URI의 현재 네임스페이스 범위에 정의된 가장 비슷한 접두사를 반환합니다. + 일치하는 접두사이거나 현재 범위에 일치하는 네임스페이스 URI가 없는 경우 null입니다. + 찾으려는 접두사를 가진 네임스페이스 URI입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 인스턴스를 만드는 데 사용되는 개체를 가져옵니다. + 이 작성기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 작성기를 만들지 않은 경우 이 속성은 null을 반환합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 의 현재 위치에 있는 모든 특성을 작성합니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 의 현재 위치에서 찾은 모든 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributes 작업을 나타내는 작업입니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름 및 값이 있는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성에 연결할 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributeString 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 Base64로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 Base64로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBase64 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 BinHex로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 BinHex로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBinHex 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 <![CDATA[...]]> 블록을 작성합니다. + CDATA 블록 내부에 배치할 텍스트입니다. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 <![CDATA[...]]> 블록을 비동기적으로 작성합니다. + 비동기 WriteCData 작업을 나타내는 작업입니다. + CDATA 블록 내부에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 유니코드 문자 값의 문자 엔터티를 생성하게 합니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 유니코드 문자 값에 대한 문자 엔터티가 비동기적으로 생성되도록 합니다. + 비동기 WriteCharEntity 작업을 나타내는 작업입니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 번에 한 버퍼씩 텍스트를 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 번에 한 버퍼씩 텍스트를 비동기적으로 씁니다. + 비동기 WriteChars 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 주석(<!--...-->)을 작성합니다. + 주석 내에 배치할 텍스트입니다. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 주석<!--...-->을 비동기적으로 작성합니다. + 비동기 WriteComment 작업을 나타내는 작업입니다. + 주석 내에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이름 및 선택적 특성이 있는 DOCTYPE 선언을 작성합니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 이름과 선택적 특성을 사용하여 DOCTYPE 선언을 비동기적으로 작성합니다. + 비동기 WriteDocType 작업을 나타내는 작업입니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 씁니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 비동기적으로 작성합니다. + 비동기 WriteElementString 작업을 나타내는 작업입니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 이전 호출을 닫습니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이전 호출을 비동기적으로 닫습니다. + 비동기 WriteEndAttribute 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 열려 있는 모든 요소나 특성을 닫고 작성기를 다시 시작 상태로 설정합니다. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 열려 있는 모든 요소나 특성을 비동기적으로 닫고 작성기를 시작 상태로 설정합니다. + 비동기 WriteEndDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 &name; 같이 엔터티 참조를 작성합니다. + 엔터티 참조의 이름입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 엔터티 참조를 &name;으로 비동기적으로 작성합니다. + 비동기 WriteEntityRef 작업을 나타내는 작업입니다. + 엔터티 참조의 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteFullEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteName 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 NmToken이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 NmToken이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteNmToken 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 비동기적으로 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 비동기 WriteNode 작업을 나타내는 작업입니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 <?name text?> 같이 이름과 텍스트 사이에 공백이 있는 처리 명령을 작성합니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이름과 텍스트 사이의 공백을 사용하여 처리 명령을 비동기적으로 씁니다(예: <?name text?>). + 비동기 WriteProcessingInstruction 작업을 나타내는 작업입니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스로 한정된 이름을 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 네임스페이스로 한정된 이름을 비동기적으로 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 비동기 WriteQualifiedName 작업을 나타내는 작업입니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 문자 버퍼에서 원시 태그를 직접 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 문자열에서 원시 태그를 직접 작성합니다. + 작성할 텍스트를 포함하는 문자열입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 문자 버퍼에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 문자열에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 작성할 텍스트를 포함하는 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름을 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 비동기적으로 작성합니다. + 비동기 WriteStartAttribute 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"인 XML 선언을 작성합니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"이고 독립형 특성이 포함된 XML 선언을 작성합니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버전 "1.0"을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 버전 "1.0"과 독립형 특성을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름을 사용하여 시작 태그를 작성합니다. + 요소의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스에 연결합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다.이 네임스페이스가 이미 범위에 있고 관련된 접두사가 있는 경우 작성기는 해당 접두사도 자동으로 작성합니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스 및 접두사에 연결합니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 시작 태그를 비동기적으로 작성하고 주어진 네임스페이스 및 접두사와 연결합니다. + 비동기 WriteStartElement 작업을 나타내는 작업입니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 작성기의 상태를 가져옵니다. + + 값 중 하나입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되는 경우 지정된 텍스트 콘텐츠를 작성합니다. + 쓸 텍스트입니다. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 텍스트 콘텐츠를 비동기적으로 작성합니다. + 비동기 WriteString 작업을 나타내는 작업입니다. + 쓸 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 생성하고 작성합니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 비동기적으로 생성하고 작성합니다. + 비동기 WriteSurrogateCharEntity 작업을 나타내는 작업입니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 개체 값을 씁니다. + 쓸 개체 값입니다.참고   .NET Framework 3.5 릴리스에서 이 메서드는 을 매개 변수로 받습니다. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 단정밀도 부동 소수점 숫자를 씁니다. + 쓸 단정밀도 부동 소수점 숫자입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 공백을 작성합니다. + 공백 문자의 문자열입니다. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 공백을 비동기적으로 작성합니다. + 비동기 WriteWhitespace 작업을 나타내는 작업입니다. + 공백 문자의 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 나타내는 를 가져옵니다. + 현재 xml:space 범위를 나타내는 XmlSpace입니다.값 의미 Nonexml:space 범위가 없는 경우 기본값입니다.Default현재 범위가 xml:space="default"입니다.Preserve현재 범위가 xml:space="preserve"입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지를 나타내는 값을 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + XML 작성기가 문서의 모든 문자가 W3C XML 1.0 권장 사항의 "2.2 문자"를 따르는지 확인해야 하는 경우 표시하는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + + 메서드를 호출한 경우 가 내부 스트림 또는 도 함께 닫을지를 나타내는 값을 가져오거나 설정합니다. + 내부 스트림 또는 를 함께 닫으려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + XML 작성기가 XML 출력을 확인하는 규칙 수준을 가져오거나 설정합니다. + 규칙 수준(문서, 조각 또는 자동 검색)을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 사용할 텍스트 인코딩의 형식을 가져오거나 설정합니다. + 사용할 텍스트 인코딩입니다.기본값은 Encoding.UTF8입니다. + + + 요소의 들여쓰기 여부를 나타내는 값을 가져오거나 설정합니다. + 새 줄에 개별 요소를 들여 쓰면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 들여쓰기에 사용할 문자열을 가져오거나 설정합니다.이 설정은 속성이 true로 설정된 경우에 사용됩니다. + 들여쓰기에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 공백 두 개입니다. + The value assigned to the is null. + + + XML 콘텐츠를 쓸 때 에서 중복된 네임스페이스 선언을 제거할지를 표시하는 값을 가져오거나 설정합니다.기본 동작은 작성기에서 작성기의 네임스페이스 확인자에 있는 모든 네임스페이스 선언을 출력하는 것입니다. + + 에서 중복된 네임스페이스 선언을 제거할지를 지정하는 데 사용되는 열거형입니다. + + + 줄 바꿈에 사용할 문자열을 가져오거나 설정합니다. + 줄 바꿈에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 \r\n(캐리지 리턴, 줄 바꿈)입니다. + The value assigned to the is null. + + + 줄 바꿈을 출력에 정규화할지를 나타내는 값을 가져오거나 설정합니다. + + 값 중 하나입니다.기본값은 입니다. + + + 특성을 새 줄에 쓸지를 나타내는 값을 가져오거나 설정합니다. + 특성을 개별 줄에 쓰려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다.참고 속성 값이 false인 경우에는 이 설정을 적용해도 효과가 없습니다.를 true로 설정하면 각 특성 앞에 줄 바꿈과 한 수준 들여쓰기가 추가됩니다. + + + XML 선언을 생략할지를 나타내는 값을 가져오거나 설정합니다. + XML 선언을 생략하려면 true이고, 그렇지 않으면 false입니다.기본값은 false로, XML 선언이 작성됩니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + + 메서드가 호출될 때 가 닫히지 않은 모든 요소 태그에 닫는 태그를 추가할지를 나타내는 값을 가져오거나 설정합니다. + 닫히지 않은 모든 요소 태그가 닫히면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + XML 스키마의 메모리 내 표현으로 W3C(World Wide Web Consortium)XML 스키마 파트 1: 구조 및 XML 스키나 파트 2: 데이터 형식 사양을 참조하세요. + + + 특성이나 요소를 네임스페이스 접두사로 한정해야 하는지 여부를 나타냅니다. + + + 스키마에 요소 및 특성 형식을 지정하지 않습니다. + + + 요소와 특성을 네임스페이스 접두사로 한정해야 합니다. + + + 요소와 특성을 네임스페이스 접두사로 한정할 필요는 없습니다. + + + XML serialization 및 deserialization을 위한 사용자 지정 서식을 제공합니다. + + + 이 메서드는 예약되어 있으므로 사용해서는 안 됩니다.IXmlSerializable 인터페이스를 구현할 때 이 메서드에서 null(Visual Basic에서는 Nothing)을 반환해야 하지만 사용자 지정 스키마를 지정해야 하는 경우에는 를 클래스에 적용합니다. + + 메서드에 의해 생성되고 메서드가 사용하는 개체의 XML 표현을 설명하는 입니다. + + + 개체의 XML 표현에서 개체를 생성합니다. + 개체가 deserialize되는 스트림입니다. + + + 개체를 XML 표현으로 변환합니다. + 개체가 serialize되는 스트림입니다. + + + 형식에 적용되는 경우 XML 스키마를 반환하는 형식의 정적 메서드 이름과 형식의 serialization을 제어하는 (익명 형식의 경우 )을 저장합니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드 이름을 가져와서 클래스의 새 인스턴스를 초기화합니다. + 구현되어야 하는 정적 메서드의 이름입니다. + + + 대상 클래스가 와일드카드이거나 클래스의 스키마에 xs:any 요소만 포함되어 있는지 여부를 확인하는 값을 가져오거나 설정합니다. + 클래스가 와일드카드이거나 스키마에 xs:any 요소만 있으면 true이고, 그렇지 않으면 false입니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드의 이름과 해당 XML 스키마 데이터 형식의 이름을 가져옵니다. + XML 스키마를 반환하기 위해 XML 인프라에서 호출하는 메서드의 이름입니다. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ru/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ru/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..800bf63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/ru/System.Xml.ReaderWriter.xml @@ -0,0 +1,2600 @@ + + + + System.Xml.ReaderWriter + + + + Задает количество проверок ввода-вывода, которые выполняют объекты и . + + + Объект или автоматически определяет, проверять ли весь документ или фрагмент документа, и выполняет соответствующую проверку.В случае использования программы-оболочки для другого объекта или внешний объект не выполняет никаких дополнительных проверок на соответствие.Проверка на соответствие выполняется базовым объектом.Сведения об определении уровня соответствия см. в описании свойств и . + + + Данные XML соответствуют правилам для XML-документов версии 1.0 с правильным форматом в соответствии с определением консорциума W3C. + + + Данные XML являются XML-фрагментом с правильным форматом в соответствии с определением консорциума W3C. + + + Задает параметры обработки DTD.Перечисление используется классом . + + + Элемент DOCTYPE будет проигнорирован.Обработка DTD выполнена не будет. + + + Указывает, что при обнаружении DTD будет создано исключение с сообщением о том, что DTD запрещены.Это поведение установлено по умолчанию. + + + Предоставляет интерфейс, позволяющий классу возвращать информацию о строке и положении в ней. + + + Возвращает значение, определяющее возможность возвращения классом сведений о строке. + Значение true, если могут быть предоставлены свойства и , в противном случае — false. + + + Получает текущий номер строки. + Номер текущей строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Получает текущее положение строки. + Текущее положение строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Предоставляет доступ только для чтения к набору сопоставлений префиксов и пространств имен. + + + Получает коллекцию определенных соответствий префиксов и пространств имен, которые в настоящий момент находятся в области. + Объект , содержащий все текущие пространства имен в области. + С помощью значения указывается тип узлов пространства имен, которые следует возвратить. + + + Получает универсальный код ресурса (URI) пространства имен, соответствующий заданному префиксу. + URI пространства имен, сопоставленное с префиксом; null, если префикс не сопоставлен с URI пространства имен. + Префикс, URI пространства имен которого нужно найти. + + + Получает префикс, соответствующий заданному универсальному коду ресурса (URI) пространства имен. + Префикс, сопоставленный URI пространства имен; null если URI пространства имен не сопоставлено с префиксом. + URI пространства имен, префикс которого нужно найти. + + + Указывает, нужно ли удалять дубликаты объявлений в объекте . + + + Указывает, что удалять дубликаты объявлений не будут удалены. + + + Указывает, что дубликаты объявлений будут удалены.Чтобы дубликат пространства имен был удален, должны совпадать префиксы пространств имен. + + + Реализует однопотоковый объект . + + + Инициализирует новый экземпляр класса NameTable. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий добавляемую строку. + Отсчитываемый от нуля индекс в массиве, задающий первый символ строки. + Количество знаков в строке. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable. + Строка для добавления. + Параметр имеет значение null. + + + Получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в данном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Получает атомизированную строку с заданным значением. + Объект атомизированной строки или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает способ обработки разрывов строк. + + + Символы новой строки преобразовываются.Благодаря этому параметру сохраняются все символы, когда результат читается нормализующим считывателем . + + + Символы новой строки не меняются.Выходные данные совпадают со входными. + + + Знаки новой строки заменяются для обеспечения соответствия со знаком, указанным в свойстве . + + + Задает состояние читателя. + + + Вызван метод . + + + Конец файла успешно достигнут. + + + Произошла ошибка, препятствующая продолжению операции чтения. + + + Метод Read не был вызван. + + + Вызван метод Read.Для читателя можно вызвать дополнительные методы. + + + Задает состояние объекта . + + + Указывает, что значение атрибута записывается. + + + Указывает, что был вызван метод . + + + Указывает, что содержимое элемента записывается. + + + Указывает, что открывающий тег элемента записывается. + + + Было сгенерировано исключение, которое оставило объект в недопустимом состоянии.Можно вызвать метод , чтобы перевести объект в состояние .Вызов любого другого метода приведет к созданию исключения . + + + Указывает, что пролог записывается. + + + Указывает, что метод Write еще не вызван. + + + Кодирует и декодирует имена XML и предоставляет методы для преобразования между типами общеязыковой среды выполнения и типами языков определения схем XML (XSD).При преобразовании типов данных возвращаемые значения не зависят от языкового стандарта. + + + Декодирует имя.Этот метод изменяет действие методов и на обратное. + Декодированное имя. + Преобразуемое имя. + + + Преобразует имя в допустимое локальное имя XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует имя в допустимое имя XML. + Возвращает имя с любыми недопустимыми знаками, замещенными escape-строкой. + Преобразуемое имя. + + + Проверяет допустимость имени на соответствие со спецификацией XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует в эквивалент . + Значение Boolean равно true или false. + Преобразуемая строка. + + is null. + + does not represent a Boolean value. + + + Преобразует в эквивалент . + Эквивалент строки Byte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Значение Char, представляющее отдельный знак. + Строка, содержащая отдельный преобразуемый знак. + The value of the parameter is null. + The parameter contains more than one character. + + + Преобразует в с помощью указанного + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, следует ли преобразовывать данные в локальное время или сохранять их во времени в формате UTC, если дата в формате UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка.Примечание.   Строка должна соответствовать подмножеству в соответствии с рекомендацией W3C для типа XML dateTime.Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Формат, из которого преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по этому формату. + + is null. + + or is an empty string or is not in the specified format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Массив форматов, из которого можно преобразовать параметр .Каждый формат в параметре может быть любым подмножеством в соответствии с рекомендациями консорциума W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по одному из этих форматов. + + + Преобразует в эквивалент . + Эквивалент строки Decimal. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Double. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Guid. + Преобразуемая строка. + + + Преобразует в эквивалент . + Эквивалент строки Int16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки SByte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Single. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует объект в значение типа . + Строковое представление Boolean, то есть true или false. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Byte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Char. + Преобразуемое значение. + + + Преобразует объект в объект с помощью заданного значения . + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, как следует обрабатывать значение . + The value is not valid. + The or value is null. + + + Преобразует предоставленную структуру в объект . + Представление для предоставленной структуры . + Преобразуемая структура . + + + Преобразует предоставленную структуру в объект в указанном формате. + Представление в указанном формате предоставленной структуры . + Преобразуемая структура . + Формат, в который преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Преобразует объект в значение типа . + Строковое представление объекта Decimal. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Double. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Guid. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int64. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта SByte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Single. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта TimeSpan. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt64. + Преобразуемое значение. + + + Преобразует в эквивалент . + Эквивалент строки TimeSpan. + Преобразуемая строка.Формат строки должен соответствовать рекомендации по продолжительности в зависимости от типа данных W3C XML-схемы (часть 2). + + is not in correct format to represent a TimeSpan value. + + + Преобразует в эквивалент . + Эквивалент строки UInt16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Проверяет допустимость имени в соответствии с рекомендацией W3C XML. + Имя, если это допустимое имя XML. + Имя для проверки. + + is not a valid XML name. + + is null or String.Empty. + + + Проверяет, что имя является допустимым именем NCName в соответствии с рекомендациями по XML консорциума W3C.NCName — это имя, которое не может содержать двоеточия. + Указанное имя не является допустимым именем NCName. + Имя для проверки. + + is null or String.Empty. + + is not a valid non-colon name. + + + Проверяет, является ли строка допустимым NMTOKEN, в соответствии с рекомендацией по типам данных W3C XML-схемы (часть 2). + Токен имени, если это допустимый NMTOKEN. + Строка, которую следует проверить. + The string is not a valid name token. + + is null. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками открытых идентификаторов. + Возвращает переданную строку, если все знаки в аргументе являются допустимыми знаками открытых идентификаторов. + Объект , содержащий идентификатор для проверки. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями. + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями; в противном случае возвращает значение null. + Объект для проверки. + + + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Объект , содержащий знаки для проверки. + + + Определяет способ обработки значения времени при преобразовании между строками и объектами . + + + Обрабатывать как местное время.Если объект представляет время в формате UTC, оно будет преобразовано в местное время. + + + Данные о часовом поясе необходимо сохранять при преобразовании. + + + Обрабатывать как местное время, если объект преобразовывается в строку. + + + Обрабатывать как время в формате UTC.Если объект представляет местное время, оно будет преобразовано во время в формате UTC. + + + Подробные сведения о последнем исключении. + + + Инициализирует новый экземпляр класса XmlException. + + + Инициализирует новый экземпляр класса XmlException, используя указанное сообщение об ошибке. + Описание ошибки. + + + Инициализирует новый экземпляр класса XmlException. + Описание условий возникновения ошибки. + + , породивший XmlException (при наличии).Это значение может быть равно null. + + + Инициализирует новый экземпляр класса XmlException, используя заданное сообщение, внутреннее исключение, номер строки и позицию в строке. + Описание ошибки. + Исключение, которое вызвало текущее исключение.Это значение может быть равно null. + Номер строки, показывающий, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает номер строки, показывающий, где произошла ошибка. + Номер строки, показывающий, где произошла ошибка. + + + Получает размещение строки, показывающее, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает сообщение, которое описывает текущее исключение. + Сообщение об ошибке с объяснением причин исключения. + + + Разрешает, добавляет и удаляет пространства имен из коллекции и обеспечивает управление областью для этих пространств имен. + + + Выполняет инициализацию нового экземпляра класса с заданным объектом . + Используемый . + null is passed to the constructor + + + Добавляет заданное пространство имен в коллекцию. + Префикс, который требуется связать с добавляемым пространством имен.Используйте String.Empty для добавления пространства имен по умолчанию.Примечание.Если объект будет использоваться для разрешения пространств имен в выражении языка XPath, необходимо указать префикс.Если выражение XPath не содержит префикс, предполагается, что универсальным кодом ресурса (URI) для пространства имен является пустое пространство имен.Дополнительные сведения о выражениях языка XPath и см. в разделах с описанием методов и . + Добавляемое пространство имен. + The value for is "xml" or "xmlns". + The value for or is null. + + + Возвращает универсальный код ресурса (URI) для пространства имен по умолчанию. + Возвращает URI для пространства имен по умолчанию или String.Empty, если пространство имен по умолчанию отсутствует. + + + Возвращает перечислитель для выполнения итерации по пространствам имен в объекте . + Перечислитель , содержащий префиксы, которые хранятся объектом . + + + Возвращает коллекцию пространств имен, уникальными идентификаторами которых являются префиксы, используемые для перечисления пространств имен в текущей области видимости. + Коллекция пар префикс-пространство имен в текущей области видимости. + Значение перечисления, указывающее тип узлов пространств имен, которые требуется возвратить. + + + Возвращает значение, указывающее, определено ли пространство имен для указанного префикса в текущей области видимости, занесенной в стек. + Значение true, если пространство имен определено; в противном случае — значение false. + Префикс пространства имен, которое нужно найти. + + + Возвращает URI пространства имен для указанного префикса. + Возвращает универсальный код ресурса (URI) пространства имен для префикса или значение null, если нет сопоставленного пространства имен.Возвращаемая строка является атомизированной.Дополнительные сведения об атомизированных строках см. в описании класса . + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать String.Empty. + + + Находит префикс, объявленный для заданного URI пространства имен. + Соответствующий префикс.Если нет сопоставленного префикса, данный метод возвращает String.Empty.Если предоставляется значение NULL, возвращается то же значение null. + Пространство имен, которое необходимо разрешить для получения префикса. + + + Получает , связанную с данным объектом. + + , используемая данным объектом. + + + Извлекает из стека область видимости пространства имен. + Значение true, если в стеке остались области пространств имен; значение false, если больше нет пространств имен, которые требуется извлечь. + + + Заносит область видимости пространства имен в стек. + + + Удаляет заданное пространство имен с указанным префиксом. + Префикс пространства имен. + Пространство имен, которое требуется удалить по указанному префиксу.Пространство имен удаляется из текущей области видимости пространств имен.Пространства имен вне текущей области видимости игнорируются. + The value of or is null. + + + Определяет область пространства имен. + + + Все пространства имен, определенные в области текущего узла.Сюда входит пространство xmlns:xml, всегда объявляемое неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные в области текущего узла, кроме пространства xmlns:xml, всегда объявляемого неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные локально для текущего узла. + + + Таблица атомизированных объектов строки. + + + Инициализирует новый экземпляр класса . + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется.Если параметр length имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий добавляемое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется. + Добавляемое имя. + Параметр имеет значение null. + + + При переопределении в производном классе получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в заданном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если параметр имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе получает атомизированную строку, содержащую то же значение, что и заданная строка. + Атомизированная строка или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает типа узла. + + + Атрибут (например, id='123' ). + + + Раздел CDATA (например, <![CDATA[my escaped text]]>). + + + Комментарий (например, <!-- my comment --> ). + + + Объект документа, являющийся корневым элементом дерева документов, предоставляет доступ ко всему XML-документу. + + + Фрагмент документа. + + + Объявление типа документа, обозначенное следующим тегом (например, <!DOCTYPE...>). + + + Элемент (например, <item>). + + + Тег конечного элемента (например, </item>). + + + Возвращается, когда объект XmlReader доходит до конца замены сущности в результате вызова . + + + Объявление сущности (например, <!ENTITY...>). + + + Ссылка на сущность (например, &num;). + + + Возвращается объектом , если не был вызван метод Read. + + + Нотация в объявлении типа документа (например, <!NOTATION...>). + + + Инструкция по обработке (например, <?pi test?>). + + + Пробел между элементами разметки в смешанной модели содержимого или пробел в области xml:space="preserve". + + + Текстовое содержимое узла. + + + Пробел между разметкой. + + + Объявление XML (например, <?xml version='1.0'?>). + + + Предоставляет все контекстные данные, необходимые для анализа фрагмента XML. + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.Набор DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang, кодировки и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью заданных значений , , xml:lang и xml:space. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , xml:lang, xml:space и кодировки. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Получает или задает базовый URI. + Базовый URI, используемый для разрешения файла DTD. + + + Получает или задает имя объявления типа документа. + Имя объявления типа документа. + + + Получает или задает тип кодировки. + Объект , показывающий тип кодировки. + + + Получает или задает внутренний набор DTD. + Внутренний набор DTD.Например, данное свойство возвращает содержимое между квадратными скобками <!DOCTYPE doc [...]>. + + + Получает или задает объект . + XmlNamespaceManager. + + + Получает класс , используемый для разъединения строк.Дополнительные сведения о разъединенных строках см. в разделе . + XmlNameTable. + + + Получает или задает открытый идентификатор. + Открытый идентификатор. + + + Получает или задает идентификатор системы. + Идентификатор системы. + + + Получает или задает текущую область xml:lang. + Текущая ограниченная область действия xml:lang.Если в области отсутствует xml:lang, возвращается значение String.Empty. + + + Получает или задает текущую область xml:space. + Значение , показывающее область xml:space. + + + Представляет полное имя XML. + + + Инициализирует новый экземпляр класса . + + + Инициализирует новый экземпляр класса с указанным именем. + Локальное имя, используемое в качестве имени объекта . + + + Инициализирует новый экземпляр класса с заданными именем и пространством имен. + Локальное имя, используемое в качестве имени объекта . + Пространство имен для объекта . + + + Предоставляет пустое полное имя . + + + Определяет, равен ли заданный объект текущему объекту . + Значение true, если оба объекта являются одним и тем же объектом экземпляра; в противном случае — значение false. + Объект для сравнения. + + + Возвращает хэш-код для . + Хэш-код объекта. + + + Получает значение, определяющее, пуст ли объект . + Значение true, если имя и пространство имен представляют собой пустые строки; в противном случае — значение false. + + + Получает строковое представление полного имени объекта . + Строковое представление полного имени или String.Empty, если для объекта не определено имя. + + + Получает строковое представление пространства имен для объекта . + Строковое представление пространства имен или String.Empty, если для объекта не определено пространство имен. + + + Сравнивает два объекта . + Значение true, если у двух объектов совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Сравнивает два объекта . + Значение true, если у двух объектов не совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + Имя объекта. + Пространство имен объекта. + + + Предоставляет средство чтения, обеспечивающее быстрый прямой доступ (без кэширования) к данным XML.Чтобы просмотреть исходный код .NET Framework для этого типа, см. ссылки на источник. + + + Инициализирует новый экземпляр класса XmlReader. + + + Когда переопределено в производном классе, возвращает количество атрибутов текущего узла. + Количество атрибутов текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает базовый URI текущего узла. + Базовый URI текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает значение, указывающее, реализует ли объект методы чтения двоичного содержимого. + Значение true, если реализуются методы чтения двоичного содержимого; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, указывающее, реализует ли объект метод . + Значение true, если объект реализует метод ; в противном случае false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, способно ли данное средство чтения выполнять синтаксический анализ и разрешение сущностей. + Значение true, если средство чтения позволяет анализировать и разрешать объекты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Создает новый с помощью указанного потока с параметрами по умолчанию. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + + + Создает новый экземпляра с параметрами и указанного потока. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанные сведения о потоке, параметры и контекст для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра с помощью модуля чтения указанного текста. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средство чтения XML для декодирования потока данных. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения и параметры. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового .Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения, параметры и контекст сведения для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + Значения присвоены как свойству , так и свойству .(Только одно из этих свойств NameTable можно установить и использовать). + + + Создает новый экземпляр с указанным URI. + Объект, используемый для чтения XML-данных в потоке. + URI для файла, содержащего XML-данные.Класс используется для преобразования пути к классическому формату данных. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + Файл, указанный URI, не существует. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанный URI и параметры. + Объект, используемый для чтения XML-данных в потоке. + URI файла с XML-данными.Объект в объекте используется для преобразования пути в стандартный формат данных.Если равно null, используется объект . + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + Не удается найти файл, заданный URI. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанное средство чтения XML и параметры. + Объект, который заключается в оболочку вокруг указанного объекта. + Объект, который требуется использовать в качестве базового средства чтения XML. + Параметры для нового экземпляра.Уровень соответствия объекта должен или быть равным уровню соответствия базового средства чтения, или иметь значение . + Значение параметра — null. + Если объект задает уровень соответствия, который не согласован с уровнем соответствия базового средства чтения.-или-Базовый объект находится в состоянии или . + + + Когда переопределено в производном классе, возвращает глубину текущего узла в XML-документе. + Глубина текущего узла в XML-документе. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + trueЧтобы освободить управляемые и неуправляемые ресурсы; false чтобы освободить только неуправляемые ресурсы. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, показывающее, позиционировано ли средство чтения в конец потока. + Значение true, если средство чтения установлено в конец потока; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута.Этот метод не изменяет позицию средства чтения. + Индекс атрибута.Индексация начинается с нуля.(Индекс первого атрибута равен нулю.) + + выходит за пределы допустимого диапазона.Оно должно быть неотрицательным и меньшим, чем размер коллекции атрибутов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null. + Полное имя атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null.Этот метод не изменяет позицию средства чтения. + Локальное имя атрибута. + URI пространства имен атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно возвращает значение текущего узла. + Значение текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Возвращает значение, показывающее, имеются ли атрибуты у текущего узла. + Значение true, если текущий узел содержит атрибуты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, показывающее, имеет ли текущий узел свойство . + Значение true, если узел, на котором расположено средство чтения, может иметь значение Value; в противном случае — false.Если значение равно false, узел принимает значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, определяющее, является ли текущий узел атрибутом, созданным из значения по умолчанию, определенного в DTD или схеме. + Значение true, если текущий узел является атрибутом, значение которого было создано из значения по умолчанию, определенного в DTD или схеме; значение false, если значение атрибута было задано явно. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, определяющее, является ли текущий узел пустым элементом (например, <MyElement/>). + Значение true, если текущий узел является элементом (свойство имеет значение XmlNodeType.Element), который заканчивается на />; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым именем XML. + Значение true, если имя является допустимым; в противном случае — false. + Имя для проверки. + Значение параметра — null. + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым токеном имени XML. + Значение true, если аргумент является допустимой лексемой имени; в противном случае — false. + Токен имени для проверки. + Значение параметра — null. + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента. + Значение true, если метод находит открывающий тег или пустой тег элемента; значение false, если тип найденного узла отличается от XmlNodeType.Element. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствует ли значение свойства элемента заданному аргументу. + Значение true, если полученный в результате узел является элементом, а свойство Name совпадает с указанной строкой.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойство Name элемента не совпадает с указанной строкой. + Строка противопоставляется значению свойства Name найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствуют ли значения свойств и элемента заданным строкам. + Значение true, если полученный в результате узел является элементом.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойства LocalName и NamespaceURI элемента не совпадают с указанными строками. + Строка, которая противопоставляется значению свойства LocalName найденного элемента. + Строка, которая противопоставляется значению свойства NamespaceURI найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает локальное имя текущего узла. + Имя текущего узла с удаленным префиксом.Например, LocalName имеет значение book для элемента <bk:book>.Для безымянных типов узлов (например, Text, Comment и т. д.) данное свойство возвращает String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, разрешает префикс пространства имен в области видимости текущего элемента. + URI пространства имен, которое отображает префикс, или значение null, если соответствующий префикс не найден. + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать пустую строку. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к атрибуту с указанным индексом. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр имеет отрицательное значение. + + + При переопределении в производном классе перемещает к атрибуту с указанным . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + При переопределении в производном классе перемещает к атрибуту с указанными и . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Проверяет, является ли текущий узел узлом содержимого (текст без пустого пространства, CDATA, Element, EndElement, EntityReference или EndEntity).Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла.Пропускаются узлы следующих типов: ProcessingInstruction, DocumentType, Comment, Whitespace и SignificantWhitespace. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + В асинхронном режиме проверяет, является ли текущий узел узлом содержимого.Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, переходит к элементу, содержащему текущий узел атрибута. + Значение true, если средство чтения находится на атрибуте (средство чтения перемещается к элементу с этим атрибутом); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к первому атрибуту. + Значение true, если атрибут существует (средство чтения перемещается к первому атрибуту); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к следующему атрибуту. + Значение true, если присутствует следующий атрибут; значение false, если другие атрибуты отсутствуют. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает полное имя текущего узла. + Полное имя текущего узла.Например, Name имеет значение bk:book для элемента <bk:book>.Возвращаемое имя зависит от значения свойства узла.Значения возвращаются для представленных ниже типов узлов.Для других типов узлов возвращается пустая строка.Тип узла Имя AttributeИмя атрибута. DocumentTypeИмя типа документа. ElementИмя тега. EntityReferenceИмя сущности, на которую существует ссылка. ProcessingInstructionКонечное приложение инструкции обработки. XmlDeclarationСтрока символов xml. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает URI пространства имен (определенное в спецификации W3C Namespace) узла, на котором расположено средство чтения. + Пространство имен URI текущего узла; в противном случае — пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает класс , связанный с данной реализацией. + Класс XmlNameTable, позволяющий получать в узле разделенную версию строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает тип текущего узла. + Одно из значений перечисления, которые задают тип текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает префикс пространства имен, связанный с текущим узлом. + Префикс пространства имен, связанный с текущим узлом. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе считывает следующий узел из потока. + trueЕсли чтение прошло успешно. в противном случае — false. + При синтаксическом анализе XML возникла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает следующий узел из потока. + Значение true, если чтение прошло успешно; значение false, если отсутствуют узлы для чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разбирает значение атрибута в один или более узлов Text, EntityReference или EndEntity. + Значение true, если присутствуют возвращаемые узлы.Значение false, если средство чтения не расположено на узле атрибута при первом вызове или все значения атрибута считаны.Пустой атрибут (например, misc="") возвращает значение true с отдельным узлом, имеющим значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое объекта указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов.Например, этот объект можно использовать при преобразовании объекта в xs:string.Данное значение может быть null. + Содержимое имеет неверный формат для типа целевого объекта. + Недопустимая попытка приведения. + Значение параметра — null. + Текущий узел не принадлежит к поддерживаемому типу узлов.Дополнительные сведения приведены в таблице ниже. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое как объект указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает декодированные из кодировки Base64 двоичные байты. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущей позиции как значение Boolean. + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Содержимое текста в текущей позиции как объект . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как число с плавающей запятой двойной точности. + Текстовое содержимое в виде числа с плавающей запятой двойной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 32-разрядное целое число со знаком. + Содержимое как 32-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 64-разрядное целое число со знаком. + Содержимое как 64-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как значение . + Текстовое содержимое как самый подходящий объект CLR. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое как самый подходящий объект CLR. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое элемента в качестве требуемого типа. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает содержимое элемента как требуемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое элемента как запрашиваемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой двойной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 32-разрядного целого числа со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 32-разрядное целое число со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 64-разрядного целого числа со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 64-разрядное целое число со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Прочитывает текущий элемент и возвращает содержимое в качестве объекта . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента невозможно преобразовать в запрошенный тип. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел содержимого закрывающим тегом, и позиционирует средство чтения на следующий узел. + Текущий узел не является закрывающим тегом или если во входном потоке обнаружен неверный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, считывает как строку все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка.Если текущий узел не является элементом или атрибутом, возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает в виде строки все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, считывает содержимое, включая разметку, представляющую этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое, включая разметку, представляющее этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел элементом и перемещает модуль чтения к следующему узлу. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным , и перемещает средство чтения на следующий узел. + Полное имя элемента. + В входном потоке обнаружен неправильный XML. -или- элемента не соответствует заданному . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным и , и перемещает средство чтения на следующий узел. + Локальное имя элемента. + Пространство имен URI элемента. + В входном потоке обнаружен неправильный XML.-или-Свойства и найденного элемента не совпадают с предоставленными аргументами. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает состояние средства чтения. + Одно из значений перечисления, указывающее состояние модуля чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает новый экземпляр XmlReader, который может использоваться для считывания текущего узла и всех его потомков. + Установить новый экземпляр средства чтения XML .Вызов метод помещает новый модуль чтения на узел, который был текущим перед вызовом метод. + XML чтения не позиционировано на элементе при вызове этого метода. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Переводит к следующему сопоставленному элементу-потомку с указанным проверенным именем. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Полное имя элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит к следующему элементу-потомку с указанным локальным именем и URI пространства имен. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Локальное имя элемента, на который следует переместиться. + URI пространства имен элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Выполняет чтение до обнаружения элемента с указанным полным именем. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Полное имя элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Выполняет чтение до обнаружения указанных локального имени и URI пространства имен. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Локальное имя элемента. + Пространство имен URI элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Переводит XmlReader к следующему сопоставленному родственному элементу с указанным проверенным именем. + true, если найден сопоставленный родственный элемент; в противном случае — false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Полное имя элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит XmlReader к следующему родственному элементу с указанным локальным именем и URI пространства имен. + Значение true, если найден сопоставленный родственный элемент; в противном случае — значение false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Локальное имя элемента того же уровня, на который следует переместиться. + Универсальный код ресурса (URI) пространства имен элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + У текущего узла нет значения (значение свойства — false). + Значение параметра — null. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Данные XML имеют неправильный формат. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разрешает ссылки для сущностей для узлов EntityReference. + Средство чтения не расположено на узле EntityReference; эта реализация средства чтения не может разрешить сущности (свойство возвращает значение false). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает объект , используемый для создания данного экземпляра . + Объект , использованный для создания этого экземпляра средства чтения.Если это средство чтения не было создано с помощью метода , это свойство возвращает null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Пропускает дочерний узел текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно пропускает дочерние узлы текущего узла. + Текущий узел. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, возвращает текстовое значение текущего узла. + Возвращаемое значение зависит от значения свойства узла.В следующей таблице представлен список возвращаемых типов узлов со значениями.Все прочие типы узлов возвращают значение String.Empty.Тип узла Значение AttributeЗначение атрибута. CDATAСодержимое раздела CDATA. CommentСодержимое комментария. DocumentTypeВнутреннее подмножество. ProcessingInstructionПолное содержимое, исключая конечное приложение. SignificantWhitespaceПустое пространство в разметке модели со смешанным содержимым. TextСодержимое текстового узла. WhitespaceПустое пространство между разметкой. XmlDeclarationСодержимое объявления. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает тип CLR текущего узла. + Тип CLR, соответствующий типизированному значению узла.Значение по умолчанию — System.String. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:space. + Одно из значений .Если ограниченная область действия xml:space отсутствует, данное свойство принимает значение XmlSpace.None. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Задает набор функций, которые должны поддерживаться объектом , создаваемым с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если могут использоваться асинхронные методы; в противном случае — значение false. + + + Возвращает или задает значение, показывающее, осуществляется ли проверка символов. + Значение true — проверка осуществляется; в противном случае — false.Значение по умолчанию — true.ПримечаниеЕсли средство чтения обрабатывает текстовые данные, всегда происходит проверка допустимости XML-имен и текстового содержимого независимо от значения этого свойства.Задание свойству значения false отключает проверку символов для ссылок на сущности символов. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли закрыть основной поток или при закрытии средства чтения. + Значение true — закрыть основной поток или при закрытии средства чтения; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия для . + Одно из значений перечисления, указывающее уровень совместимости, который будет обеспечивать средства чтения XML.Значение по умолчанию — . + + + Получает или задает значение, определяющее обработку определений DTD. + Одно из значений перечисления, которое определяет обработку DTD.Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли игнорировать комментарии. + true — игнорировать комментарии; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, указывающее, следует ли игнорировать инструкции по обработке. + true — игнорировать инструкции обработки; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, определяющее, будут ли игнорироваться незначимые символы-разделители. + Значение true, если пустое пространство будет игнорироваться; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает смещение номера строки объекта . + Смещение номера строки.Значение по умолчанию — 0. + + + Возвращает или задает смещение позиции строки объекта . + Смещение позиции строки.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое количество символов в документе, которые возникают вследствие расширения сущностей. + Наибольшее количество символов вследствие расширения сущностей.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое число символов в XML-документе.Нуль (0) означает отсутствие ограничений на размер XML-документа.Значение, не равное нулю, указывает максимальное количество символов. + Максимально допустимое количество символов в XML-документе.Значение по умолчанию — 0. + + + Возвращает или задает таблицу , используемую для разделенных сравнений строк. + Таблица , в которой хранятся все разделенные строки, используемые экземплярами , созданными с помощью объекта .Значение по умолчанию — null.Созданный экземпляр будет использовать новую пустую таблицу , если это значение будет равно null. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Задает текущую область xml:space. + + + Область xml:space соответствует значению default. + + + Нет области xml:space. + + + Область xml:space соответствует значению preserve. + + + Представляет средство записи, обеспечивающее быстрый прямой способ (без кэширования) создания потоков или файлов, содержащих XML-данные. + + + Инициализирует новый экземпляр класса . + + + Создает новый экземпляр с использованием указанного потока. + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + The value is null. + + + Создает новый экземпляр с помощью потока и объекта . + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + + , в которое необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + + , в который необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного объекта . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + The value is null. + + + Создает новый экземпляр с использованием указанных объектов и . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + Значение true позволяет освободить управляемые и неуправляемые ресурсы; значение false позволяет освободить только неуправляемые ресурсы. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, сохраняет в базовый поток содержимое буфера, а также сохраняет основной поток. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает в базовый поток содержимое буфера и сохраняет базовый поток. + Задача, представляющая асинхронную операцию Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает ближайший префикс, определенный в области видимости текущего пространства имен для URI пространства имен. + Соответствующий префикс или значение null, если в текущей области отсутствует соответствующий URI пространства имен. + URI пространства имен, префикс которого нужно найти. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Получает объект , используемый для создания данного экземпляра . + Объект , используемый для создания этого экземпляра модуля записи.Если это средство записи не было создано с помощью метода , это свойство возвращает null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе записывает все атрибуты, найденные в текущей позиции в объекте . + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает все атрибуты, найденные в текущей позиции в объекте . + Задача, представляющая асинхронную операцию WriteAttributes. + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем и значением. + Локальное имя атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем, URI пространства имен и значением. + Локальное имя атрибута. + URI пространства имен, который связывается с атрибутом. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным префиксом, локальным именем, URI пространства имен и значением. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает атрибут с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteAttributeString. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Задача, представляющая асинхронную операцию WriteBase64. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе преобразует указанный набор двоичных байтов как BinHex и выводит получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно кодирует указанные двоичные байты как BinHex и выводит получившийся текст. + Задача, представляющая асинхронную операцию WriteBinHex. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает блок <![CDATA[...]]>, содержащий заданный текст. + Текст, записываемый в блок CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает блок <![CDATA[...]]>, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteCData. + Текст, записываемый в блок CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вызывает создание сущности знака для указанного значения знака Юникода. + Знак Юникода, для которого создается сущность знака. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно инициирует создание сущности знака для указанного значения знака Юникода. + Задача, представляющая асинхронную операцию WriteCharEntity. + Знак Юникода, для которого создается сущность знака. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает содержимое текстового буфера. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает содержимое текстового буфера. + Задача, представляющая асинхронную операцию WriteChars. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает примечание <!--...-->, содержащее заданный текст. + Текст, записываемый в примечание. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает комментарий <!--...-->, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteComment. + Текст, записываемый в примечание. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Задача, представляющая асинхронную операцию WriteDocType. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает элемент с заданным локальным именем и значением. + Локальное имя элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным локальным именем, URI пространства имен и значением. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным префиксом, локальным именем, универсальный кодом ресурса (URI) пространства имен и значением. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает элемент с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteElementString. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе закрывает предыдущий вызов . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает предыдущий вызов . + Задача, представляющая асинхронную операцию WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + Задача, представляющая асинхронную операцию WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе записывает ссылку на сущность в виде &name;. + Имя ссылки на сущность. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает ссылку на сущность в виде &name;. + Задача, представляющая асинхронную операцию WriteEntityRef. + Имя ссылки на сущность. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteName. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя допустимость NmToken согласно рекомендациям W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя, что это допустимый NmToken, согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteNmToken. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Задача, представляющая асинхронную операцию WriteNode. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Задача, представляющая асинхронную операцию WriteProcessingInstruction. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Локальное имя для записи. + URI пространства имен для имени. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Задача, представляющая асинхронную операцию WriteQualifiedName. + Локальное имя для записи. + URI пространства имен для имени. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вручную записывает из буфера символов необработанные данные для разметки . + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, вручную записывает из строки необработанные данные для разметки. + Строка, содержащая текст для записи. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно, вручную записывает для разметки необработанные данные из буфера символов. + Задача, представляющая асинхронную операцию WriteRaw. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно, вручную записывает необработанные данные для разметки. + Задача, представляющая асинхронную операцию WriteRaw. + Строка, содержащая текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает начало атрибута с заданным локальным именем. + Локальное имя атрибута. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает начало атрибута с заданным локальным именем и URI пространства имен. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает начало атрибута с указанным префиксом, локальным именем и URI пространства имен. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает начало атрибута с заданным префиксом, локальным именем и универсальным кодом ресурса (URI) пространства имен. + Задача, представляющая асинхронную операцию WriteStartAttribute. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0" и отдельным атрибутом. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление XML с номером версии "1.0". + Задача, представляющая асинхронную операцию WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно записывает объявление XML с номером версии "1.0". и отдельным атрибутом. + Задача, представляющая асинхронную операцию WriteStartDocument. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает открывающий тег с указанным локальным именем. + Локальное имя элемента. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен. + Локальное имя элемента. + URI пространства имен, связываемый с элементом.Если пространство имен уже находится в области видимости и с ним связан префикс, средство записи автоматически запишет этот префикс. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Задача, представляющая асинхронную операцию WriteStartElement. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает состояние средства записи. + Одно из значений . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает заданное текстовое содержимое при переопределении в производном классе. + Текст для записи. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает заданное текстовое содержимое. + Задача, представляющая асинхронную операцию WriteString. + Текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, создает и записывает сущность символа-заместителя для пары символов-заместителей. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно создает и записывает сущность символа-заместителя для пары символов-заместителей. + Задача, представляющая асинхронную операцию WriteSurrogateCharEntity. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение объекта. + Значение объекта для записи.Примечание.   С выпуском платформы .NET Framework 3.5 этот метод принимает в качестве параметра. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает число с плавающей запятой одиночной точности. + Число с плавающей запятой одиночной точности для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный символ-разделитель. + Строка символов-разделителей. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный символ-разделитель. + Задача, представляющая асинхронную операцию WriteWhitespace. + Строка символов-разделителей. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе возвращает класс , предоставляющий текущую область xml:space. + Объект XmlSpace, представляющий текущую область xml:space.Значение Значение NoneЗначение, задаваемое по умолчанию, если область xml:space отсутствует.DefaultТекущая область — xml:space=default.PreserveТекущая область — xml:space=preserve. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Задает набор функций, которые должны поддерживаться объектом , созданным с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если асинхронные методы можно использовать; в противном случае — значение false. + + + Получает или задает значение, указывающее, должно ли средство записи XML выполнять проверку на предмет соответствия всех в документе разделу "2.2 Символы" документа W3C Рекомендации по XML 1.0. + Значение true для выполнения проверки символов; в противном случае — значение false.Значение по умолчанию — true. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли объекту закрывать также и базовый поток или при вызове метода . + Значение true, если следует закрыть базовый поток или ; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия, на предмет которого средство записи XML проверяет выходные данные XML. + Одно из значений перечисления, указывающее уровень соответствия (документ, фрагмент или автоматическое обнаружение).Значение по умолчанию — . + + + Возвращает или задает тип используемой кодировки текста. + Используемая кодировка текста.Значение по умолчанию — Encoding.UTF8. + + + Возвращает или задает значение, указывающее, следует ли использовать отступ для элементов. + Значение true, если необходимо записывать отдельные элементы в новых строках с отступом; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает строку символов, используемую для отступов.Этот параметр используется, если значение свойства равно true. + Строка символов, используемая для отступов.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.По умолчанию - два пробела. + The value assigned to the is null. + + + Получает или задает значение, указывающие, должен ли объект при записи содержимого XML удалять дубликаты объявлений пространств имен.По умолчанию средство записи выводит все объявления пространства имен, присутствующие в его сопоставителе пространства имен. + Перечисление , которое указывает, нужно ли удалять дубликаты объявлений пространств имен в объекте . + + + Возвращает или задает строку символов, используемую для разрыва строк. + Строка символов, используемая для разрыва строк.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.Значение по умолчанию — \r\n (возврат каретки, новая строка). + The value assigned to the is null. + + + Возвращает или задает значение, указывающее, следует ли осуществлять нормализацию разрывов строк в выходных данных. + Одно из значений .Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли записывать атрибуты на новой строке. + Значение true, если необходимо записывать атрибуты в отдельные строки; в противном случае — значение false.Значение по умолчанию — false.ПримечаниеЭтот параметр ни на что не влияет, если значение свойства равно false.Если значение объекта равно true, каждому атрибуту предшествует новая строка и дополнительный уровень отступа. + + + Возвращает или задает значение, определяющее, следует ли опустить XML-объявление. + Значение true, если необходимо пропустить XML-объявление; в противном случае — значение false.Значением по умолчанию является false; XML-объявление записывается. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Получает или задает значение, указывающее, добавляет ли закрывающие теги ко всем незакрытым тегам элементов при вызове метода . + Значение true, если все незакрытые теги элементов будут закрыты; в противном случае — значение false.Значение по умолчанию — true. + + + Встроенное представление схемы XML, как указано в спецификациях консорциума W3C Схема XML. Часть 1: структуры и Схема XML. Часть 2: типы данных. + + + Указывает, требуется ли префикс пространства имен для атрибутов или элементов. + + + Форма элемента и атрибута не указана в схеме. + + + Для элементов и атрибутов необходим префикс пространства имен. + + + Префикс пространства имен для элементов и атрибутов не требуется. + + + Предоставляет пользовательский формат для сериализации и десериализации XML. + + + Этот метод является зарезервированным, и его не следует использовать.При реализации интерфейса IXmlSerializable этот метод должен возвращать значение null (Nothing в Visual Basic), а если необходимо указать пользовательскую схему, то вместо использования метода следует применить к классу. + + , описывающая представление XML объекта, полученного из метода и включенного в метод . + + + Создает объект из представления XML. + Поток , из которого выполняется десериализация объекта. + + + Преобразует объект в представление XML. + Поток , в который выполняется сериализация объекта. + + + При применении к типу сохраняет имя статического метода типа, возвращающего схему XML и (или для анонимных типов), управляющих сериализацией типа. + + + Инициализация нового экземпляра класса , принимая имя статического метода, предоставляющего схему XML типа. + Имя статического метода, который должен быть реализован. + + + Получает или задает значение, определяющее, является ли целевой класс подстановочным классом, или содержит ли схема для класса только элемент xs:any. + true, если класс является подстановочным знаком, или схема содержит только элемент xs:any, в противном случае false. + + + Получает имя статического метода, предоставляющего схему XML типа, и имя его типа данных схемы XML. + Имя метода, вызываемого инфраструктурой XML, для возврата схемы XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..107c2d4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml @@ -0,0 +1,2665 @@ + + + + System.Xml.ReaderWriter + + + + 指定 对象执行的输入或输出检查的量。 + + + + 对象自动检测是否应该执行文档级别或片段级别检查,并执行相应的检查。如果你正在包装另一个 对象,外层对象不进行任何附加一致性检查。一致性检查只针对基础对象。有关如何确定符合性级别,请参见 属性。 + + + 按 W3C 定义,XML 数据符合格式良好的 XML 1.0 文档 的规则。 + + + 按 W3C 定义,XML 数据为 格式良好的 XML 片段。 + + + 指定用于处理 DTD 的选项。 枚举由 类使用。 + + + 将导致忽略 DOCTYPE 元素。将不发生任何 DTD 处理。 + + + 指定在遇到 DTD 时将引发 ,同时有消息指示禁用 DTD。这是默认行为。 + + + 提供一个接口,使类可以返回行和位置信息。 + + + 获取一个值,该值指示该类是否可返回行信息。 + 如果可以提供 ,则为 true;否则为 false。 + + + 获取当前行号。 + 当前行号;如果没有行信息可用(例如 返回 false),则为 0。 + + + 获取当前行位置。 + 当前行位置;如果没有行信息可用(例如 返回 false),则为 0。 + + + 提供对一组前缀和命名空间映射的只读访问。 + + + 获取当前在范围内的已定义前缀/命名空间映射的集合。 + 一个 ,包含当前在范围内的命名空间。 + 一个 值,指定要返回的命名空间节点的类型。 + + + 获取映射到指定前缀的命名空间 URI。 + 映射到前缀的命名空间 URI;如果前缀未映射到命名空间 URI,则为 null。 + 要查找其命名空间 URI 的前缀。 + + + 获取映射到指定命名空间 URI 的前缀。 + 映射到命名空间 URI 的前缀;如果命名空间 URI 未映射到前缀,则为 null。 + 要查找其前缀的命名空间 URI。 + + + 指定是否在 中移除重复的命名空间声明。 + + + 指定将不移除重复的命名空间声明。 + + + 指定将移除重复的命名空间声明。对于要移除的重复命名空间,前缀和命名空间必须匹配。 + + + 实现单线程 + + + 初始化 NameTable 类的新实例。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。如果 为零,则返回 String.Empty。 + 包含要添加字符串的字符数组。 + 数组中指定字符串第一个字符的从零开始的索引。 + 字符串中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。 + 要添加的字符串。 + + 为 null。 + + + 获取包含相同字符(与给定数组中指定范围的字符相同)的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 获取具有指定值的原子化字符串。 + 原子化字符串对象;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定如何处理分行符。 + + + 新行字符已实体化。当通过某个正常化 来读取输出时,此设置将保留所有字符。 + + + 新行字符未更改。输出与输入一样。 + + + 替换新行字符才能与 属性中指定的字符匹配。 + + + 指定读取器的状态。 + + + 已调用 方法。 + + + 已成功到达文件结尾。 + + + 出现错误,阻止读取操作继续进行。 + + + 未调用 Read 方法。 + + + 已调用 Read 方法。可能对读取器调用了其他方法。 + + + 指定 的状态。 + + + 指示正在写入特性值。 + + + 指示已调用 方法。 + + + 指示正在写入元素内容。 + + + 指示正在写入元素开始标记。 + + + 已引发异常,使 仍处于无效状态。可以调用 方法来将 置于 状态。任何其他 方法调用都将导致 + + + 指示正在写入 Prolog。 + + + 指示尚未调用 Write 方法。 + + + 对 XML 名称进行编码和解码,并提供方法在公共语言运行时类型和 XML 架构定义语言 (XSD) 类型之间进行转换。转换数据类型时,返回的值是独立于区域设置的。 + + + 对名称进行解码。该方法完成 方法的反向操作。 + 解码的名称。 + 要转换的名称。 + + + 将名称转换为有效的 XML 本地名称。 + 已编码的名称。 + 要编码的名称。 + + + 将名称转换为有效的 XML 名称。 + 返回名称,任何无效的字符都由转义字符串替换。 + 要转换的名称。 + + + 根据 XML 规范验证该名称是否有效。 + 已编码的名称。 + 要编码的名称。 + + + 转换为等效的 + 一个 Boolean 值,即 true 或 false。 + 要转换的字符串。 + + is null. + + does not represent a Boolean value. + + + 转换为等效的 + 与该字符串等效的 Byte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 代表单个字符的 Char。 + 包含所要转换的单个字符的字符串。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定日期是应该转换为本地时间,还是应该保留为协调通用时间 (UTC)(如果它为 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。“注意”   该字符串必须符合 XML DateTime 类型的 W3C 建议的子集。更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 从中转换 的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 根据此格式验证字符串 。 + + is null. + + or is an empty string or is not in the specified format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 可以转换 的格式数组。 中的每个格式均可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 将根据这些格式中的一个格式验证字符串 。 + + + 转换为等效的 + 与该字符串等效的 Decimal。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Double。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Guid。 + 要转换的字符串。 + + + 转换为等效的 + 与该字符串等效的 Int16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 SByte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Single。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为 + Boolean 的字符串表示形式,即“true”或“false”。 + 要转换的值。 + + + 转换为 + Byte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Char 的字符串表示形式。 + 要转换的值。 + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定如何处理 值。 + The value is not valid. + The or value is null. + + + 将提供的 转换为 + 提供的 表示形式。 + 要转换的 。 + + + 将提供的 转换为指定格式的 + 提供的 的指定格式的 表示形式。 + 要转换的 。 + + 转换为的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) + + + 转换为 + Decimal 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Double 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Guid 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int64 的字符串表示形式。 + 要转换的值。 + + + 转换为 + SByte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Single 的字符串表示形式。 + 要转换的值。 + + + 转换为 + TimeSpan 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt64 的字符串表示形式。 + 要转换的值。 + + + 转换为等效的 + 与该字符串等效的 TimeSpan。 + 要转换的字符串。字符串格式必须符合 W3C XML 架构第 2 部分:持续时间数据类型建议。 + + is not in correct format to represent a TimeSpan value. + + + 转换为等效的 + 与该字符串等效的 UInt16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根据 W3C 可扩展标记语言建议验证该名称是否是有效的名称。 + 该名称(如果它是有效的 XML 名称)。 + 要验证的名称。 + + is not a valid XML name. + + is null or String.Empty. + + + 根据 W3C 可扩展标记语言建议,验证名称是否是有效的 NCName。NCName 是不能包含冒号的名称。 + 该名称(如果它是有效的 NCName)。 + 要验证的名称。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根据 W3C 的 XML 架构第 2 部分“数据类型建议”,验证字符串是否为有效 NMTOKEN + 名称标记(如果它是有效的 NMTOKEN)。 + 要验证的字符串。 + The string is not a valid name token. + + is null. + + + 如果字符串参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串实例。 + 如果参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串。 + 包含要验证的 ID 的 。 + + + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例。 + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例;否则返回 null。 + 要验证的 。 + + + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 包含要验证的字符的 。 + + + 指定在字符串与 之间转换时,如何处理时间值。 + + + 作为本地时间处理。如果 对象表示协调通用时间 (UTC),它将转换为本地时间。 + + + 转换时应保留时区信息。 + + + 如果 要转换为字符串,将作为本地时间处理。 + + + 作为 UTC 处理。如果 对象表示本地时间,它将转换为 UTC。 + + + 返回有关上一个异常的详细信息。 + + + 初始化 XmlException 类的新实例。 + + + 使用指定的错误信息初始化 XmlException 类的新实例。 + 错误说明。 + + + 初始化 XmlException 类的新实例。 + 错误条件的说明。 + 引发 XmlException 的 (如果有的话)。此值可为 null。 + + + 用指定的消息、内部异常、行号和行位置初始化 XmlException 类的新实例。 + 错误说明。 + 导致当前异常的异常。此值可为 null。 + 指示错误发生位置的行号。 + 指示错误发生位置的行位置。 + + + 获取指示错误发生位置的行号。 + 指示错误发生位置的行号。 + + + 获取指示错误发生位置的行位置。 + 指示错误发生位置的行位置。 + + + 获取描述当前异常的消息。 + 解释异常原因的错误信息。 + + + 解析集合的命名空间、向集合添加命名空间和从集合中移除命名空间,以及提供对这些命名空间的范围管理。 + + + 用指定的 初始化 类的新实例。 + 要使用的 。 + null is passed to the constructor + + + 将给定的命名空间添加到集合。 + 与要添加的命名空间关联的前缀。使用 String.Empty 来添加默认命名空间。注意如果 将用于解析 XML 路径语言 (XPath) 表达式中的命名空间,则必须指定前缀。如果 XPath 表达式不包含前缀,则假定命名空间统一资源标识符 (URI) 为空命名空间。有关 XPath 表达式和 的更多信息,请参考 方法。 + 要添加的命名空间。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 获取默认命名空间的命名空间 URI。 + 返回默认命名空间的命名空间 URI;如果没有默认命名空间,则返回 String.Empty。 + + + 返回一个枚举数以用于循环访问 中的命名空间。 + 一个包含 存储的前缀的 + + + 获取被可用于枚举当前范围内的命名空间的前缀键控的命名空间名称的集合。 + 当前范围中的命名空间和前缀对的集合。 + 一个指定要返回的命名空间节点的类型的枚举值。 + + + 获取一个值,该值指示所提供的前缀是否具有为当前推送的范围定义的命名空间。 + 如果定义有命名空间,则为 true;否则为 false。 + 要查找的命名空间的前缀。 + + + 获取指定前缀的命名空间 URI。 + 返回 的命名空间 URI;如果没有映射的命名空间,则返回 null。返回的字符串是原子化的。有关原子化字符串的更多信息,请参见 类。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递 String.Empty。 + + + 查找为给定的命名空间 URI 声明的前缀。 + 匹配的前缀。如果没有映射的前缀,则方法返回 String.Empty。如果提供 null 值,则返回 null。 + 要为前缀解析的命名空间。 + + + 获取与此对象关联的 + 此对象使用的 + + + 将命名空间范围弹出堆栈。 + 如果堆栈上留有命名空间范围,则为 true;如果不再有要弹出的命名空间,则为 false。 + + + 将命名空间范围推送到堆栈上。 + + + 为给定的前缀移除给定的命名空间。 + 命名空间的前缀 + 要为给定的前缀移除的命名空间。所移除的命名空间来自当前的命名空间范围。忽略当前范围以外的命名空间。 + The value of or is null. + + + 定义命名空间范围。 + + + 在当前节点范围内定义的所有命名空间。这包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点范围内定义的所有命名空间,但不包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点本地定义的所有命名空间。 + + + 原子化字符串对象表。 + + + 初始化 类的新实例。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。如果 length 为零,则返回 String.Empty。 + 包含要添加的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。 + 要添加的名称。 + + 为 null。 + + + 当在派生类中被重写时,获取与给定数组中指定范围的字符包含相同字符的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,获取与指定的字符串包含相同值的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定节点的类型。 + + + 特性(例如,id='123')。 + + + CDATA 节(例如,<![CDATA[my escaped text]]>)。 + + + 注释(例如,<!-- my comment -->)。 + + + 作为文档树的根的文档对象提供对整个 XML 文档的访问。 + + + 文档片段。 + + + 由以下标记指示的文档类型声明(例如,<!DOCTYPE...>)。 + + + 元素(例如,<item>)。 + + + 末尾元素标记(例如,</item>)。 + + + 由于调用 而使 XmlReader 到达实体替换的末尾时返回。 + + + 实体声明(例如,<!ENTITY...>)。 + + + 实体引用(例如,&num;)。 + + + 如果未调用 Read 方法,则由 返回。 + + + 文档类型声明中的表示法(例如,<!NOTATION...>)。 + + + 处理指令(例如,<?pi test?>)。 + + + 混合内容模型中标记间的空白或 xml:space="preserve" 范围内的空白。 + + + 节点的文本内容。 + + + 标记间的空白。 + + + XML 声明(例如,<?xml version='1.0'?>)。 + + + 提供 分析 XML 片段所需的所有上下文信息。 + + + 用指定的 、基 URI、xml:lang、xml:space 和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 子集用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、基 URI、xml:lang、xml:space、编码和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang 和 xml:space 值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang、xml:space 和编码初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 获取或设置基 URI。 + 用于解析 DTD 文件的基 URI。 + + + 获取或设置文档类型声明的名称。 + 文档类型声明的名称。 + + + 获取或设置编码类型。 + 一个 对象,指示编码类型。 + + + 获取或设置内部 DTD 子集。 + 内部 DTD 子集。例如,此属性返回方括号 <!DOCTYPE doc [...]> 之间的所有内容。 + + + 获取或设置 + XmlNamespaceManager。 + + + 获取用于原子化字符串的 。有关原子化字符串的更多信息,请参见 + XmlNameTable。 + + + 获取或设置公共标识符。 + public 标识符。 + + + 获取或设置系统标识符。 + 系统标识符。 + + + 获取或设置当前 xml:lang 范围。 + 当前的 xml:lang 范围。如果范围中没有 xml:lang,则返回 String.Empty。 + + + 获取或设置当前 xml:space 范围。 + 一个 值,指示 xml:space 范围。 + + + 表示 XML 限定名。 + + + 初始化 类的新实例。 + + + 用指定的名称初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + + 用指定的名称和命名空间初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + 对象的命名空间。 + + + 提供空 + + + 确定指定的 对象是否等同于当前的 + 如果它们两个是相同的实例对象,则为 true;否则为 false。 + 要比较的 。 + + + 返回 的哈希代码。 + 该对象的哈希代码。 + + + 获取一个值,该值指示 是否为空。 + 如果名称和命名空间为空字符串,则为 true;否则为 false。 + + + 获取 的限定名的字符串表示形式。 + 限定名的字符串表示形式,或者如果没有为对象定义名称,则为 String.Empty。 + + + 获取 的命名空间的字符串表示形式。 + 命名空间的字符串表示形式,或者如果没有为对象定义命名空间,则为 String.Empty。 + + + 比较两个 对象。 + 如果两个对象具有相同的名称和命名空间值,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 比较两个 对象。 + 如果两个对象的名称和命名空间值不同,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + 对象的名称。 + 对象的命名空间。 + + + 表示提供对 XML 数据进行快速、非缓存、只进访问的读取器。若要浏览此类型的.NET Framework 源代码,请参阅参考源。 + + + 初始化 XmlReader 类的新实例。 + + + 当在派生类中被重写时,获取当前节点上的属性数。 + 当前节点上的属性数目。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的基 URI。 + 当前节点的基 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现二进制内容读取方法。 + 如果实现二进制内容读取方法,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现 方法。 + true if the implements the method; otherwise false. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示此读取器是否可以分析和解析实体。 + 如果此读取器可以分析和解析实体,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 创建一个新实例使用默认设置使用指定的流。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + + + 创建一个新具有指定的流和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + + 值为 null。 + + + 创建一个新实例使用指定的流、 设置和上下文信息用于分析。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器、 设置和上下文信息用于分析的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + 属性都包含值。(只可以设置并使用这两个 NameTable 属性之中的一个。) + + + 使用指定的 URI 创建一个新的 实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 类用于将路径转换为规范化数据表示形式。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + 由 URI 标识的文件不存在。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 URI 和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 对象上的 对象用于将路径转换为规范化数据表示形式。如果 为 null,则使用新的 对象。 + 新的设置实例。此值可为 null。 + + 值为 null。 + 无法找到由该 URI 指定的文件。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 XML 读取器和设置的实例。 + 包装的对象周围指定对象。 + 要用作基础 XML 编写器的对象。 + 新的设置实例。 对象的一致性级别要么必须与基础读取器的一致性级别匹配,要么必须设置为 。 + + 值为 null。 + + 对象指定的一致性级别与基础读取器的一致性级别不一致。- 或 -基础 处于 状态。 + + + 当在派生类中被重写时,获取 XML 文档中当前节点的深度。 + XML 文档中当前节点的深度。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 类的当前实例占用的所有资源。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true to release both managed and unmanaged resources; false to release only unmanaged resources. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示此读取器是否定位在流的结尾。 + 如果此读取器定位在流的结尾,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。此方法不移动读取器。 + 属性的索引。索引是从零开始的。(第一个属性的索引为 0。) + + 超出范围。它必须是非负数且小于特性集合的大小。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。 + 属性的限定名称。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。此方法不移动读取器。 + 属性的本地名称。 + 属性的命名空间 URI。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步获取当前节点的值。 + 当前节点的值。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 获取一个值,该值指示当前节点是否有任何属性。 + 如果当前节点具有属性,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否可以具有 + 如果读取器当前定位在的节点可以具有 Value,则为 true;否则为 false。如果为 false,则节点值为 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否是从 DTD 或架构中定义的默认值生成的特性。 + 如果当前节点是其值从 DTD 或架构中定义的默认值生成的特性,则为 true;如果特性值是显式设置的,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否为空元素(例如 <MyElement/>)。 + 如果当前节点是一个以 /> 结尾的元素( 等于 XmlNodeType.Element),则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回一个值,该值指示字符串参数是否是有效的 XML 名称。 + 如果该名称有效,则为 true;否则为 false。 + 要验证的名称。 + + 值为 null。 + + + 返回一个值,该值指示该字符串参数是否是有效的 XML 名称标记。 + 如果它是有效的名称标记,则为 true;否则为 false。 + 要验证的名称标记。 + + 值为 null。 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记。 + 如果 找到开始标记或空元素标记,则为 true;如果找到不同于 XmlNodeType.Element 的节点类型,则为 false。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的参数匹配。 + 如果生成的节点是一个元素,且 Name 属性与指定的字符串匹配,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 Name 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 Name 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的字符串匹配。 + 如果生成的节点是一个元素,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 LocalName 和 NamespaceURI 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 LocalName 属性匹配的字符串。 + 与找到的元素的 NamespaceURI 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的本地名称。 + 移除了前缀的当前节点的名称。例如,对于元素 <bk:book>,LocalName 为 book。对于没有名称的节点类型(如 Text、Comment 等),该属性返回 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,在当前元素的范围内解析命名空间前缀。 + 前缀映射到的命名空间 URI;如果未找到任何匹配的前缀,则为 null。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递一个空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到具有指定索引的属性。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数为负值。 + + + 当在派生类中被重写时,移动到具有指定 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 当在派生类中被重写时,移动到具有指定的 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 检查当前节点是否是内容(非空白文本、CDATA、Element、EndElement、EntityReference 或 EndEntity)节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。它跳过以下类型的节点:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步检查当前节点是否为内容节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,移动到包含当前属性节点的元素。 + 如果读取器定位在属性上,则为 true(读取器移动到拥有该属性的元素);如果读取器不是定位在属性上,则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到第一个属性。 + 如果属性存在,则为 true(读取器移动到第一个属性);否则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到下一个属性。 + 如果存在下一个属性,则为 true;如果没有其他属性,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的限定名。 + 当前节点的限定名称。例如,对于元素 <bk:book>,Name 为 bk:book。返回的名称取决于节点的 。下列节点类型返回所列的值。所有其他节点类型返回空字符串。节点类型名称 Attribute属性名。 DocumentType文档类型名称。 Element标记名称。 EntityReference引用的实体的名称。 ProcessingInstruction处理指令的目标。 XmlDeclaration字符串 xml。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器定位在其上的节点的命名空间 URI(采用 W3C 命名空间规范中定义的形式)。 + 当前节点的命名空间 URI;否则为空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与该实现关联的 + XmlNameTable,它使您能够获取该节点内字符串的原子化版本。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的类型。 + 指定当前节点的类型的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与当前节点关联的命名空间前缀。 + 与当前节点关联的命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,从流中读取下一个节点。 + true如果成功,则读取下一个节点否则为false。 + 分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取该流的下一个节点。 + 如果成功读取了下一个节点,则为 true;如果没有其他节点可读取,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,将属性值解析为一个或多个 Text、EntityReference 或 EndEntity 节点。 + 如果有可返回的节点,则为 true。如果进行初始调用时读取器不是定位在属性节点上,或者如果已读取了所有属性值,则为 false。如果是空属性(如 misc=""),则返回 true,同时返回值为 String.Empty 的单个节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。例如,将 对象转换为 xs:string 时可以使用此对象。此值可为 null。 + 内容格式不是目标类型的正确格式。 + 试图进行的强制转换无效。 + + 值为 null。 + 当前节点不是所支持的节点类型。有关详细信息,请参见下表。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象异步读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 Boolean 读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为双精度浮点数读取。 + 作为双精度浮点数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为单精度浮点数读取。 + 作为单精度浮点数的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 32 位有符号整数读取。 + 作为 32 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 64 位有符号整数读取。 + 作为 64 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将元素内容作为请求类型异步读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为双精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前内容节点是否为结束标记并将读取器推进到下一个节点。 + 当前节点不是一个结束标记,或者如果在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,将所有内容(包括标记)当做字符串读取。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。如果当前节点既非元素,也非属性,则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取所有内容,包括作为字符串的标记。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,读取表示该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取包含该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前节点是否为元素并将读取器推进到下一个节点。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的限定名。 + 在输入流中遇到不正确的 XML。- 或 -元素的 不匹配给定的 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在输入流中遇到不正确的 XML。- 或 -所找到元素的 属性与给定的参数不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器的状态。 + 指定读取器的状态的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回新的 XmlReader 实例,此实例可用于读取当前节点及其所有子节点。 + 新的 XML 读取器实例设置为。调用方法将新的读取器定位在调用之前的当前节点上方法。 + XML 读取器不被定位在元素上,当调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 前进到下一个具有指定限定名的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。如果调用 时没有将 定位在某个元素上,则此方法返回 false 且 的位置保持不变。 + 要移动到的元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 前进到下一个具有指定的本地名称和命名空间 URI 的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 要移动到的元素的本地名称。 + 要移动到的元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 一直读取,直到找到具有指定限定名的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 一直读取,直到找到具有指定的本地名称和命名空间 URI 的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 让 XmlReader 前进到下一个具有指定限定名的同级元素。 + 如果找到匹配的同级元素,则为 true;否则为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 让 XmlReader 前进到下一个具有指定的本地名称和命名空间 URI 的同级元素。 + 如果找到匹配的同级元素,则为 true;否则,为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的本地名称。 + 你希望移动到的同级元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 当前节点没有值( 为 false)。 + + 值为 null。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + XML 数据不是格式良好的。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,解析 EntityReference 节点的实体引用。 + 读取器未定位在 EntityReference 节点上;该读取器的实现不能解析实体( 返回 false)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + Gets the object used to create this instance. + 用于创建此读取器实例的 对象。如果此读取器不是使用 方法创建的,则此属性返回 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 跳过当前节点的子级。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步跳过当前节点的子级。 + 当前节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,获取当前节点的文本值。 + 返回的值取决于节点的 。下表列出具有要返回的值的节点类型。所有其他节点类型返回 String.Empty。节点类型值 Attribute属性的值。 CDATACDATA 节的内容。 Comment注释的内容。 DocumentType内部子集。 ProcessingInstruction全部内容(不包括指令目标)。 SignificantWhitespace混合内容模型中标记之间的空白。 Text文本节点的内容。 Whitespace标记之间的空白。 XmlDeclaration声明的内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取当前节点的公共语言运行时 (CLR) 类型。 + 与节点的类型化值对应的 CLR 类型。默认值为 System.String。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:space 范围。 + + 值之一。如果不存在任何 xml:space 范围,则该属性默认值为 XmlSpace.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 指定在由 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置是否可对特定 实例使用异步 方法。 + 则可以使用异步方法,则为 true;否则,为 false。 + + + 获取或设置一个值,该值指示是否进行字符检查。 + 如果进行字符检查,则为 true;否则为 false。默认值为 true。说明如果 处理文本数据,则无论属性如何设置,读取器将总是检查 XML 名称和文本内容是否有效。将 设置为 false 会禁用对字符实体引用的字符检查。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示当读取器关闭时,是否应关闭基础流或 + 如果当读取器关闭时基础流或 也应关闭,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 将遵循的一致性级别。 + 指定一致性级别(XML 读取器将强制该级别)的枚举值之一。默认值为 + + + 获取或设置确定 DTD 的处理的值。 + 确定 DTD 的处理的枚举值之一。默认值为 + + + 获取或设置一个值,该值指示是否忽略注释。 + 如果忽略注释,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略处理指令。 + 如果忽略处理指令,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略无关紧要的空白区域。 + 如果忽略空白,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 对象的行号偏移量。 + 行号偏移量。默认值为 0。 + + + 获取或设置 对象的行位置偏移量。 + 行位置偏移量。默认值为 0。 + + + 获取或设置一个值,该值指示文档中允许扩展实体产生的最大字符数。 + 扩展实体中允许的最大字符数。默认值为 0。 + + + 获取或设置一个值,该值指明 XML 文档中所允许的最大字符数。零 (0) 值表示对 XML 文档的大小没有限制。非零值指定最大大小(以字符数计)。 + XML 文档中所允许的最大字符数。默认值为 0。 + + + 获取或设置用于原子化字符串比较的 + + ,它存储使用此 对象创建的所有 实例使用的所有原子化字符串。默认值为 null。如果该值为null,创建的 实例将使用新的空 + + + 将设置类的成员重置为各自的默认值。 + + + 指定当前 xml:space 范围。 + + + xml:space 范围等于 default。 + + + 没有 xml:space 范围。 + + + xml:space 范围等于 preserve。 + + + 表示一个写入器,该写入器提供一种快速、非缓存和只进方式以生成包含 XML 数据的流或文件。 + + + 初始化 类的新实例。 + + + 使用指定的流创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + The value is null. + + + 使用流和 对象创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + The value is null. + + + 使用 对象创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + The value is null. + + + 使用 对象创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 释放由 类的当前实例占用的所有资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true 表示释放托管资源和非托管资源;false 表示仅释放非托管资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,将缓冲区中的所有内容刷新到基础流,并同时刷新基础流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将缓冲区中的所有内容异步刷新到基础流,并同时刷新基础流。 + 表示 Flush 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,返回在当前命名空间范围中为该命名空间 URI 定义的最近的前缀。 + 匹配的前缀;如果未在当前范围内找到匹配的命名空间 URI,则为 null。 + 要查找其前缀的命名空间 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 获取用于创建此 实例的 对象。 + 用于创建此写入器实例的 对象。如果此写入器不是使用 方法创建的,则此属性返回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出在 的当前位置找到的所有属性。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在 的当前位置找到的所有属性。 + 表示 WriteAttributes 异步操作的任务。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称和值的属性。 + 属性的本地名称。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的本地名称、命名空间 URI 和值的属性。 + 属性的本地名称。 + 与属性关联的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出具有指定的前缀、本地名称、命名空间 URI 和值的属性。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出具有指定前缀、本地名称、命名空间 URI 和值的属性。 + 表示 WriteAttributeString 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 Base64 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 Base64 并写出结果文本。 + 表示 WriteBase64 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 BinHex 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 BinHex 并写出结果文本。 + 表示 WriteBinHex 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的 <![CDATA[...]]> 块。 + 要放置在 CDATA 块中的文本。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的 <![CDATA[...]]> 块。 + 表示 WriteCData 异步操作的任务。 + 要放置在 CDATA 块中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为指定的 Unicode 字符值强制生成字符实体。 + 为其生成字符实体的 Unicode 字符。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为指定的 Unicode 字符值异步强制生成字符实体。 + 表示 WriteCharEntity 异步操作的任务。 + 为其生成字符实体的 Unicode 字符。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,以每次一个缓冲区的方式写入文本。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以每次一个缓冲区的方式异步写入文本。 + 表示 WriteChars 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的注释 <!--...-->。 + 要放在注释内的文本。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的注释 <!--...-->。 + 表示 WriteComment 异步操作的任务。 + 要放在注释内的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定名称和可选属性的 DOCTYPE 声明。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定名称和可选属性的 DOCTYPE 声明。 + 表示 WriteDocType 异步操作的任务。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定的本地名称和值的元素。 + 元素的本地名称。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的本地名称、命名空间 URI 和值的元素。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 表示 WriteElementString 异步操作的任务。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭上一个 调用。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭前一个 调用。 + 表示 WriteEndAttribute 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + 表示 WriteEndDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,按 &name; 写出实体引用。 + 实体引用的名称。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 按 &name; 异步写出实体引用。 + 表示 WriteEntityRef 异步操作的任务。 + 实体引用的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteFullEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 要写入的名称。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 表示 WriteName 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 要写入的名称。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 表示 WriteNmToken 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将全部内容从读取器复制到写入器并将读取器移动到下一个同级的开始位置。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将所有内容从读取器异步复制到写入器并将读取器移动到下一个同级的开头。 + 表示 WriteNode 异步操作的任务。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出在名称和文本之间带有空格的处理指令,如下所示:<?name text?>。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在名称和文本之间有空格的处理指令,如下所示:<?name text?>。 + 表示 WriteProcessingInstruction 异步操作的任务。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 要写入的本地名称。 + 名称的命名空间 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 表示 WriteQualifiedName 异步操作的任务。 + 要写入的本地名称。 + 名称的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,从字符缓冲区手动写入原始标记。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,从字符串手动写入原始标记。 + 包含要写入的文本的字符串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 从字符缓冲区手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 从字符串手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定本地名称的属性的开头。 + 属性的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定本地名称和命名空间 URI 的属性的开头。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的前缀、本地名称和命名空间 URI 的属性的开头。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定前缀、本地名称和命名空间 URI 的属性的开头。 + 表示 WriteStartAttribute 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明和独立的属性。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入版本为“1.0”的 XML 声明。 + 表示 WriteStartDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 异步写入版本为“1.0”的 XML 声明和独立的属性。 + 表示 WriteStartDocument 异步操作的任务。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称的开始标记。 + 元素的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间关联起来。 + 元素的本地名称。 + 与元素关联的命名空间 URI。如果此命名空间已在范围中并具有关联的前缀,则写入器也将自动写入该前缀。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 表示 WriteStartElement 异步操作的任务。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取写入器的状态。 + + 值之一。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入给定的文本内容。 + 要写入的文本。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入给定的文本内容。 + 表示 WriteString 异步操作的任务。 + 要写入的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为代理项字符对生成并写入代理项字符实体。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为代理项字符对异步生成并写入代理项字符实体。 + 表示 WriteSurrogateCharEntity 异步操作的任务。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入对象值。 + 要写入的对象值。注意   随着 .NET Framework 3.5 的发布,该方法接受将 作为参数。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个单精度浮点数。 + 要写入的单精度浮点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出给定的空白区域。 + 空格字符的字符串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出给定的空白区域。 + 表示 WriteWhitespace 异步操作的任务。 + 空格字符的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,获取表示当前 xml:space 范围的 + 一个表示当前 xml:space 范围的 XmlSpace。值含义 None如果不存在 xml:space 范围,则此为默认值。Default当前范围为 xml:space="default"。Preserve当前范围为 xml:space=“preserve”。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定在 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置一个值,该值指示是否可对特定的 实例使用异步 方法。 + 如果可以使用异步方法,则为 true;否则为 false。 + + + 获取或设置一个值,该值指示是否应检查 XML 写入器以确保文档中的所有字符都符合 W3C XML 1.0 建议 中的“2.2 字符”部分。 + 如果要检查字符,则为 true,否则为 false。默认值为 true。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示调用 是否也应该关闭基础流或 + 如果要关闭基础流或 ,则为 true;否则为 false。默认值为 false。 + + + 获取或设置的 XML 写入器检查 XML 输出的一致性级别。 + 指定一致性级别(文档、片段或自动检测)的枚举值之一。默认值为 + + + 获取或设置要使用的文本编码的类型。 + 要使用的文本编码。默认值为 Encoding.UTF8。 + + + 获取或设置指示是否缩进元素的值。 + 如果在新行上写入单独的元素并将其缩进,则为 true;否则为 false。默认值为 false。 + + + 获取或设置缩进时要使用的字符串。在 属性设置为 true 时使用此设置。 + 缩进时要使用的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为两个空格。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示在写入 XML 内容时 是否应移除重复的命名空间声明。写入器的默认行为是输出写入器的命名空间解析程序中存在的所有命名空间声明。 + 用于指定是否移除 中重复的命名空间声明的 枚举。 + + + 获取或设置要用于换行符的字符串。 + 要用于换行符的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为 \r\n(回车符、新行)。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示是否将输出中的换行符规范化。 + + 值之一。默认值为 + + + 获取或设置一个值,该值指示是否在新行上写入属性。 + 如果要在单独的行上写入属性,则为 true;否则为 false。默认值为 false。说明 属性值为 false时此设置无效。 设置为 true时,每个属性都会预先挂起一个新行和一个额外的缩进级别。 + + + 获取或设置一个值,该值指示是否省略 XML 声明。 + 如果省略 XML 声明,则为 true;否则为 false。默认值为 false,即写入 XML 声明。 + + + 将设置类的成员重置为各自的默认值。 + + + 获取或设置一个值,该值指示在调用 方法时 是否会向所有未关闭的元素标记添加结束标记。 + 如果将结束所有未关闭元素标记,则为 true;否则为 false。默认值为 true。 + + + 一个 XML 架构的内存表示形式,它按照万维网联合会 (W3C) XML 架构第 1 部分进行指定:“结构” 和 XML 架构第 2 部分:“数据类型” 规范。 + + + 指示是否需要用命名空间前缀限定属性或元素。 + + + 架构中不指定元素和属性窗体。 + + + 必须用命名空间前缀限定元素和属性。 + + + 不要求用命名空间前缀限定元素和属性。 + + + 提供面向 XML 序列化和反序列化的自定义格式。 + + + 此方法是保留方法,请不要使用。在实现 IXmlSerializable 接口时,应从此方法返回 null(在 Visual Basic 中为 Nothing),如果需要指定自定义架构,应向该类应用 + + ,描述由 方法产生并由 方法使用的对象的 XML 表示形式。 + + + 从对象的 XML 表示形式生成该对象。 + 对象从中进行反序列化的 流。 + + + 将对象转换为其 XML 表示形式。 + 对象要序列化为的 流。 + + + 应用于某个类型时,存储返回 XML 架构的该类型静态方法的名称和控制该类型序列化的 (对于匿名类型,为 )。 + + + 采用提供类型的 XML 架构的静态方法的名称,初始化 类的新实例。 + 必须实现的静态方法的名称。 + + + 获取或设置一个值,该值确定目标类是通配符,还是该类的架构仅包含一个 xs:any 元素。 + 如果该类是通配符,或者该架构仅包含 xs:any 元素,则为 true;否则为 false。 + + + 获取提供类型的 XML 架构及其 XML 架构数据类型名称的静态方法的名称。 + XML 基础结构调用来返回 XML 架构的方法的名称。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..d7f0bf3 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml @@ -0,0 +1,2688 @@ + + + + System.Xml.ReaderWriter + + + + 指定 物件所執行的輸入或輸出檢查數量。 + + + + 物件會自動偵測是否應執行文件或片段檢查,並進行適當的檢查。如果您包裝其他 物件,則外部物件不會執行任何其他的一致性檢查。必須由基礎物件來進行一致性檢查。請參閱 屬性,以取得如何判定符合性層級的詳細資料。 + + + XML 資料使用格式正確的 XML 1.0 文件 編譯,如 W3C 所定義。 + + + XML 資料是格式正確的 XML 片段,如 W3C 所定義。 + + + 指定處理 DTD 的選項。 列舉型別是由 類別所使用。 + + + 導致 DOCTYPE 項目受到忽略。不會發生 DTD 處理。 + + + 指定在遇到 DTD 時擲回 並顯示訊息,說明禁止使用 DTD。這是預設行為。 + + + 提供讓類別能夠傳回行和位置資訊的介面。 + + + 取得值,這個值指出類別是否可以傳回行資訊。 + 如果可以提供 ,則為 true,否則為 false。 + + + 取得目前的行號。 + 目前的行號,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 取得的目前行位置。 + 目前的行位置,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 提供對一組前置詞和命名空間 (Namespace) 對應的唯讀存取。 + + + 取得定義之前置詞/命名空間對應的集合,目前位於範圍中。 + + ,包含目前範圍內的命名空間。 + + 值,指定要傳回之命名空間節點的型別。 + + + 取得命名空間 URI,對應至指定的前置詞。 + 對應至前置詞的命名空間 URI,如果前置詞未對應至命名空間 URI,則為 null。 + 您要尋找其命名空間 URI 的前置詞。 + + + 取得前置詞,對應至指定的命名空間 URI。 + 對應至命名空間 URI 的前置詞,如果命名空間 URI 未對應至前置詞,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + + 指定是否要移除 中的重複命名空間宣告。 + + + 指定不要移除重複的命名空間宣告。 + + + 指定要移除重複的命名空間宣告。若要移除重複的命名空間,前置詞和命名空間必須相符。 + + + 實作單一執行緒的 + + + 初始化 NameTable 類別的新執行個體。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。如果 為零,則會傳回 String.Empty。 + 包含要加入之字串的字元陣列。 + 陣列中以零起始的索引,指定字串的第一個字元。 + 字串中的字元數。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。 + 要加入的字串。 + + 為 null。 + + + 取得包含與指定陣列中指定字元範圍內的字元相同的字串。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 包含要尋找之名稱的字元陣列。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 取得具有指定值的原子化字串。 + 原子化字串物件;如果字串尚未原子化,則為 null。 + 要尋找的名稱。 + + 為 null。 + + + 指定如何處理分行符號。 + + + 實體化換行字元。當正規化 來讀取輸出時,這個設定會保留所有字元。 + + + 換行字元未變更。輸出與輸入相同。 + + + 取代換行字元,使其與 屬性中指定的字元相符。 + + + 指定讀取器 (Reader) 的狀態。 + + + 已經呼叫 方法。 + + + 已經順利到達檔案結尾。 + + + 發生錯誤,造成讀取作業無法繼續。 + + + 尚未呼叫 Read 方法。 + + + 已經呼叫 Read 方法。讀取器可能呼叫其他方法。 + + + 指定 的狀態。 + + + 指出正在寫入屬性值。 + + + 指出已呼叫 方法。 + + + 指出正在寫入項目內容。 + + + 指出正在寫入項目開始標記。 + + + 已經擲回例外狀況, 因此處於無效狀態。您可以呼叫 方法,將 置於 狀態下。任何其他 方法呼叫會導致 + + + 指出正在寫入初構 (Prolog)。 + + + 指出尚未呼叫 Write 方法。 + + + 編碼和解碼 XML 名稱,並且提供在 Common Language Runtime 類型和 XML 結構描述定義語言 (XSD) 類型之間轉換的方法。轉換資料類型時,傳回的值與地區設定無關。 + + + 將名稱解碼。這個方法反向執行 方法。 + 解碼的名稱。 + 要轉換的名稱。 + + + 將名稱轉換為有效的 XML 區域名稱。 + 編碼的名稱。 + 要編碼的名稱。 + + + 將名稱轉換為有效的 XML 名稱。 + 傳回以逸出字元取代任何無效字元的名稱。 + 要轉譯的名稱。 + + + 根據 XML 規格驗證確定名稱有效。 + 編碼的名稱。 + 要編碼的名稱。 + + + 轉換成對等的 + Boolean 值,為 true 或 false。 + 要轉換的字串。 + + is null. + + does not represent a Boolean value. + + + 轉換成對等的 + 字串的對等 Byte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + Char,表示單一字元。 + 字串,含有要轉換的單一字元。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定應將日期轉換為當地時間,或保留為國際標準時間 (UTC) (如果它是 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。注意   字串必須符合 XML dateTime 型別的 W3C Recommendation 子集。如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 的來源格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對這個格式進行驗證。 + + is null. + + or is an empty string or is not in the specified format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 之來源格式的陣列。 中的每個格式,可以是 XML dateTime 型別的 W3C Recommendation 子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對其中一種格式進行驗證。 + + + 轉換成對等的 + 字串的對等 Decimal。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Double。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Guid。 + 要轉換的字串。 + + + 轉換成對等的 + 字串的對等 Int16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 SByte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Single。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成 + Boolean 的字串表示,也就是 "true" 或 "false"。 + 要進行轉換的值。 + + + 轉換成 + Byte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Char 的字串表示。 + 要進行轉換的值。 + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定如何處理 值。 + The value is not valid. + The or value is null. + + + 將提供的 轉換成 + 所提供之 表示。 + 要轉換的 。 + + + 將提供的 轉換成指定格式的 + 以所提供之 指定格式的 表示。 + 要轉換的 。 + + 所要轉換成的格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 + + + 轉換成 + Decimal 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Double 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Guid 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int64 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + SByte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Single 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + TimeSpan 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt64 的字串表示。 + 要進行轉換的值。 + + + 轉換成對等的 + 字串的對等 TimeSpan。 + 要轉換的字串。字串格式必須符合<W3C XML 結構描述第 2 部分:資料型別>對持續期間的建議。 + + is not in correct format to represent a TimeSpan value. + + + 轉換成對等的 + 字串的對等 UInt16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的名稱。 + 名稱 (如果它是有效的 XML 名稱)。 + 要驗證的名稱。 + + is not a valid XML name. + + is null or String.Empty. + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的 NCName。NCName 是不能包含冒號的名稱。 + 名稱 (如果它是有效的 NCName)。 + 要驗證的名稱。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根據<W3C XML Schema Part2: Datatypes>建議,驗證字串是否為有效的 NMTOKEN。 + 名稱語彙基元 (如果它是有效的 NMTOKEN)。 + 您要驗證的字串。 + The string is not a valid name token. + + is null. + + + 如果字串引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串執行個體。 + 如果引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串。 + 包含要驗證之 ID 的 。 + + + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體。 + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體;否則傳回 null。 + 要驗證的 。 + + + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 包含要驗證之字元的 。 + + + 指定在字串和 之間轉換時如何處理時間值。 + + + 當做當地時間。如果 物件表示 Coordinated Universal Time (UTC),則將它轉換成當地時間。 + + + 時區資訊應在轉換時保存。 + + + 如果要將 轉換成字串,則當做當地時間。 + + + 當做 UTC。如果 物件表示當地時間,則將它轉換成 UTC。 + + + 傳回有關上次例外狀況的詳細資訊。 + + + 初始化 XmlException 類別的新執行個體。 + + + 使用指定的錯誤訊息,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + + + 初始化 XmlException 類別的新執行個體。 + 錯誤條件的描述。 + 擲回 XmlException 的 (如果有的話)。這個值可以是 null。 + + + 使用指定的訊息、內部例外狀況、行號和行位置,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + 導致目前例外狀況的例外。這個值可以是 null。 + 指示發生錯誤之位置的行號。 + 指示發生錯誤之位置的行位置。 + + + 取得行號,指出發生錯誤的位置。 + 指示發生錯誤之位置的行號。 + + + 取得行位置,指出發生錯誤的位置。 + 指示發生錯誤之位置的行位置。 + + + 取得描述目前例外狀況的訊息。 + 解釋例外狀況原因的錯誤訊息。 + + + 解析、加入並移除集合的命名空間,並且為這些命名空間提供範圍管理。 + + + 使用指定的 初始化 類別的新執行個體。 + 要使用的 。 + null is passed to the constructor + + + 將指定的命名空間加入集合中。 + 與要加入的命名空間關聯的前置詞。使用 String.Empty 來加入預設命名空間。附註:如果 將用於解析 XML 路徑語言 (XPath) 運算式中的命名空間,則必須指定前置詞。如果 XPath 運算式不包括前置詞,則會假設命名空間統一資源識別項 (URI) 為空命名空間。如需有關 XPath 運算式以及 的詳細資訊,請參考 方法。 + 要加入的命名空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 取得預設命名空間的命名空間 URI。 + 傳回預設命名空間的命名空間 URI,若無預設命名空間,則傳回 String.Empty。 + + + 傳回用於逐一查看 中命名空間的列舉值。 + + ,包含 儲存的前置詞。 + + + 取得命名空間名稱集合,會根據前置詞索引,可用於列舉目前在範圍中的命名空間。 + 目前在範圍中的命名空間和前置詞配對集合。 + 列舉值,指定要傳回之命名空間節點的類型。 + + + 取得值,表示提供的前置詞是否具有針對目前推送的範圍中定義的命名空間。 + 如果已經定義命名空間,則為 true,否則為 false。 + 您要尋找的命名空間的前置詞。 + + + 取得指定前置詞的命名空間 URI。 + 傳回 的命名空間 URI;如果無對應的命名空間,則傳回 null。已擷取傳回的字串。如需擷取字串的詳細資訊,請參閱 類別。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送 String.Empty。 + + + 尋找為指定命名空間 URI 宣告的前置詞。 + 符合的前置詞。如果沒有對應的前置詞,此方法會傳回 String.Empty。如果提供了 null 值,則會傳回 null。 + 用來解析前置詞的命名空間。 + + + 取得與這個物件相關的 + + ,由這個物件所使用。 + + + 將命名空間範圍自堆疊取出。 + 如果堆疊上留有命名空間範圍,則為 true,若未取出其他命名空間,則為 false。 + + + 將命名空間範圍推送至堆疊。 + + + 移除指定前置詞的指定命名空間。 + 命名空間的前置詞 + 指定的前置詞中要移除的命名空間。命名空間由目前的命名空間範圍移除。忽略目前範圍以外的命名空間。 + The value of or is null. + + + 定義命名空間範圍。 + + + 目前節點範圍中定義的所有命名空間。這包含 xmlns:xml 命名空間,這個命名空間一定是以隱含方式宣告。尚未定義命名空間傳回的順序。 + + + 目前節點範圍中定義的所有命名空間,但是 xmlns:xml 命名空間 (一定以隱含方式宣告) 除外。尚未定義命名空間傳回的順序。 + + + 目前節點上區域定義的所有命名空間。 + + + 原子化字串物件的資料表。 + + + 初始化 類別的新執行個體。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。如果長度為零,則傳回 String.Empty。 + 字元陣列,包含要加入的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。 + 要加入的名稱。 + + 為 null。 + + + 在衍生類別中覆寫時,取得包含相同字元的原子化字串做為指定陣列中的指定字元範圍。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 字元陣列,包含要查詢的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,取得包含相同值的原子化字串做為指定的字串。 + 原子化字串,如果字串尚未原子化,則為 null。 + 要查詢的名稱。 + + 為 null。 + + + 指定節點的類型。 + + + 屬性 (例如,id='123')。 + + + CDATA 區段 (例如,<![CDATA[my escaped text]]>)。 + + + 註解 (例如,<!-- my comment -->)。 + + + 做為文件樹狀結構的根的文件物件可存取整個 XML 文件。 + + + 文件片段。 + + + 文件類型宣告,以下列標記指示 (例如,<!DOCTYPE...>)。 + + + 項目 (例如,<item>)。 + + + 結尾項目標記 (例如,</item>)。 + + + 當 XmlReader 到達實體 (Entity) 結尾時傳回的資料,取代呼叫 的結果。 + + + 實體宣告 (例如,<!ENTITY...>)。 + + + 實體參考 (例如,&num;)。 + + + 如果尚未呼叫 Read 方法,則由 傳回此資料。 + + + 文件類型宣告中的標記法 (例如,<!NOTATION...>)。 + + + 處理指示 (例如,<?pi test?>)。 + + + 混合內容模型中標記之間的泛空白字元 (White Space),或 xml:space="preserve" 範圍 (Scope) 中的泛空白字元。 + + + 節點的文字內容。 + + + 標記之間的泛空白字元。 + + + XML 宣告 (例如,<?xml version='1.0'?>)。 + + + 提供 剖析 XML 片段所需的所有內容資訊。 + + + 使用指定的 、基底 URI、xml:lang、xml:space 和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 子集用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、基底 URI、xml:lang、xml:space、編碼方式和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang 和 xml:space 的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang、xml:space 和編碼方式,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 取得或設定基底 URI。 + 用來解析 DTD 檔案的基底 URI。 + + + 取得或設定文件型別宣告的名稱。 + 文件型別宣告的名稱。 + + + 取得或設定編碼類型。 + 指示編碼類型的 物件。 + + + 取得或設定內部 DTD 子集。 + 內部 DTD 子集。例如,這個屬性會傳回介於方括弧 <!DOCTYPE doc [...]> 之間的所有內容。 + + + 取得或設定 + XmlNamespaceManager。 + + + 取得用來原子化字串的 。如需原子化字串的詳細資訊,請參閱 + XmlNameTable。 + + + 取得或設定公用識別項。 + 公用識別項。 + + + 取得或設定系統識別項。 + 系統識別項。 + + + 取得或設定目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。如果範圍內沒有 xml:lang,則會傳回 String.Empty。 + + + 取得或設定目前的 xml:space 範圍。 + + 值,指出 xml:space 的範圍。 + + + 表示 XML 限定名稱 (Qualified Name)。 + + + 初始化 類別的新執行個體。 + + + 使用指定的名稱,初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + + 使用指定的名稱和命名空間,來初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + 物件的命名空間。 + + + 提供空白的 + + + 判斷指定的 物件是否等於目前的 物件。 + 如果這兩個是相同的執行個體物件,則為 true,否則為 false。 + 要比較的 。 + + + 傳回 的雜湊程式碼。 + 這個物件的雜湊程式碼。 + + + 取得值,指出 是否為空白。 + 如果名稱和命名空間為空白字串,則為 true,否則為 false。 + + + 取得 限定名稱的字串表示。 + 限定名稱的字串表示,如果物件並未定義名稱,則為 String.Empty。 + + + 取得 命名空間的字串表示。 + 命名空間的字串表示,如果物件並未定義命名空間,則為 String.Empty。 + + + 比較兩個 物件。 + 如果這兩個物件具有相同的名稱和命名空間值,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 比較兩個 物件。 + 如果這兩個物件的名稱和命名空間值不同,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + 物件的名稱。 + 物件的命名空間。 + + + 表示提供快速、非快取、順向 (Forward-only) 存取 XML 資料的讀取器 (Reader)。若要瀏覽此類型的.NET Framework 原始碼,請參閱參考來源。 + + + 初始化 XmlReader 類別的新執行個體。 + + + 在衍生類別中覆寫時,取得目前節點上的屬性數目。 + 目前節點的屬性數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的基底 URI。 + 目前節點的基底 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,這個值表示 是否會實作二進位內容讀取方法。 + 如果實作二進位內容讀取方法,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出 是否會實作 方法。 + true if the implements the method; otherwise false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出這個讀取器是否可以剖析和解析實體。 + 如果讀取器可以剖析和解析實體,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 建立新執行個體使用指定的資料流,以預設設定。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + + + 建立新具有指定的資料流和設定執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + + + 建立新執行個體使用指定的資料流、 設定和內容資訊進行剖析。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + + 建立新使用指定的文字讀取器的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + + 值為 null。 + + + 建立新使用指定的文字讀取器和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定。這個值可以是 null。 + + 值為 null。 + + + 建立新剖析使用指定的文字讀取器、 設定和內容資訊的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + 屬性都包含值(這些 NameTable 屬性中只有一個可以設定和使用)。 + + + 使用指定的 URI,建立新的 執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 類別是用來將路徑轉換成正式的資料代表。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + URI 所識別的檔案不存在。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 URI 和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 物件上的 物件是用於將路徑轉換成標準資料表示。如果 為 null,則會使用新的 物件。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + 找不到由 URI 指定的檔案。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 XML 讀取器和設定的執行個體。 + 包裝的物件周圍指定物件。 + 您想要當做基礎 XML 讀取器使用的物件。 + 新的設定執行個體。 物件的一致性層級必須符合基礎讀取器的一致性層級,或是必須設為 。 + + 值為 null。 + 如果 物件指定的一致性層級與基礎讀取器的一致性層級不相符。-或-基礎 處於 狀態。 + + + 在衍生類別中覆寫時,取得 XML 文件中目前節點的深度。 + XML 文件中目前節點的深度。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 類別目前的執行個體所使用的資源全部釋出。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得指出讀取器是否在資料流結尾的值。 + 如果讀取器定位於資料流結尾,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。這個方法不會移動讀取器。 + 屬性的索引。索引以零為起始。(第一個屬性的索引為 0。) + + 超出範圍。它必須是非負值,而且小於屬性集合的大小。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。這個方法不會移動讀取器。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步取得目前節點的值。 + 目前節點的值。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 取得值,表示目前節點是否具有任何屬性。 + 如果目前節點擁有屬性,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否具有 + 如果讀取器目前所在節點具有 Value,則為 true,否則為 false。如果為 false,則節點的值為 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為從 DTD 或結構描述中定義的預設值產生的屬性。 + 如果目前節點是 DTD 或結構描述中定義的預設值所產生的屬性,則為 true,如果已經明確設定屬性值,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為空項目 (例如,<MyElement/>)。 + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱。 + 如果名稱有效,則為 true,否則為 false。 + 要驗證的名稱。 + + 值為 null。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱語彙基元。 + 如果它是有效的名稱語彙基元,則為 true,否則為 false。 + 要驗證的名稱語彙基元。 + + 值為 null。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記。 + 如果 找到開頭標記或空項目標記,則為 true,如果找到的節點型別並非 XmlNodeType.Element,則為 false。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,並且 Name 屬性符合指定的字串,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目 Name 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 Name 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目的 LocalName 和 NamespaceURI 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 LocalName 屬性。 + 字串符合所找到項目的 NamespaceURI 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的區域名稱。 + 目前節點名稱的前置詞被移除。例如,對 <bk:book> 項目而言,LocalName 為 book。對於沒有名稱的節點型別 (如 Text、Comment 等),這個屬性會傳回 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,解析目前項目範圍內的命名空間前置詞。 + 前置詞對應的命名空間 URI,如果找不到符合的前置詞,則為 null。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至具有指定索引的屬性。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數的值是負數。 + + + 在衍生類別中覆寫時,移至具有指定之 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在衍生類別中覆寫時,移至具有指定的 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 檢查目前節點是否為內容 (非空白區文字、CDATA、Element、EndElement、EntityReference 或 EndEntity) 節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。它會略過下列型別的節點:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步檢查目前節點是否為內容節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,移至包含目前屬性節點的項目上。 + 如果讀取器位於屬性 (讀取器移至擁有該屬性的項目) 上,則為 true,如果讀取器不在屬性 (不會變更讀取器的位置),則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至第一個屬性。 + 如果屬性存在 (讀取器移至第一個屬性),則為 true,否則為 false (不會變更讀取器的位置)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至下一個屬性。 + 如果有下一個屬性,則為 true,如果沒有其他屬性,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的限定名稱。 + 目前節點的限定名稱。例如,對 <bk:book> 項目而言,Name 為 bk:book。傳回的名稱需視節點的 而定。下列節點類型會傳回所列的值。其他所有節點類型都會傳回空字串。節點類型名稱 Attribute屬性的名稱。 DocumentType文件類型名稱。 Element標記名稱。 EntityReference所參考的實體名稱。 ProcessingInstruction處理指示的目標。 XmlDeclarationxml 常值 (Literal) 字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器所在節點的命名空間 URI (如 W3C 命名空間規格中所定義)。 + 目前節點的命名空間 URI,否則為空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與這個實作相關的 + XmlNameTable 可讓您取得節點中字串的原子化版本。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的類型。 + 其中一個列舉值,指定目前節點的類型。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與目前節點相關聯的命名空間前置詞。 + 與目前節點相關聯的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,從資料流讀取下一個節點。 + true如果已成功 ; 讀取下一個節點否則, false。 + 剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取資料流中的下一個節點。 + 如果成功讀取下一個節點,則為 true,如果沒有其他節點可讀取,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,將屬性值剖析成一個或多個 Text、EntityReference 或 EndEntity 節點。 + 如果傳回節點,則為 true。如果在初次呼叫時讀取器不在屬性節點,或者已經讀取全部屬性值,則為 false。空白的屬性 (例如 misc="") 會對含有 String.Empty 值的單一節點傳回 true。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以指定型别的物件形式讀取內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。例如,將 物件轉換為 xs:string 時,可以使用它。這個值可以是 null。 + 此內容的目標型別之格式不正確。 + 嘗試的轉換無效。 + + 值為 null。 + 目前節點不是受支援的節點型別。如需詳細資訊,請參閱下表。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取做為指定型别之物件的內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以 Boolean 的形式讀取目前位置上的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式讀取目前位置的文字內容。 + 雙精確度浮點數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式讀取目前位置的文字內容。 + 單精確度浮點數形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 32 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 64 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式,非同步讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以要求之類型的形式,非同步讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為雙精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 的形式,讀取目前的項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查目前節點為結尾標記,並使讀取器前進至下一個節點。 + 目前節點並非結尾標記,或在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,將所有的內容當做字串讀取,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。如果目前節點既不是項目也不是屬性,則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以字串形式非同步讀取所有內容,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,讀取代表這個節點及其所有子節點的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取表示這個節點及其所有子系的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查以確定目前節點為項目,然後使讀取器前進至下一個節點。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前節點為具有指定的 的項目,並使讀取器前進至下一個節點。 + 項目的限定名稱。 + 在輸入資料流中遇到錯誤的 XML。-或-項目的 不符合給指定的 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前內容節點為具有指定的 的項目,並使讀取器進至下一個節點。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 在輸入資料流中遇到錯誤的 XML。-或-找到的項目的 屬性不符合指定的引數。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器的狀態。 + 其中一個列舉值,這個值指定讀取器的狀態。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回新的 XmlReader 執行個體,可用於讀取目前的節點及其所有子代 (Descendant)。 + 新的 XML 讀取器執行個體設定為。呼叫方法會將新的讀取器置於呼叫之前為目前的節點方法。 + XML 讀取器未置於項目時呼叫這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 前進至下一個具有指定限定名稱的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。如果呼叫 時, 並未置於項目上,這個方法會傳回 false,而 的位置不變。 + 您要移至之項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 前進至下一個具有指定區域名稱和命名空間 URI 的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 您要移至之項目的本機名稱。 + 您要移至之項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 在找到具有指定限定名稱的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在找到具有指定區域名稱和命名空間 URI 的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 將 XmlReader 前進至下一個具有指定限定名稱的同層級項目。 + 如果已找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 將 XmlReader 前進至下一個具有指定區域名稱和命名空間 URI 的同層級項目。 + 如果找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的本機名稱。 + 您要移至之同層級項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 目前的節點沒有值 ( 為 false)。 + + 值為 null。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + XML 資料的語式不正確。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,解析 EntityReference 節點的實體參考。 + 讀取器並非位於 EntityReference 節點上;這個讀取器實作無法解析實體 ( 傳回 false)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得 物件,用於建立這個 執行個體。 + + 物件,用於建立這個讀取器執行個體。如果未使用 方法建立這個讀取器,則這個屬性會傳回 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 略過目前節點的子節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式略過目前節點的子節點。 + 目前節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,取得目前節點的文字值。 + 傳回值需視節點的 而定。下表列出具有傳回值的節點類型。所有其他節點型別都會傳回 String.Empty。節點類型值 Attribute屬性的值。 CDATACDATA 區段的內容。 Comment註解的內容。 DocumentType內部子集。 ProcessingInstruction除了目標之外的完整內容。 SignificantWhitespace在混合內容模型中標記間的泛空白字元。 Text文字節點的內容。 Whitespace標記間的泛空白字元。 XmlDeclaration宣告的內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得目前節點的 Common Language Runtime (CLR) 類型。 + CLR 類型,對應至節點的具類型值。預設值為 System.String。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:space 範圍。 + 其中一個 值。如果 xml:space 範圍不存在,這個屬性預設值為 XmlSpace.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為false。 + + + 取得或設定值,綁表示是否要執行字元檢查。 + true 表示執行字元檢查,否則為 false。預設值為 true。注意事項如果 正在處理文字資料,則它會始終檢查 XML 名稱和文字內容是否有效,而不論屬性設定。將 設為 false 會關閉字元實體參考的字元檢查。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出是否應在關閉讀取器時關閉基礎資料流或 + true 表示關閉讀取器時關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 將遵循的一致性層級。 + 其中一個列舉值,指定 XML 讀取器將強制執行的一致性層級。預設值為 + + + 取得或設定決定 DTD 處理的值。 + 其中一個列舉值,決定 DTD 處理方式。預設值為 + + + 取得或設定值,指出是否忽略註解。 + true 表示忽略註解,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略處理指示。 + true 表示忽略處理指示,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略不重要的空白字元。 + true 表示忽略泛空白字元,否則為 false。預設值為 false。 + + + 取得或設定 物件中的行號位移。 + 行號位移。預設值為 0。 + + + 取得或設定 物件中的行位置位移。 + 行位置位移。預設值為 0。 + + + 取得或設定值,指出文件中產生自展開實體的最大可允許字元數。 + 來自展開實體的最大可允許字元數。預設值為 0。 + + + 取得或設定值,指出 XML 文件中最大可允許字元數。零 (0) 的值表示對 XML 文件大小沒有限制。非零值指定大小上限,以字元為單位。 + XML 文件的最大可允許字元數。預設值為 0。 + + + 取得或設定用於原子化字串比較的 + + ,儲存使用這個 物件建立之所有 執行個體所使用的所有原子化字串。預設值為 null。如果這個值為 null,則建立的 執行個體會使用新的空 + + + 將設定類別的成員重設為其預設值。 + + + 取得目前的 xml:space 範圍。 + + + xml:space 範圍等於 default。 + + + 無 xml:space 範圍。 + + + xml:space 範圍等於 preserve。 + + + 表示寫入器,其可提供快速、非快取的順向方法來產生含有 XML 資料之資料流或檔案。 + + + 初始化 類別的新執行個體。 + + + 使用指定的資料流,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + The value is null. + + + 使用資料流和 物件,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + The value is null. + + + 使用指定的 物件,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 類別目前的執行個體所使用的資源全部釋出。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示會同時釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + 表示非同步 Flush 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,傳回最接近命名空間 URI 在目前命名空間範圍中定義的前置詞。 + 命名空間前置詞;如果在目前範圍中找不到符合的命名空間 URI,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 取得 物件,用於建立這個 執行個體。 + 用於建立這個寫入器執行個體的 物件。如果未使用 方法建立這個寫入器,則這個屬性會傳回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出在 的目前位置找到的所有屬性。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出在 中的目前位置找到的所有屬性。 + 表示非同步 WriteAttributes 作業的工作。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定的區域名稱與數值的屬性。 + 屬性的本機名稱。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定區域名稱、命名空間 URI 和值的屬性。 + 屬性的本機名稱。 + 與屬性相關聯的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出具有指定的前置詞、區域名稱、命名空間 URI 及其值的屬性。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出具有指定之前置詞、區域名稱、命名空間 URI 和值的屬性。 + 表示非同步 WriteAttributeString 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 Base64 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 base64 並寫出產生的文字。 + 表示非同步 WriteBase64 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 BinHex 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 BinHex 並寫出產生的文字。 + 表示非同步 WriteBinHex 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 要放在 CDATA 區塊中的文字。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 表示非同步 WriteCData 作業的工作。 + 要放在 CDATA 區塊中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,強制產生指定之 Unicode 字元值的字元實體。 + 要產生字元實體的 Unicode 字元。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式強制產生指定的 Unicode 字元值的字元實體。 + 表示非同步 WriteCharEntity 作業的工作。 + 要產生字元實體的 Unicode 字元。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,一次將文字寫入一個緩衝區。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式一次將文字寫入一個緩衝區。 + 表示非同步 WriteChars 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的註解 <!--...-->。 + 要放入註解中的文字。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定之文字的註解 <!--...-->。 + 表示非同步 WriteComment 作業的工作。 + 要放入註解中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + 表示非同步 WriteDocType 作業的工作。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱和值的項目。 + 項目的本機名稱。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱、命名空間 URI 和值的項目。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定的前置詞、區域名稱、命名空間 URI 和值的項目。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、區域名稱、命名空間 URI 和值的項目。 + 表示非同步 WriteElementString 作業的工作。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,會關閉先前的 呼叫。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉上一個 呼叫。 + 表示非同步 WriteEndAttribute 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + 表示非同步 WriteEndDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出如 &name; 的實體參考。 + 實體參考的名稱。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將實體參考寫出為 &name;。 + 表示非同步 WriteEntityRef 作業的工作。 + 實體參考的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteFullEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 要寫入的名稱。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 表示非同步 WriteName 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 要寫入的名稱。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 表示非同步 WriteNmToken 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 表示非同步 WriteNode 作業的工作。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步方式寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 表示非同步 WriteProcessingInstruction 作業的工作。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 表示非同步 WriteQualifiedName 作業的工作。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從字元緩衝區手動寫入未經處理的標記。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,從字串手動寫入未經處理的標記 (Raw Markup)。 + 包含要寫入之文字的字串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從字元緩衝區手動寫入未經處理的標記。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式從字串手動寫入未經處理的標記 (Raw Markup)。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱的屬性開頭。 + 屬性的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定的前置詞、區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、本機名稱和命名空間 URI 之屬性的開頭。 + 表示非同步 WriteStartAttribute 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告與獨立屬性。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告。 + 表示非同步 WriteStartDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告與獨立屬性。 + 表示非同步 WriteStartDocument 作業的工作。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定之區域名稱的開頭標記。 + 項目的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記並與指定的命名空間產生關聯。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。如果這個命名空間已經在範圍中並具有相關聯的前置詞,則寫入器也會自動寫入前置詞。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記,並與指定的命名空間與前置詞產生關聯。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的開頭標記,並將它與指定的命名空間與前置詞產生關聯。 + 表示非同步 WriteStartElement 作業的工作。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得寫入器的狀態。 + 其中一個 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的文字內容。 + 要寫入的文字。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的文字內容。 + 表示非同步 WriteString 作業的工作。 + 要寫入的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 表示非同步 WriteSurrogateCharEntity 作業的工作。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入物件值。 + 要寫入的物件值。附註:使用 .NET Framework 3.5 的版本時,這個方法會接受 做為參數。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入單精確度浮點數。 + 要寫入的單精確度浮點數。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出指定的空白字元。 + 空白字元的字串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的空白字元。 + 表示非同步 WriteWhitespace 作業的工作。 + 空白字元的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,取得表示目前 xml:space 範圍的 + XmlSpace,表示目前的 xml:space 範圍。值意義 None如果 xml:space 範圍不存在,這是預設值。Default目前的範圍為 xml:space="default"。Preserve目前的範圍為 xml:space="preserve"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定值,指出非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為 false。 + + + 取得或設定值,這個值表示 XML 寫入器是否應該檢查以確定文件中的所有字元都符合 W3C XML 1.0 建議事項中的<2.2 字元>一節。 + true 表示執行字元檢查,否則為 false。預設值為 true。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出呼叫 方法時, 是否也應該關閉基礎資料流或 + true 表示也關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 XML 寫入器檢查 XML 輸出的一致性層級。 + 其中一個指定一致性層級 (文件、片段或自動偵測) 的列舉值。預設值為 + + + 取得或設定要使用的文字編碼方式類型。 + 要使用的文字編碼方式。預設值為 Encoding.UTF8。 + + + 取得或設定值,指出是否要縮排項目。 + true 表示在新行和縮排上寫入個別項目,否則為 false。預設值為 false。 + + + 取得或設定縮排時使用的字元字串。當 屬性設為 true 時會使用這項設定。 + 縮排時使用的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設值為兩個空格。 + The value assigned to the is null. + + + 取得或設定值,這個值表示 是否應該在寫入 XML 內容時移除重複的命名空間宣告。預設行為是讓寫入器輸出寫入器命名空間解析程式中出現的所有命名空間宣告。 + + 列舉類型,用來指定是否要移除 中的重複命名空間宣告。 + + + 取得或設定用於分行符號的字元字串。 + 用於分行符號的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設為 \r\n (歸位字元、新行)。 + The value assigned to the is null. + + + 取得或設定值,指出是否要將輸出中的分行符號標準化。 + 其中一個 值。預設值為 + + + 取得或設定值,指出是否將屬性寫在新行上。 + true 表示將屬性寫在獨立的行上,否則為 false。預設值為 false。注意事項當 屬性值為 false 時,這項設定不會有任何作用。當 設為 true 時,會在每個屬性之前加上新行和一個額外的縮排層級。 + + + 取得或設定值,指出是否省略 XML 宣告。 + true 表示省略 XML 宣告,否則為 false。預設值為 false,表示會寫入 XML 宣告。 + + + 將設定類別的成員重設為其預設值。 + + + 取得或設定值,指出 是否會在呼叫 方法時,將結尾標記加入所有未封閉的項目標記。 + 如果將關閉所有未封閉的項目標記,則為 true,否則為 false。預設值是 true。 + + + 依全球資訊網協會 (W3C) XML 結構描述第 1 部分:結構及XML 結構描述第 2 部分:資料類型 所規定之 XML 結構描述的記憶體中表示。 + + + 指示屬性 (Attribute) 或項目是否需要以命名空間前置詞限定。 + + + 項目和屬性格式未在結構描述中指定。 + + + 項目和屬性必須以命名空間前置詞限定。 + + + 項目和屬性不需要以命名空間前置詞限定。 + + + 為 XML 序列化和還原序列化提供自訂格式化。 + + + 這個方法應保留且不應予以使用。實作 IXmlSerializable 介面時,您應該從這個方法傳回 null (在 Visual Basic 中為 Nothing),而且如果需要指定自訂結構描述,請改為將 套用至類別。 + + ,描述物件的 XML 表示,該物件由 方法產生,由 方法取用。 + + + 從物件的 XML 表示產生該物件。 + 還原序列化物件的 資料流。 + + + 將物件轉換成其 XML 表示。 + 序列化物件的 資料流。 + + + 套用至型別後,儲存傳回 XML 結構描述之型別的靜態方法名稱以及控制型別之序列化 (Serialization) 的 (或用於匿名型別的 )。 + + + 初始化 類別的新執行個體,並採用提供型別之 XML 結構描述的靜態方法名稱。 + 要實作之靜態方法的名稱。 + + + 取得或設定值,以便判斷目標類別是否為萬用字元,或者該類別的結構描述是否僅含有 xs:any 項目。 + 如果該類別為萬用字元,或者結構描述僅含有 xs:any 項目,則為 true,否則為 false。 + + + 取得提供型別之 XML 結構描述的靜態方法名稱以及其 XML 結構描述資料型別的名稱。 + 由 XML 基礎結構叫用以傳回 XML 結構描述之方法的名稱。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..af4bbce Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..e2f9250 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/System.Xml.ReaderWriter.xml @@ -0,0 +1,2608 @@ + + + + System.Xml.ReaderWriter + + + + Specifies the amount of input or output checking that and objects perform. + + + The or object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another or object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.See the and properties for details on how the compliance level is determined. + + + The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C. + + + The XML data is a well-formed XML fragment, as defined by the W3C. + + + Specifies the options for processing DTDs. The enumeration is used by the class. + + + Causes the DOCTYPE element to be ignored. No DTD processing occurs. + + + Specifies that when a DTD is encountered, an is thrown with a message that states that DTDs are prohibited. This is the default behavior. + + + Provides an interface to enable a class to return line and position information. + + + Gets a value indicating whether the class can return line information. + true if and can be provided; otherwise, false. + + + Gets the current line number. + The current line number or 0 if no line information is available (for example, returns false). + + + Gets the current line position. + The current line position or 0 if no line information is available (for example, returns false). + + + Provides read-only access to a set of prefix and namespace mappings. + + + Gets a collection of defined prefix-namespace mappings that are currently in scope. + An that contains the current in-scope namespaces. + An value that specifies the type of namespace nodes to return. + + + Gets the namespace URI mapped to the specified prefix. + The namespace URI that is mapped to the prefix; null if the prefix is not mapped to a namespace URI. + The prefix whose namespace URI you wish to find. + + + Gets the prefix that is mapped to the specified namespace URI. + The prefix that is mapped to the namespace URI; null if the namespace URI is not mapped to a prefix. + The namespace URI whose prefix you wish to find. + + + Specifies whether to remove duplicate namespace declarations in the . + + + Specifies that duplicate namespace declarations will not be removed. + + + Specifies that duplicate namespace declarations will be removed. For the duplicate namespace to be removed, the prefix and the namespace must match. + + + Implements a single-threaded . + + + Initializes a new instance of the NameTable class. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if one already exists in the NameTable. If is zero, String.Empty is returned. + The character array containing the string to add. + The zero-based index into the array specifying the first character of the string. + The number of characters in the string. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if it already exists in the NameTable. + The string to add. + + is null. + + + Gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Gets the atomized string with the specified value. + The atomized string object or null if the string has not already been atomized. + The name to find. + + is null. + + + Specifies how to handle line breaks. + + + New line characters are entitized. This setting preserves all characters when the output is read by a normalizing . + + + The new line characters are unchanged. The output is the same as the input. + + + New line characters are replaced to match the character specified in the property. + + + Specifies the state of the reader. + + + The method has been called. + + + The end of the file has been reached successfully. + + + An error occurred that prevents the read operation from continuing. + + + The Read method has not been called. + + + The Read method has been called. Additional methods may be called on the reader. + + + Specifies the state of the . + + + Indicates that an attribute value is being written. + + + Indicates that the method has been called. + + + Indicates that element content is being written. + + + Indicates that an element start tag is being written. + + + An exception has been thrown, which has left the in an invalid state. You can call the method to put the in the state. Any other method calls results in an . + + + Indicates that the prolog is being written. + + + Indicates that a Write method has not yet been called. + + + Encodes and decodes XML names, and provides methods for converting between common language runtime types and XML Schema definition language (XSD) types. When converting data types, the values returned are locale-independent. + + + Decodes a name. This method does the reverse of the and methods. + The decoded name. + The name to be transformed. + + + Converts the name to a valid XML local name. + The encoded name. + The name to be encoded. + + + Converts the name to a valid XML name. + Returns the name with any invalid characters replaced by an escape string. + A name to be translated. + + + Verifies the name is valid according to the XML specification. + The encoded name. + The name to be encoded. + + + Converts the to a equivalent. + A Boolean value, that is, true or false. + The string to convert. + + is null. + + does not represent a Boolean value. + + + Converts the to a equivalent. + A Byte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Char representing the single character. + The string containing a single character to convert. + The value of the parameter is null. + The parameter contains more than one character. + + + Converts the to a using the specified + A equivalent of the . + The value to convert. + One of the values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert.Note   The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values. For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + The format from which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against this format. + + is null. + + or is an empty string or is not in the specified format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + An array of formats from which can be converted. Each format in can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against one of these formats. + + + Converts the to a equivalent. + A Decimal equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Double equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Guid equivalent of the string. + The string to convert. + + + Converts the to a equivalent. + An Int16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An SByte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Single equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a . + A string representation of the Boolean, that is, "true" or "false". + The value to convert. + + + Converts the to a . + A string representation of the Byte. + The value to convert. + + + Converts the to a . + A string representation of the Char. + The value to convert. + + + Converts the to a using the specified. + A equivalent of the . + The value to convert. + One of the values that specify how to treat the value. + The value is not valid. + The or value is null. + + + Converts the supplied to a . + A representation of the supplied . + The to be converted. + + + Converts the supplied to a in the specified format. + A representation in the specified format of the supplied . + The to be converted. + The format to which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Converts the to a . + A string representation of the Decimal. + The value to convert. + + + Converts the to a . + A string representation of the Double. + The value to convert. + + + Converts the to a . + A string representation of the Guid. + The value to convert. + + + Converts the to a . + A string representation of the Int16. + The value to convert. + + + Converts the to a . + A string representation of the Int32. + The value to convert. + + + Converts the to a . + A string representation of the Int64. + The value to convert. + + + Converts the to a . + A string representation of the SByte. + The value to convert. + + + Converts the to a . + A string representation of the Single. + The value to convert. + + + Converts the to a . + A string representation of the TimeSpan. + The value to convert. + + + Converts the to a . + A string representation of the UInt16. + The value to convert. + + + Converts the to a . + A string representation of the UInt32. + The value to convert. + + + Converts the to a . + A string representation of the UInt64. + The value to convert. + + + Converts the to a equivalent. + A TimeSpan equivalent of the string. + The string to convert. The string format must conform to the W3C XML Schema Part 2: Datatypes recommendation for duration. + + is not in correct format to represent a TimeSpan value. + + + Converts the to a equivalent. + A UInt16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifies that the name is a valid name according to the W3C Extended Markup Language recommendation. + The name, if it is a valid XML name. + The name to verify. + + is not a valid XML name. + + is null or String.Empty. + + + Verifies that the name is a valid NCName according to the W3C Extended Markup Language recommendation. An NCName is a name that cannot contain a colon. + The name, if it is a valid NCName. + The name to verify. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifies that the string is a valid NMTOKEN according to the W3C XML Schema Part2: Datatypes recommendation + The name token, if it is a valid NMTOKEN. + The string you wish to verify. + The string is not a valid name token. + + is null. + + + Returns the passed in string instance if all the characters in the string argument are valid public id characters. + Returns the passed-in string if all the characters in the argument are valid public id characters. + + that contains the id to validate. + + + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters. + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters, otherwise null. + + to verify. + + + Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + Returns the passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + + that contains characters to verify. + + + Specifies how to treat the time value when converting between string and . + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + Time zone information should be preserved when converting. + + + Treat as a local time if a is being converted to a string. + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + Returns detailed information about the last exception. + + + Initializes a new instance of the XmlException class. + + + Initializes a new instance of the XmlException class with a specified error message. + The error description. + + + Initializes a new instance of the XmlException class. + The description of the error condition. + The that threw the XmlException, if any. This value can be null. + + + Initializes a new instance of the XmlException class with the specified message, inner exception, line number, and line position. + The error description. + The exception that is the cause of the current exception. This value can be null. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets the line number indicating where the error occurred. + The line number indicating where the error occurred. + + + Gets the line position indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets a message describing the current exception. + The error message that explains the reason for the exception. + + + Resolves, adds, and removes namespaces to a collection and provides scope management for these namespaces. + + + Initializes a new instance of the class with the specified . + The to use. + null is passed to the constructor + + + Adds the given namespace to the collection. + The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.NoteIf the will be used for resolving namespaces in an XML Path Language (XPath) expression, a prefix must be specified. If an XPath expression does not include a prefix, it is assumed that the namespace Uniform Resource Identifier (URI) is the empty namespace. For more information about XPath expressions and the , refer to the and methods. + The namespace to add. + The value for is "xml" or "xmlns". + The value for or is null. + + + Gets the namespace URI for the default namespace. + Returns the namespace URI for the default namespace, or String.Empty if there is no default namespace. + + + Returns an enumerator to use to iterate through the namespaces in the . + An containing the prefixes stored by the . + + + Gets a collection of namespace names keyed by prefix which can be used to enumerate the namespaces currently in scope. + A collection of namespace and prefix pairs currently in scope. + An enumeration value that specifies the type of namespace nodes to return. + + + Gets a value indicating whether the supplied prefix has a namespace defined for the current pushed scope. + true if there is a namespace defined; otherwise, false. + The prefix of the namespace you want to find. + + + Gets the namespace URI for the specified prefix. + Returns the namespace URI for or null if there is no mapped namespace. The returned string is atomized.For more information on atomized strings, see the class. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass String.Empty. + + + Finds the prefix declared for the given namespace URI. + The matching prefix. If there is no mapped prefix, the method returns String.Empty. If a null value is supplied, then null is returned. + The namespace to resolve for the prefix. + + + Gets the associated with this object. + The used by this object. + + + Pops a namespace scope off the stack. + true if there are namespace scopes left on the stack; false if there are no more namespaces to pop. + + + Pushes a namespace scope onto the stack. + + + Removes the given namespace for the given prefix. + The prefix for the namespace + The namespace to remove for the given prefix. The namespace removed is from the current namespace scope. Namespaces outside the current scope are ignored. + The value of or is null. + + + Defines the namespace scope. + + + All namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces that are defined locally at the current node. + + + Table of atomized string objects. + + + Initializes a new instance of the class. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. If length is zero, String.Empty is returned. + The character array containing the name to add. + Zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. + The name to add. + + is null. + + + When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to look up. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, gets the atomized string containing the same value as the specified string. + The atomized string or null if the string has not already been atomized. + The name to look up. + + is null. + + + Specifies the type of node. + + + An attribute (for example, id='123' ). + + + A CDATA section (for example, <![CDATA[my escaped text]]> ). + + + A comment (for example, <!-- my comment --> ). + + + A document object that, as the root of the document tree, provides access to the entire XML document. + + + A document fragment. + + + The document type declaration, indicated by the following tag (for example, <!DOCTYPE...> ). + + + An element (for example, <item> ). + + + An end element tag (for example, </item> ). + + + Returned when XmlReader gets to the end of the entity replacement as a result of a call to . + + + An entity declaration (for example, <!ENTITY...> ). + + + A reference to an entity (for example, &num; ). + + + This is returned by the if a Read method has not been called. + + + A notation in the document type declaration (for example, <!NOTATION...> ). + + + A processing instruction (for example, <?pi test?> ). + + + White space between markup in a mixed content model or white space within the xml:space="preserve" scope. + + + The text content of a node. + + + White space between markup. + + + The XML declaration (for example, <?xml version='1.0'?> ). + + + Provides all the context information required by the to parse an XML fragment. + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD subset is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, encoding, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, and xml:space values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, xml:space, and encoding. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information on atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Gets or sets the base URI. + The base URI to use to resolve the DTD file. + + + Gets or sets the name of the document type declaration. + The name of the document type declaration. + + + Gets or sets the encoding type. + An object indicating the encoding type. + + + Gets or sets the internal DTD subset. + The internal DTD subset. For example, this property returns everything between the square brackets <!DOCTYPE doc [...]>. + + + Gets or sets the . + The XmlNamespaceManager. + + + Gets the used to atomize strings. For more information on atomized strings, see . + The XmlNameTable. + + + Gets or sets the public identifier. + The public identifier. + + + Gets or sets the system identifier. + The system identifier. + + + Gets or sets the current xml:lang scope. + The current xml:lang scope. If there is no xml:lang in scope, String.Empty is returned. + + + Gets or sets the current xml:space scope. + An value indicating the xml:space scope. + + + Represents an XML qualified name. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with the specified name. + The local name to use as the name of the object. + + + Initializes a new instance of the class with the specified name and namespace. + The local name to use as the name of the object. + The namespace for the object. + + + Provides an empty . + + + Determines whether the specified object is equal to the current object. + true if the two are the same instance object; otherwise, false. + The to compare. + + + Returns the hash code for the . + A hash code for this object. + + + Gets a value indicating whether the is empty. + true if name and namespace are empty strings; otherwise, false. + + + Gets a string representation of the qualified name of the . + A string representation of the qualified name or String.Empty if a name is not defined for the object. + + + Gets a string representation of the namespace of the . + A string representation of the namespace or String.Empty if a namespace is not defined for the object. + + + Compares two objects. + true if the two objects have the same name and namespace values; otherwise, false. + An to compare. + An to compare. + + + Compares two objects. + true if the name and namespace values for the two objects differ; otherwise, false. + An to compare. + An to compare. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + The name of the object. + The namespace of the object. + + + Represents a reader that provides fast, noncached, forward-only access to XML data.To browse the .NET Framework source code for this type, see the Reference Source. + + + Initializes a new instance of the XmlReader class. + + + When overridden in a derived class, gets the number of attributes on the current node. + The number of attributes on the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the base URI of the current node. + The base URI of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the binary content read methods. + true if the binary content read methods are implemented; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the method. + true if the implements the method; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether this reader can parse and resolve entities. + true if the reader can parse and resolve entities; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Creates a new instance using the specified stream with default settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + + + Creates a new instance with the specified stream and settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The value is null. + + + Creates a new instance using the specified stream, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The stream that contains the XML data. The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition. This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration is not used by the XML reader to decode the data stream. + The value is null. + + + Creates a new instance by using the specified text reader and settings. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new . This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition.This value can be null. + The value is null. + The and properties both contain values. (Only one of these NameTable properties can be set and used). + + + Creates a new instance with specified URI. + An object that is used to read the XML data in the stream. + The URI for the file that contains the XML data. The class is used to convert the path to a canonical data representation. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + The file identified by the URI does not exist. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified URI and settings. + An object that is used to read the XML data in the stream. + The URI for the file containing the XML data. The object on the object is used to convert the path to a canonical data representation. If is null, a new object is used. + The settings for the new instance. This value can be null. + The value is null. + The file specified by the URI cannot be found. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified XML reader and settings. + An object that is wrapped around the specified object. + The object that you want to use as the underlying XML reader. + The settings for the new instance.The conformance level of the object must either match the conformance level of the underlying reader, or it must be set to . + The value is null. + If the object specifies a conformance level that is not consistent with conformance level of the underlying reader.-or-The underlying is in an or state. + + + When overridden in a derived class, gets the depth of the current node in the XML document. + The depth of the current node in the XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the reader is positioned at the end of the stream. + true if the reader is positioned at the end of the stream; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. This method does not move the reader. + The index of the attribute. The index is zero-based. (The first attribute has index 0.) + + is out of range. It must be non-negative and less than the size of the attribute collection. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. + The qualified name of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. This method does not move the reader. + The local name of the attribute. + The namespace URI of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously gets the value of the current node. + The value of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Gets a value indicating whether the current node has any attributes. + true if the current node has attributes; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node can have a . + true if the node on which the reader is currently positioned can have a Value; otherwise, false. If false, the node has a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema. + true if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; false if the attribute value was explicitly set. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an empty element (for example, <MyElement/>). + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a value indicating whether the string argument is a valid XML name. + true if the name is valid; otherwise, false. + The name to validate. + The value is null. + + + Returns a value indicating whether or not the string argument is a valid XML name token. + true if it is a valid name token; otherwise false. + The name token to validate. + The value is null. + + + Calls and tests if the current content node is a start tag or empty element tag. + true if finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the property of the element found matches the given argument. + true if the resulting node is an element and the Name property matches the specified string. false if a node type other than XmlNodeType.Element was found or if the element Name property does not match the specified string. + The string matched against the Name property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the and properties of the element found match the given strings. + true if the resulting node is an element. false if a node type other than XmlNodeType.Element was found or if the LocalName and NamespaceURI properties of the element do not match the specified strings. + The string to match against the LocalName property of the element found. + The string to match against the NamespaceURI property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found, null is returned. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found, null is returned. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the local name of the current node. + The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, resolves a namespace prefix in the current element's scope. + The namespace URI to which the prefix maps or null if no matching prefix is found. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the attribute with the specified index. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter has a negative value. + + + When overridden in a derived class, moves to the attribute with the specified . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + When overridden in a derived class, moves to the attribute with the specified and . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Checks whether the current node is a content (non-white space text, CDATA, Element, EndElement, EntityReference, or EndEntity) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: ProcessingInstruction, DocumentType, Comment, Whitespace, or SignificantWhitespace. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + Incorrect XML encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously checks whether the current node is a content node. If the node is not a content node, the reader skips ahead to the next content node or end of file. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, moves to the element that contains the current attribute node. + true if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); false if the reader is not positioned on an attribute (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the first attribute. + true if an attribute exists (the reader moves to the first attribute); otherwise, false (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the next attribute. + true if there is a next attribute; false if there are no more attributes. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the qualified name of the current node. + The qualified name of the current node. For example, Name is bk:book for the element <bk:book>.The name returned is dependent on the of the node. The following node types return the listed values. All other node types return an empty string.Node type Name AttributeThe name of the attribute. DocumentTypeThe document type name. ElementThe tag name. EntityReferenceThe name of the entity referenced. ProcessingInstructionThe target of the processing instruction. XmlDeclarationThe literal string xml. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. + The namespace URI of the current node; otherwise an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the associated with this implementation. + The XmlNameTable enabling you to get the atomized version of a string within the node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the type of the current node. + One of the enumeration values that specify the type of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace prefix associated with the current node. + The namespace prefix associated with the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads the next node from the stream. + true if the next node was read successfully; otherwise, false. + An error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the next node from the stream. + true if the next node was read successfully; false if there are no more nodes to read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, parses the attribute value into one or more Text, EntityReference, or EndEntity nodes. + true if there are nodes to return.false if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.An empty attribute, such as, misc="", returns true with a single node with a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. For example, this can be used when converting an object to an xs:string.This value can be null. + The content is not in the correct format for the target type. + The attempted cast is not valid. + The value is null. + The current node is not a supported node type. See the table below for details. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a Boolean. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content at the current position as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a double-precision floating-point number. + The text content as a double-precision floating-point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a single-precision floating point number. + The text content at the current position as a single-precision floating point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 32-bit signed integer. + The text content as a 32-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 64-bit signed integer. + The text content as a 64-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a object. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a double-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as single-precision floating-point number. + The element content as a single-precision floating point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a single-precision floating-point number. + The element content as a single-precision floating point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as a object. + The element content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current content node is an end tag and advances the reader to the next node. + The current node is not an end tag or if incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.If the current node is neither an element nor attribute, an empty string is returned. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current node is an element and advances the reader to the next node. + Incorrect XML was encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and advances the reader to the next node. + The qualified name of the element. + Incorrect XML was encountered in the input stream. -or- The of the element does not match the given . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and and advances the reader to the next node. + The local name of the element. + The namespace URI of the element. + Incorrect XML was encountered in the input stream.-or-The and properties of the element found do not match the given arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the state of the reader. + One of the enumeration values that specifies the state of the reader. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a new XmlReader instance that can be used to read the current node, and all its descendants. + A new XML reader instance set to . Calling the method positions the new reader on the node that was current before the call to the method. + The XML reader isn't positioned on an element when this method is called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Advances the to the next descendant element with the specified qualified name. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The qualified name of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the to the next descendant element with the specified local name and namespace URI. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The local name of the element you wish to move to. + The namespace URI of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads until an element with the specified qualified name is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The qualified name of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Reads until an element with the specified local name and namespace URI is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The local name of the element. + The namespace URI of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Advances the XmlReader to the next sibling element with the specified qualified name. + true if a matching sibling element is found; otherwise false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The qualified name of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the XmlReader to the next sibling element with the specified local name and namespace URI. + true if a matching sibling element is found; otherwise, false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The local name of the sibling element you wish to move to. + The namespace URI of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + The current node does not have a value ( is false). + The value is null. + The index into the buffer, or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The XML data is not well-formed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, resolves the entity reference for EntityReference nodes. + The reader is not positioned on an EntityReference node; this implementation of the reader cannot resolve entities ( returns false). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this reader instance. If this reader was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Skips the children of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously skips the children of the current node. + The current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the text value of the current node. + The value returned depends on the of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space between markup in a mixed content model. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets The Common Language Runtime (CLR) type for the current node. + The CLR type that corresponds to the typed value of the node. The default is System.String. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:space scope. + One of the values. If no xml:space scope exists, this property defaults to XmlSpace.None. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value indicating whether to do character checking. + true to do character checking; otherwise false. The default is true.NoteIf the is processing text data, it always checks that the XML names and text content are valid, regardless of the property setting. Setting to false turns off character checking for character entity references. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. + true to close the underlying stream or when the reader is closed; otherwise false. The default is false. + + + Gets or sets the level of conformance which the will comply. + One of the enumeration values that specifies the level of conformance that the XML reader will enforce. The default is . + + + Gets or sets a value that determines the processing of DTDs. + One of the enumeration values that determines the processing of DTDs. The default is . + + + Gets or sets a value indicating whether to ignore comments. + true to ignore comments; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore processing instructions. + true to ignore processing instructions; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore insignificant white space. + true to ignore white space; otherwise false. The default is false. + + + Gets or sets line number offset of the object. + The line number offset. The default is 0. + + + Gets or sets line position offset of the object. + The line position offset. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in a document that result from expanding entities. + The maximum allowable number of characters from expanded entities. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in an XML document. A zero (0) value means no limits on the size of the XML document. A non-zero value specifies the maximum size, in characters. + The maximum allowable number of characters in an XML document. The default is 0. + + + Gets or sets the used for atomized string comparisons. + The that stores all the atomized strings used by all instances created using this object.The default is null. The created instance will use a new empty if this value is null. + + + Resets the members of the settings class to their default values. + + + Specifies the current xml:space scope. + + + The xml:space scope equals default. + + + No xml:space scope. + + + The xml:space scope equals preserve. + + + Represents a writer that provides a fast, non-cached, forward-only way to generate streams or files that contain XML data. + + + Initializes a new instance of the class. + + + Creates a new instance using the specified stream. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The value is null. + + + Creates a new instance using the stream and object. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which to write to. Content written by the is appended to the . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which to write to. Content written by the is appended to the . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified object. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The value is null. + + + Creates a new instance using the specified and objects. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + The task that represents the asynchronous Flush operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, returns the closest prefix defined in the current namespace scope for the namespace URI. + The matching prefix or null if no matching namespace URI is found in the current scope. + The namespace URI whose prefix you want to find. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this writer instance. If this writer was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out all the attributes found at the current position in the . + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out all the attributes found at the current position in the . + The task that represents the asynchronous WriteAttributes operation. + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the attribute with the specified local name and value. + The local name of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value. + The local name of the attribute. + The namespace URI to associate with the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the attribute with the specified prefix, local name, namespace URI, and value. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the attribute with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteAttributeString operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as Base64 and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text. + The task that represents the asynchronous WriteBase64 operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as BinHex and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as BinHex and writes out the resulting text. + The task that represents the asynchronous WriteBinHex operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a <![CDATA[...]]> block containing the specified text. + The text to place inside the CDATA block. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a <![CDATA[...]]> block containing the specified text. + The task that represents the asynchronous WriteCData operation. + The text to place inside the CDATA block. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, forces the generation of a character entity for the specified Unicode character value. + The Unicode character for which to generate a character entity. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously forces the generation of a character entity for the specified Unicode character value. + The task that represents the asynchronous WriteCharEntity operation. + The Unicode character for which to generate a character entity. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes text one buffer at a time. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes text one buffer at a time. + The task that represents the asynchronous WriteChars operation. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a comment <!--...--> containing the specified text. + Text to place inside the comment. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a comment <!--...--> containing the specified text. + The task that represents the asynchronous WriteComment operation. + Text to place inside the comment. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the DOCTYPE declaration with the specified name and optional attributes. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the DOCTYPE declaration with the specified name and optional attributes. + The task that represents the asynchronous WriteDocType operation. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes an element with the specified local name and value. + The local name of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified local name, namespace URI, and value. + The local name of the element. + The namespace URI to associate with the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified prefix, local name, namespace URI, and value. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes an element with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteElementString operation. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes the previous call. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes the previous call. + The task that represents the asynchronous WriteEndAttribute operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes any open elements or attributes and puts the writer back in the Start state. + The XML document is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes any open elements or attributes and puts the writer back in the Start state. + The task that represents the asynchronous WriteEndDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out an entity reference as &name;. + The name of the entity reference. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out an entity reference as &name;. + The task that represents the asynchronous WriteEntityRef operation. + The name of the entity reference. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteFullEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteName operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteNmToken operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The task that represents the asynchronous WriteNode operation. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The name of the processing instruction. + The text to include in the processing instruction. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The task that represents the asynchronous WriteProcessingInstruction operation. + The name of the processing instruction. + The text to include in the processing instruction. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The local name to write. + The namespace URI for the name. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The task that represents the asynchronous WriteQualifiedName operation. + The local name to write. + The namespace URI for the name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes raw markup manually from a character buffer. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes raw markup manually from a string. + String containing the text to write. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes raw markup manually from a character buffer. + The task that represents the asynchronous WriteRaw operation. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes raw markup manually from a string. + The task that represents the asynchronous WriteRaw operation. + String containing the text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes the start of an attribute with the specified local name. + The local name of the attribute. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the start of an attribute with the specified local name and namespace URI. + The local name of the attribute. + The namespace URI of the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the start of an attribute with the specified prefix, local name, and namespace URI. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the start of an attribute with the specified prefix, local name, and namespace URI. + The task that represents the asynchronous WriteStartAttribute operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the XML declaration with the version "1.0". + The task that represents the asynchronous WriteStartDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes the XML declaration with the version "1.0" and the standalone attribute. + The task that represents the asynchronous WriteStartDocument operation. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a start tag with the specified local name. + The local name of the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace. + The local name of the element. + The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix, the writer automatically writes that prefix also. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace and prefix. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the specified start tag and associates it with the given namespace and prefix. + The task that represents the asynchronous WriteStartElement operation. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the state of the writer. + One of the values. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the given text content. + The text to write. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the given text content. + The task that represents the asynchronous WriteString operation. + The text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, generates and writes the surrogate character entity for the surrogate character pair. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously generates and writes the surrogate character entity for the surrogate character pair. + The task that represents the asynchronous WriteSurrogateCharEntity operation. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the object value. + The object value to write.Note   With the release of the .NET Framework 3.5, this method accepts as a parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a single-precision floating-point number. + The single-precision floating-point number to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the given white space. + The string of white space characters. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the given white space. + The task that represents the asynchronous WriteWhitespace operation. + The string of white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets an representing the current xml:space scope. + An XmlSpace representing the current xml:space scope.Value Meaning NoneThis is the default if no xml:space scope exists.DefaultThe current scope is xml:space="default".PreserveThe current scope is xml:space="preserve". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets a value that indicates whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value that indicates whether the XML writer should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation. + true to do character checking; otherwise, false. The default is true. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the should also close the underlying stream or when the method is called. + true to also close the underlying stream or ; otherwise, false. The default is false. + + + Gets or sets the level of conformance that the XML writer checks the XML output for. + One of the enumeration values that specifies the level of conformance (document, fragment, or automatic detection). The default is . + + + Gets or sets the type of text encoding to use. + The text encoding to use. The default is Encoding.UTF8. + + + Gets or sets a value indicating whether to indent elements. + true to write individual elements on new lines and indent; otherwise, false. The default is false. + + + Gets or sets the character string to use when indenting. This setting is used when the property is set to true. + The character string to use when indenting. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is two spaces. + The value assigned to the is null. + + + Gets or sets a value that indicates whether the should remove duplicate namespace declarations when writing XML content. The default behavior is for the writer to output all namespace declarations that are present in the writer's namespace resolver. + The enumeration used to specify whether to remove duplicate namespace declarations in the . + + + Gets or sets the character string to use for line breaks. + The character string to use for line breaks. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is \r\n (carriage return, new line). + The value assigned to the is null. + + + Gets or sets a value indicating whether to normalize line breaks in the output. + One of the values. The default is . + + + Gets or sets a value indicating whether to write attributes on a new line. + true to write attributes on individual lines; otherwise, false. The default is false.NoteThis setting has no effect when the property value is false.When is set to true, each attribute is pre-pended with a new line and one extra level of indentation. + + + Gets or sets a value indicating whether to omit an XML declaration. + true to omit the XML declaration; otherwise, false. The default is false, an XML declaration is written. + + + Resets the members of the settings class to their default values. + + + Gets or sets a value that indicates whether the will add closing tags to all unclosed element tags when the method is called. + true if all unclosed element tags will be closed out; otherwise, false. The default value is true. + + + An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes specifications. + + + Indicates if attributes or elements need to be qualified with a namespace prefix. + + + Element and attribute form is not specified in the schema. + + + Elements and attributes must be qualified with a namespace prefix. + + + Elements and attributes are not required to be qualified with a namespace prefix. + + + Provides custom formatting for XML serialization and deserialization. + + + This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the to the class. + An that describes the XML representation of the object that is produced by the method and consumed by the method. + + + Generates an object from its XML representation. + The stream from which the object is deserialized. + + + Converts an object into its XML representation. + The stream to which the object is serialized. + + + When applied to a type, stores the name of a static method of the type that returns an XML schema and a (or for anonymous types) that controls the serialization of the type. + + + Initializes a new instance of the class, taking the name of the static method that supplies the type's XML schema. + The name of the static method that must be implemented. + + + Gets or sets a value that determines whether the target class is a wildcard, or that the schema for the class has contains only an xs:any element. + true, if the class is a wildcard, or if the schema contains only the xs:any element; otherwise, false. + + + Gets the name of the static method that supplies the type's XML schema and the name of its XML Schema data type. + The name of the method that is invoked by the XML infrastructure to return an XML schema. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/de/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/de/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..87bbef9 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/de/System.Xml.ReaderWriter.xml @@ -0,0 +1,2602 @@ + + + + System.Xml.ReaderWriter + + + + Gibt den Umfang der Eingabe- oder Ausgabeüberprüfung an, die von dem -Objekt und dem -Objekt ausgeführt wird. + + + Das -Objekt oder das -Objekt erkennen automatisch, ob eine Dokumentebenen- oder Fragmentebenenprüfung ausgeführt werden soll, und nehmen die entsprechende Prüfung vor.Wenn Sie ein weiteres - oder -Objekt umschließen, wird für das äußere Objekt keine zusätzliche Übereinstimmungsprüfung vorgenommen.Die Übereinstimmungsprüfung wird dem zugrunde liegenden Objekt überlassen.Weitere Details dahingehend, wie die Übereinstimmungsprüfung festgelegt wird, finden Sie unter den - und den -Eigenschaften. + + + Die XML-Daten entsprechen den Regeln für ein wohlgeformtes XML-Dokument, Version 1.0, wie diese vom World Wide Web Consortium (W3C) festgelegt sind. + + + Die XML-Daten stellen ein wohlgeformtes XML-Fragment dar, wie dies vom World Wide Web Consortium (W3C) festgelegt ist. + + + Gibt die Optionen zum Verarbeiten von DTDs an.Die -Enumeration wird von der -Klasse verwendet. + + + Führt dazu, dass das DOCTYPE-Element ignoriert wird.Keine DTD-Verarbeitung wird durchgeführt. + + + Gibt an, dass beim Auftreten einer DTD eine mit der Meldung ausgelöst wird, dass DTDs nicht zulässig sind.Dies ist das Standardverhalten. + + + Stellt eine Schnittstelle bereit, über die eine Klasse Zeilen- und Positionsinformationen zurückgeben kann. + + + Ruft einen Wert ab, der angibt, ob die Klasse Zeileninformationen zurückgeben kann. + true, wenn und angegeben werden können, andernfalls false. + + + Ruft die aktuelle Zeilennummer ab. + Die aktuelle Zeilennummer oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Ruft die aktuelle Zeilenposition ab. + Die aktuelle Zeilenposition oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Stellt den schreibgeschützten Zugriff auf eine Gruppe von Präfix- und Namespacezuordnungen bereit. + + + Ruft eine Auflistung von definierten Präfix-Namespace-Zuordnungen ab, die sich derzeit im Gültigkeitsbereich befinden. + Ein , das die derzeit im Gültigkeitsbereich enthaltenen Namespaces enthält. + Ein -Wert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft den dem angegebenen Präfix zugeordneten Namespace-URI ab. + Der Namespace-URI, der dem Präfix zugeordnet ist. null, wenn das Präfix keinem Namespace-URI zugeordnet ist. + Das Präfix, dessen Namespace-URI gesucht werden soll. + + + Ruft das Präfix ab, das dem angegebenen Namespace-URI zugeordnet ist. + Das Präfix, das dem Namespace-URI zugeordnet ist; null, wenn der Namespace-URI keinem Präfix zugeordnet ist. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + + Gibt an, ob doppelte Namespacedeklarationen im entfernt werden sollen. + + + Gibt an, dass doppelte Namespacedeklarationen nicht entfernt werden. + + + Gibt an, dass doppelte Namespacedeklarationen entfernt werden.Voraussetzung für das Entfernen des doppelten Namespace ist, dass Präfix und Namespace übereinstimmen. + + + Implementiert eine Singlethread-. + + + Initialisiert eine neue Instanz der NameTable-Klasse. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit der hinzuzufügenden Zeichenfolge. + Der nullbasierte Index im Array, der das erste Zeichen der Zeichenfolge angibt. + Die Anzahl der Zeichen in der Zeichenfolge. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist. + Die hinzuzufügende Zeichenfolge. + + ist null. + + + Ruft die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem gesuchten Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft die atomisierte Zeichenfolge mit dem angegebenen Wert ab. + Das atomisierte Zeichenfolgenobjekt oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der gesuchte Name. + + ist null. + + + Gibt an, wie Zeilenumbrüche behandelt werden. + + + Zeilenumbruchzeichen werden durch Entitätenzeichen ersetzt.Mit dieser Einstellung werden alle Zeichen beibehalten, wenn die Ausgabe von einem normalisierenden gelesen wird. + + + Die Zeilenumbruchzeichen sind unverändert.Die Ausgabe ist gleich der Eingabe. + + + Zeilenumbruchzeichen werden ersetzt, damit sie mit dem in der -Eigenschaft angegebenen Zeichen übereinstimmen. + + + Gibt den Zustand des Readers an. + + + Die -Methode wurde aufgerufen. + + + Das Ende der Datei wurde mit Erfolg erreicht. + + + Es ist ein Fehler aufgetreten, der verhindert, dass der Lesevorgang fortgeführt werden kann. + + + Die Read-Methode wurde nicht aufgerufen. + + + Die Read-Methode wurde aufgerufen.Für den Reader können zusätzliche Methoden aufgerufen werden. + + + Gibt den Zustand des an. + + + Gibt an, dass ein Attributwert geschrieben wird. + + + Gibt an, dass die -Methode aufgerufen wurde. + + + Gibt an, dass Elementinhalt geschrieben wird. + + + Gibt an, dass ein Elementstarttag geschrieben wird. + + + Eine Ausnahme wurde ausgelöst, die den in einem ungültigen Zustand versetzt hat.Sie können die -Methode aufrufen, um den in den -Zustand zu versetzen.Alle anderen -Methodenaufrufe führen zu einer . + + + Gibt an, dass der Prolog geschrieben wird. + + + Gibt an, dass eine Write-Methode noch nicht aufgerufen wurde. + + + Codiert und decodiert XML-Namen und stellt Methoden für das Konvertieren zwischen Typen der Common Language Runtime und XSD-Typen (XML Schema Definition) bereit.Bei der Konvertierung von Datentypen sind die zurückgegebenen Werte vom Gebietsschema unabhängig. + + + Decodiert einen Namen.Diese Methode ist die Umkehrung der -Methode und der -Methode. + Der decodierte Name. + Der umzuwandelnde Name. + + + Konvertiert den Namen in einen gültigen lokalen XML-Namen. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den Namen in einen gültigen XML-Namen. + Gibt den Namen zurück, wobei ungültige Zeichen durch eine Escapezeichenfolge ersetzt wurden. + Ein zu übersetzender Name. + + + Überprüft, ob der Name entsprechend der XML-Spezifikation gültig ist. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den in ein -Äquivalent. + Ein Boolean-Wert, d. h. true oder false. + Die zu konvertierende Zeichenfolge. + + is null. + + does not represent a Boolean value. + + + Konvertiert den in ein -Äquivalent. + Ein Byte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Char, das für das einzelne Zeichen steht. + Die Zeichenfolge, die ein einzelnes zu konvertierendes Zeichen enthält. + The value of the parameter is null. + The parameter contains more than one character. + + + Konvertiert den mithilfe von in eine -Struktur. + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, ob das Datum in die Ortszeit konvertiert oder als UTC-Zeit (Coordinated Universal Time) beibehalten werden soll, falls es sich um ein UTC-Datum handelt. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge.Hinweis   Die Zeichenfolge muss einer Teilmenge der W3C-Empfehlung für den XML-dateTime-Typ entsprechen.Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Das Format, aus dem konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird anhand dieses Formats überprüft. + + is null. + + or is an empty string or is not in the specified format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Ein Array von Formaten, aus denen konvertiert werden kann.Jedes Format in kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird im Vergleich mit einem dieser Formate überprüft. + + + Konvertiert den in ein -Äquivalent. + Ein Decimal-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Double-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Guid-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + + Konvertiert den in ein -Äquivalent. + Ein Int16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein SByte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Single-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung von Boolean, d. h. „true“ oder „false“. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Byte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Char. + Der zu konvertierende Wert. + + + Konvertiert die -Struktur mithilfe von in eine . + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, wie der -Wert behandelt wird. + The value is not valid. + The or value is null. + + + Konvertiert den angegebenen in einen . + Eine -Darstellung des angegebenen . + Der zu konvertierende . + + + Konvertiert den angegebenen in einen im angegebenen Format. + Eine -Darstellung im angegebenen Format des bereitgestellten . + Der zu konvertierende . + Das Format, in das konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Decimal. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Double. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Guid. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int64. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des SByte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Single. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des TimeSpan. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt64. + Der zu konvertierende Wert. + + + Konvertiert den in ein -Äquivalent. + Ein TimeSpan-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge.Das Zeichenfolgenformat muss dem W3C-XML-Schema Teil 2 entsprechen: Empfehlung für Datentypen für Dauer. + + is not in correct format to represent a TimeSpan value. + + + Konvertiert den in ein -Äquivalent. + Ein UInt16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Überprüft, ob der Name ein gültiger Name gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist. + Der Name, wenn dieser ein gültiger XML-Name ist. + Der zu überprüfende Name. + + is not a valid XML name. + + is null or String.Empty. + + + Überprüft, ob der Name ein gültiger NCName gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist.Ein NCName darf keinen Doppelpunkt enthalten. + Der Name, wenn dieser ein gültiger NCName ist. + Der zu überprüfende Name. + + is null or String.Empty. + + is not a valid non-colon name. + + + Überprüft, ob die Zeichenfolge ein gültiges NMTOKEN gemäß der Empfehlung in W3C XML Schema, Teil 2: „Datentypen“, ist. + Das Namenstoken, wenn es sich um ein gültiges NMTOKEN handelt. + Die Zeichenfolge, die überprüft werden soll. + The string is not a valid name token. + + is null. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Zeichen für eine öffentliche ID sind. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen im Argument gültige Zeichen für eine öffentliche ID sind. + + , der die zu überprüfende ID enthält. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind. + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind, andernfalls null. + Der zu überprüfende . + + + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Der mit den zu überprüfenden Zeichen. + + + Gibt an, wie der Wert für die Uhrzeit beim Konvertieren zwischen einer Zeichenfolge und behandelt werden soll. + + + Als lokale Zeit behandeln.Wenn das -Objekt eine UTC (Coordinated Universal Time, koordinierte Weltzeit) darstellt, wird es in die lokale Zeit konvertiert. + + + Zeitzoneninformationen sollten bei der Konvertierung beibehalten werden. + + + Als lokale Zeit behandeln, wenn eine -Struktur in eine Zeichenfolge konvertiert wird. + + + Als UTC behandeln.Wenn das -Objekt eine lokale Zeit darstellt, wird es in die koordinierte Weltzeit konvertiert. + + + Gibt ausführliche Informationen über die letzte Ausnahme zurück. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit einer angegebenen Fehlermeldung. + Die Fehlerbeschreibung. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + Die Beschreibung des Fehlerzustands. + Die , die die XmlException ausgelöst hat (falls eine Ausnahme ausgelöst wurde).Dieser Wert kann null sein. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit der angegebenen Meldung, inneren Ausnahme, Zeilennummer und Zeilenposition. + Die Fehlerbeschreibung. + Die Ausnahme, die die Ursache der aktuellen Ausnahme ist.Dieser Wert kann null sein. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft die Nummer der Zeile ab, in der der Fehler aufgetreten ist. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + + + Ruft die Position der Zeile ab, an der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft eine Meldung ab, die die aktuelle Ausnahme beschreibt. + Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird. + + + Löst Namespaces auf, fügt sie einer Auflistung hinzu bzw. entfernt sie daraus und ermöglicht die Verwaltung der Gültigkeitsbereiche dieser Namespaces. + + + Initialisiert eine neue Instanz der -Klasse mit der angegebenen . + Die zu verwendende . + null is passed to the constructor + + + Fügt der Auflistung den angegebenen Namespace hinzu. + Das Präfix, das dem hinzugefügten Namespace zugeordnet werden soll.Verwenden Sie String.Empty, um einen Standardnamespace hinzuzufügen.HinweisWenn der jedoch für das Auflösen von Namespaces in einem XPath (XML Path Language)-Ausdruck verwendet wird, muss ein Präfix angegeben werden.Wenn ein XPath-Ausdruck kein Präfix enthält, wird davon ausgegangen, dass der Namespace-URI (Uniform Resource Identifier) der leere Namespace ist.Weitere Informationen über XPath-Ausdrücke und den finden Sie in der -Methode und der -Methode. + Der hinzuzufügende Namespace. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ruft den Namespace-URI für den Standardnamespace ab. + Gibt den Namespace-URI für den Standardnamespace zurück oder String.Empty, wenn kein Standardnamespace vorhanden ist. + + + Gibt einen Enumerator für das Durchlaufen der Namespaces im zurück. + Ein , der die vom gespeicherten Präfixe enthält. + + + Ruft eine Auflistung von Namen sortiert nach Präfix ab, mit der die aktuell im Gültigkeitsbereich vorhanden Namespaces durchlaufen werden können. + Eine Auflistung der derzeit im Gültigkeitsbereich vorhandenen Paare aus Namespace und Präfix. + Ein Enumerationswert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft einen Wert ab, der angibt, ob für das angegebene Präfix ein Namespace für den aktuellen abgelegten Gültigkeitsbereich definiert ist. + true, wenn ein definierter Namespace vorhanden ist, andernfalls false. + Das Präfix des zu suchenden Namespaces. + + + Ruft den Namespace-URI für das angegebene Präfix ab. + Gibt den Namespace-URI für zurück oder null, wenn kein zugeordneter Namespace vorhanden ist.Die zurückgegebene Zeichenfolge ist atomisiert.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter der -Klasse. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu suchen, übergeben Sie String.Empty. + + + Sucht das für den angegebenen Namespace-URI deklarierte Präfix. + Das passende Präfix.Wenn es kein zugeordnetes Präfix gibt, gibt die Methode den Wert "String.Empty" zurück.Wenn ein Nullwert angegeben wird, dann wird null zurückgegeben. + Der für das Präfix aufzulösende Namespace. + + + Ruft den ab, der diesem Objekt zugeordnet ist. + Die von diesem Objekt verwendete . + + + Holt einen Namespacebereich vom Stapel. + true, wenn noch Namespacebereiche im Stapel vorhanden sind, false, wenn keine Namespaces mehr geholt werden können. + + + Legt einen Namespacebereich auf den Stapel. + + + Entfernt den angegebenen Namespace für das angegebene Präfix. + Das Präfix für den Namespace. + Der für das angegebene Präfix zu entfernende Namespace.Der entfernte Namespace stammt aus dem aktuellen Namespacebereich.Namespaces außerhalb des aktuellen Gültigkeitsbereichs werden ignoriert. + The value of or is null. + + + Definiert den Namespacebereich. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind.Dies beinhaltet den xmlns:xml-Namespace, der immer implizit deklariert wird.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind. Davon ausgeschlossen ist der xmlns:xml-Namespace, der immer implizit deklariert ist.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die am aktuellen Knoten lokal definiert sind. + + + Tabelle atomisierter Zeichenfolgenobjekte. + + + Initialisiert eine neue Instanz der -Klasse. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden.Wenn die Länge 0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem hinzuzufügenden Namen. + Nullbasierter Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden. + Der hinzuzufügende Name. + + ist null. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem zu suchenden Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die denselben Wert wie die angegebenen Zeichenfolge hat. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der zu suchende Name. + + ist null. + + + Gibt den Typ des Knotens an. + + + Ein Attribut (z. B. id='123'). + + + Ein CDATA-Abschnitt (z. B. <![CDATA[my escaped text]]>). + + + Ein Kommentar (z. B. <!-- my comment -->). + + + Ein Dokumentobjekt, das als Stamm der Dokumentstruktur Zugriff auf das gesamte XML-Dokument gewährt. + + + Ein Dokumentfragment. + + + Die vom folgenden Tag angegebene Dokumenttypdeklaration (z. B. <!DOCTYPE...>). + + + Ein Element (z. B. <item>). + + + Ein Endelementtag (z. B. </item>). + + + Wird zurückgegeben, wenn XmlReader aufgrund eines Aufrufs von das Ende der Entitätsersetzung erreicht. + + + Eine Entitätsdeklaration (z. B. <!ENTITY...>). + + + Ein Verweis auf eine Entität (z. B. &num;). + + + Dies wird vom zurückgegeben, wenn keine Read-Methode aufgerufen wurde. + + + Eine Notation in der Dokumenttypdeklaration (z. B. <!NOTATION...>). + + + Eine Verarbeitungsanweisung (z. B. <?pi test?>). + + + Leerraum zwischen Markup in einem Modell für gemischten Inhalt oder Leerraum im xml:space="preserve"-Bereich. + + + Der Textinhalt eines Knotens. + + + Leerraum zwischen Markup. + + + Die XML-Deklaration (z. B. <?xml version='1.0'?>). + + + Stellt sämtliche Kontextinformationen bereit, die von für das Analysieren eines XML-Fragments benötigt werden. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD-Teilmenge wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space, Codierung und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang und xml:space. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang, xml:space sowie Codierung. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Ruft den Basis-URI ab oder legt diesen fest. + Der Basis-URI, der zum Auflösen der DTD-Datei verwendet werden soll. + + + Ruft den Namen der Dokumenttypdeklaration ab oder legt diesen fest. + Der Name der Dokumenttypdeklaration. + + + Ruft den Codierungstyp ab oder legt diesen fest. + Ein -Objekt, das den Codierungstyp angibt. + + + Ruft die Teilmenge der internen DTD ab oder legt diese fest. + Die Teilmenge der internen DTD.Diese Eigenschaft gibt z. B. den Inhalt zwischen den eckigen Klammern <!DOCTYPE doc [...]> zurück. + + + Ruft den ab oder legt diesen fest. + XmlNamespaceManager. + + + Ruft die zum Atomisieren von Zeichenfolgen verwendete ab.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + XmlNameTable. + + + Ruft den öffentlichen Bezeichner ab oder legt diesen fest. + Der öffentliche Bezeichner. + + + Ruft den Systembezeichner ab oder legt diesen fest. + Der Systembezeichner. + + + Ruft den aktuellen xml:lang-Bereich ab oder legt diesen fest. + Der aktuelle xml:lang-Bereich.Wenn xml:lang im Gültigkeitsbereich nicht vorhanden ist, wird String.Empty zurückgegeben. + + + Ruft den aktuellen xml:space-Bereich ab oder legt diesen fest. + Ein -Wert, der den xml:space-Bereich angibt. + + + Stellt einen XML-gekennzeichneten Namen dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen. + Der als Name für das -Objekt zu verwendende lokale Name. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen und Namespace. + Der als Name für das -Objekt zu verwendende lokale Name. + Der Namespace für das -Objekt. + + + Stellt einen leeren bereit. + + + Bestimmt, ob das angegebene -Objekt mit dem aktuellen -Objekt identisch ist. + true, wenn beide dieselbe Objektinstanz sind, andernfalls false. + Das , das verglichen werden soll. + + + Gibt den Hashcode für den zurück. + Ein Hashcode für dieses Objekt. + + + Ruft einen Wert ab, der angibt, ob leer ist. + true, wenn Name und Namespace leere Zeichenfolgen sind, andernfalls false. + + + Ruft eine Zeichenfolgendarstellung für den qualifizierten Namen des ab. + Eine Zeichenfolgendarstellung des gekennzeichneten Namens oder String.Empty, wenn kein Name für das Objekt definiert ist. + + + Ruft eine Zeichenfolgendarstellung für den Namespaces des ab. + Eine Zeichenfolgendarstellung für den Namespace oder String.Empty, wenn kein Namespace für das Objekt definiert ist. + + + Vergleicht zwei -Objekte. + true, wenn beide Objekte dieselben Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Vergleicht zwei -Objekte. + true, wenn die beiden Objekte unterschiedliche Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + Der Name des Objekts. + Der Namespace des Objekts. + + + Stellt einen Reader dar, der einen schnellen Zugriff auf XML-Daten bietet, ohne Zwischenspeicher und welcher nur vorwärts möglich ist.Um den .NET Framework-Quellcode für diesen Typ zu durchsuchen, rufen Sie die Verweisquelle auf. + + + Initialisiert eine neue Instanz derXmlReader-Klasse. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Anzahl der Attribute für den aktuellen Knoten ab. + Die Anzahl der Attribute im aktuellen Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Basis-URI des aktuellen Knotens ab. + Der Basis-URI des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die Methoden für das Lesen von Inhalt im Binärformat implementiert. + true, wenn die Methoden für das Lesen von Inhalt im Binärformat implementiert werden, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die angegebene -Methode implementiert. + true, wenn der die -Methode implementiert, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob dieser Reader Entitäten analysieren und auflösen kann. + true, wenn der Reader Entitäten analysieren und auflösen kann, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Erstellt mit dem angegebenen Stream mit den Standardeinstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + + + Erstellt eine neue -Instanz mit dem angegebenen Stream und den angegebenen Einstellungen. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Stream, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält. Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für den neuen .Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + Die und die -Eigenschaften enthalten Werte.(Nur eine dieser NameTable-Eigenschaften kann festgelegt und verwendet werden). + + + Erstellt eine neue -Instanz mit angegebenem URI. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Mit der -Klasse wird der Pfad in eine kanonische Datendarstellung konvertiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + Die durch den URI angegebene Datei ist nicht vorhanden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen URI und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Das -Objekt für das -Objekt wird zum Konvertieren des Pfads in eine kanonische Datendarstellung verwendet.Wenn null ist, wird ein neues -Objekt verwendet. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + Die durch den URI angegebene Datei kann nicht gefunden werden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen XML-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, das das angegebene -Objekt umschließt. + Das Objekt, dass Sie als zugrunde liegenden XML-Reader verwenden möchten. + Die Einstellungen für die neue -Instanz.Der Konformitätsgrad des -Objekts muss mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmen oder auf festgelegt werden. + Der -Wert ist null. + Wenn das -Objekt einen Konformitätsgrad angibt, der nicht mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmt.- oder - Der zugrunde liegende befindet sich in einem -Zustand oder einem -Zustand. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Tiefe des aktuellen Knotens im XML-Dokument ab. + Die Tiefe des aktuellen Knotens im XML-Dokument. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob sich der Reader am Ende des Streams befindet. + true, wenn der Reader am Ende des Streams positioniert ist, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs.Diese Methode verschiebt den Reader nicht. + Der Index des Attributs.Der Index ist nullbasiert.(Das erste Attribut hat den Index 0.) + + liegt außerhalb des Bereichs.Es darf nicht negativ sein und muss kleiner als die Größe der Attributauflistung sein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben.Diese Methode verschiebt den Reader nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den Wert des aktuellen Knotens asynchron ab. + Der Wert des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft einen Wert ab, der angibt, ob der aktuelle Knoten über Attribute verfügt. + true, wenn der aktuelle Knoten über Attribute verfügt, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten einen aufweisen kann. + true, wenn der Knoten, auf dem der Reader derzeit positioniert ist, einen Value aufweisen darf, andernfalls false.Wenn false, weist der Knoten den Wert String.Empty auf. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein Attribut ist, das aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. + true, wenn der aktuelle Knoten ein Attribut ist, dessen Wert aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. false, wenn der Attributwert explizit festgelegt wurde. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein leeres Element ist (z. B. <MyElement/>). + true, wenn der aktuelle Knoten ein Element ist ( ist gleich XmlNodeType.Element), das mit /> endet, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiger XML-Name ist. + true, wenn der Name gültig ist, andernfalls false. + Der Name, dessen Gültigkeit validiert werden soll. + Der -Wert ist null. + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiges XML-Namenstoken ist. + true, wenn es sich um ein gültiges Namenstoken handelt, andernfalls false. + Das zu validierende Namenstoken. + Der -Wert ist null. + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist. + true, wenn ein Starttag oder ein leeres Elementtag findet. false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und die -Eigenschaft des gefundenen Elements mit dem angegebenen Argument übereinstimmt. + true, wenn der resultierende Knoten ein Element ist und die Name-Eigenschaft mit der angegebenen Zeichenfolge übereinstimmt.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die Name-Elementeigenschaft nicht mit der angegebenen Zeichenfolge übereinstimmt. + Die mit der Name-Eigenschaft des gefundenen Elements verglichene Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und ob die -Eigenschaft und die -Eigenschaft des gefundenen Elements mit den angegebenen Zeichenfolgen übereinstimmen. + true, wenn der resultlierende Knoten ein Element ist.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die LocalName-Eigenschaft und die NamespaceURI-Eigenschaft des Elements nicht mit den angegebenen Zeichenfolgen übereinstimmen. + Die mit der LocalName-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Die mit der NamespaceURI-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den lokalen Namen des aktuellen Knotens ab. + Der Name des aktuellen Knotens ohne das Präfix.Der LocalName für das <bk:book>-Element lautet z. B. book.Bei unbenannten Knotentypen wie Text, Comment usw. gibt diese Eigenschaft String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Löst beim Überschreiben in einer abgeleiteten Klasse ein Namespacepräfix im Gültigkeitsbereich des aktuellen Elements auf. + Der Namespace-URI, dem das Präfix zugeordnet ist, oder null, wenn kein entsprechendes Präfix gefunden wird. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu erhalten, übergeben Sie eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen Index. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter hat einen negativen Wert. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen und dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Überprüft, ob der aktuelle Knoten ein Inhaltsknoten (Textknoten ohne Leerraum, CDATA-, Element-, EndElement-, EntityReference- oder EndEntity-Knoten) ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei.Knoten folgender Typen werden übersprungen: ProcessingInstruction, DocumentType, Comment, Whitespace und SignificantWhitespace. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Asynchrone Überprüfungen, ob der aktuelle Knoten ein Inhaltsknoten ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zu dem Element, das den aktuellen Attributknoten enthält. + true, wenn der Reader auf einem Attribut positioniert ist (der Reader wechselt zu dem Element, das das Attribut besitzt); false, wenn der Reader nicht auf einem Attribut positioniert ist (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum ersten Attribut. + true, wenn ein Attribut vorhanden ist (der Reader wechselt zum ersten Attribut), andernfalls false (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum nächsten Attribut. + true, wenn ein nächstes Attribut vorhanden ist; false, wenn keine weiteren Attribute vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den gekennzeichneten Namen des aktuellen Knotens ab. + Der gekennzeichnete Name des aktuellen Knotens.Der Name für das <bk:book>-Element lautet z. B. bk:book.Der zurückgegebene Name hängt vom des Knotens ab.Die folgenden Knotentypen geben die jeweils aufgeführten Werte zurück.Alle anderen Knotentypen geben eine leere Zeichenfolge zurück.Knotentyp Name AttributeDer Name des Attributs. DocumentTypeDer Name des Dokumenttyps. ElementDer Tagname. EntityReferenceDer Name der Entität, auf die verwiesen wird. ProcessingInstructionDas Ziel der Verarbeitungsanweisung. XmlDeclarationDas xml-Zeichenfolgenliteral. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Namespace-URI (entsprechend der Definition in der Namespacespezifikation des W3C) des Knotens ab, auf dem der Reader positioniert ist. + Der Namespace-URI des aktuellen Knotens, andernfalls eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die ab, die dieser Implementierung zugeordnet ist. + Die XmlNameTable, die das Abrufen der atomisierten Version einer Zeichenfolge innerhalb des Knotens erlaubt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Typ des aktuellen Knotens ab. + Einer der Enumerationswerte, die den Typ des aktuellen Knotens angeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse das dem aktuellen Knoten zugeordnete Namespacepräfix ab. + Das dem aktuellen Knoten zugeordnete Namespacepräfix. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den nächsten Knoten aus dem Stream. + true, wenn der nächste Knoten erfolgreich gelesen wurde, andernfalls, false. + Beim Analysieren der XML-Daten ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den nächsten Knoten aus dem Stream asynchron. + true, wenn der nächste Knoten erfolgreich gelesen wurde, false, wenn keine weiteren zu lesenden Knoten vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Attributwert in einen oder mehrere Knoten vom Typ Text, EntityReference oder EndEntity auf. + true, wenn zurückzugebende Knoten vorhanden sind.false, wenn der Reader beim ersten Aufruf nicht auf einem Attributknoten positioniert ist oder alle Attributwerte gelesen wurden.Ein leeres Attribut, z. B. misc="", gibt true mit einem einzelnen Knoten mit dem Wert String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen.Dieses kann zum Beispiel beim Konvertieren eines -Objekts in eine xs:string verwendet werden.Dieser Wert kann null sein. + Der Inhalt weist nicht das richtige Format für den Zieltyp auf. + Die versuchte Typumwandlung ist ungültig. + Der -Wert ist null. + Der aktuelle Knoten ist kein unterstützter Knotentyp.Weitere Informationen finden Sie in der nachfolgenden Tabelle. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als Boolean. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt an der aktuellen Position als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit doppelter Genauigkeit. + Der Textinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Der Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 32-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 64-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, und liest dann den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Elementinhalt asynchron als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit doppelter Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Endtag ist, und verschiebt den Reader auf den nächsten Knoten. + Der aktuelle Knoten ist kein Endtag, oder im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt, einschließlich Markup, als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben.Wenn der aktuelle Knoten weder ein Element noch ein Attribut ist, wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron den gesamten Inhalt, einschließlich Markup als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den Inhalt (einschließlich Markup) ab, der diesen Knoten und alle untergeordneten Elemente darstellt. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt, einschließlich Markup, das diesen Knoten und alle untergeordneten Elemente darstellt, asynchron. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Knoten ein Element ist, und rückt den Reader zum nächsten Knoten vor. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der qualifizierte Name des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden. - oder - Der des Elements entspricht nicht dem angegebenen . + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen und dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden.- oder - Die Eigenschaften und des gefundenen Elements stimmen nicht mit den angegebenen Argumenten überein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Readers ab. + Einer der Enumerationswerte, der den Status des Readers angibt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine neue XmlReader-Instanz zurück, die zum Lesen des aktuellen Knotens und aller Nachfolgerknoten verwendet werden kann. + Eine neue auf festgelegte XML-Reader-Instanz.Durch den Aufruf der -Methode wird der neue Reader auf dem Knoten positioniert, der vor dem Aufruf der -Methode aktuell war. + Der XML-Reader ist nicht auf einem Element positioniert, wenn diese Methode aufgerufen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der qualifizierte Name des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der lokale Name des Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest, bis ein Element mit dem angegebenen qualifizierten Namen gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der qualifizierte Name des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Liest, bis ein Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der qualifizierte Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der lokale Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Der aktuelle Knoten verfügt über keinen Wert ( ist false). + Der -Wert ist null. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Die XML-Daten sind nicht wohlgeformt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Entitätsverweis für EntityReference-Knoten auf. + Der Reader ist nicht auf einem EntityReference-Knoten positioniert. Diese Implementierung des Readers kann Entitäten nicht auflösen ( gibt false zurück). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Reader-Instanz verwendete -Objekt.Wenn dieser Reader nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens asynchron. + Der aktuelle Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Textwert des aktuellen Knotens ab. + Der zurückgegebene Wert hängt vom des Knotens ab.In der folgenden Tabelle sind Knotentypen aufgeführt, die einen zurückzugebenden Wert haben.Alle anderen Knotentypen geben String.Empty zurück.Knotentyp Wert AttributeDer Wert des Attributs. CDATADer Inhalt des CDATA-Abschnitts. CommentDer Inhalt des Kommentars. DocumentTypeDie interne Teilmenge. ProcessingInstructionDer gesamte Inhalt mit Ausnahme des Ziels. SignificantWhitespaceDer Leerraum zwischen Markups bei einem Modell für gemischten Inhalt. TextDer Inhalt des Textknotens. WhitespaceDer Leerraum zwischen Markups. XmlDeclarationDer Inhalt der Deklaration. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den CLR-Typ (Common Language Runtime) für den aktuellen Knoten ab. + Der CLR-Typ, der dem typisierten Wert des Knotens entspricht.Die Standardeinstellung ist System.String. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:space-Bereich ab. + Einer der -Werte.Wenn kein xml:space-Bereich vorhanden ist, wird für diese Eigenschaft standardmäßig XmlSpace.None festgelegt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, das von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der-Klasse. + + + Ruft ab oder legt fest, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob Zeichen überprüft werden sollen, oder legt diesen fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true.HinweisWenn der Textdaten verarbeitet, überprüft er unabhängig von der Eigenschafteneinstellung stets, ob die XML-Namen und der Textinhalt gültig sind.Durch Festlegen von auf false wird die Zeichenüberprüfung für Zeichenentitätsverweise deaktiviert. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der zugrunde liegende Stream oder geschlossen werden soll, nachdem der Reader geschlossen wurde, oder legt diesen Wert fest. + true, um den zugrunde liegenden Stream oder zu schließen, nachdem der Reader geschlossen wurde, andernfalls false.Die Standardeinstellung ist false. + + + Ruft den Konformitätsgrad ab, dem der entspricht, oder legt diesen fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt, den der XML-Reader umsetzt.Die Standardeinstellung ist . + + + Ruft einen Wert ab oder legt einen Wert fest, der die Verarbeitung von DTDs bestimmt. + Einer der Enumerationswerte, der die Verarbeitung von DTDs bestimmt.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Kommentare ignoriert werden sollen, oder legt diesen fest. + true, wenn Kommentare ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob Verarbeitungsanweisungen ignoriert werden sollen, oder legt diesen fest. + true, wenn Verarbeitungsanweisungen ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob signifikanter Leerraum ignoriert werden soll, oder legt diesen Wert fest. + true, um Leerraum zu ignorieren, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Zeilennummernoffset des -Objekts ab oder legt dieses fest. + Das Zeilennummernoffset.Der Standard ist 0. + + + Ruft das Zeilenpositionsoffset des -Objekts ab oder legt dieses fest. + Die Offset der Linienposition.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximal zulässige Anzahl von Zeichen in einem Dokument angibt, die aus dem Erweitern von Entitäten resultieren, oder legt diesen fest. + Die maximale zulässige Anzahl von Zeichen aus erweiterten Entitäten.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximale zulässige Anzahl von Zeichen in einem XML-Dokument angibt, oder legt diesen fest.Der Wert 0 (null) gibt an, dass die Größe des XML-Dokuments nicht beschränkt ist.Ein Wert ungleich 0 (null) gibt die maximale Größe in Zeichen an. + Die maximale zulässige Anzahl von Zeichen in einem XML-Dokument.Der Standard ist 0. + + + Ruft die für Vergleiche von atomisierten Zeichenfolgen verwendete ab oder legt diese fest. + Die , in der alle atomisierten Zeichenfolgen gespeichert werden, die von allen -Instanzen verwendet werden, die mit diesem -Objekt erstellt wurden.Die Standardeinstellung ist null.Die erstellte -Instanz verwendet eine neue leere , wenn dieser Wert null ist. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Gibt den aktuellen xml:space-Bereich an. + + + Der xml:space-Bereich ist gleich default. + + + Kein xml:space-Bereich. + + + Der xml:space-Bereich ist gleich preserve. + + + Stellt einen Writer für die schnelle, vorwärts gerichtete Generierung von Streams oder Dateien mit XML-Daten ohne Zwischenspeicherung dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Erstellt mit dem angegebenen Stream eine neue -Instanz. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des Streams und des -Objekts. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen . + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des und der -Objekte. + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt mit dem angegebenen eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + The value is null. + + + Erstellt mit dem -Objekt und dem -Objekt eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen -Objekts. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen und der -Objekte. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert beim Überschreiben in einer abgeleiteten Klasse den Inhalt des Puffers in die zugrunde liegenden Streams und leert den zugrunde liegenden Stream ebenfalls. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert den Pufferinhalt asynchron in die zugrunde liegenden Streams und entleert den zugrunde liegenden Stream ebenfalls. + Die Aufgabe, die den asynchronen Flush-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Gibt beim Überschreiben in einer abgeleiteten Klasse das nächstliegende Präfix zurück, das im aktuellen Namespacebereich für den Namespace-URI definiert ist. + Das passende Präfix oder null, wenn im aktuellen Gültigkeitsbereich kein übereinstimmender Namespace-URI gefunden wird. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Writer-Instanz verwendete -Objekt.Wenn dieser Writer nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse sämtliche an der aktuellen Position gefundenen Attribute in den . + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron alle Attribute aus, die in der aktuellen Position in gefunden werden. + Die Aufgabe, die den asynchronen WriteAttributes-Vorgang darstellt. + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Attribut mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Attributs. + Der Namespace-URI, der dem Attribut zugeordnet werden soll. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Attribut asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteAttributeString-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als Base64 und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als Base64 und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBase64-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als BinHex und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als BinHex und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBinHex-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Der Text, der in den CDATA-Block eingefügt werden soll. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Die Aufgabe, die den asynchronen WriteCData-Vorgang darstellt. + Der Text, der in den CDATA-Block eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Erzwingt beim Überschreiben in einer abgeleiteten Klasse die Generierung einer Zeichenentität für den angegebenen Wert eines Unicode-Zeichens. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Erzwingt das Generieren einer Zeichenentität asynchron für den angegebenen Unicode-Zeichenwert. + Die Aufgabe, die den asynchronen WriteCharEntity-Vorgang darstellt. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Text in jeweils einen Puffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt Text asynchron in jeweils einen Puffer. + Die Aufgabe, die den asynchronen WriteChars-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Kommentar <!--...--> mit dem angegebenen Text. + Text, der in den Kommentar eingefügt werden soll. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen Kommentar <!--...-->, der den angegebenen Text enthält. + Die Aufgabe, die den asynchronen WriteComment-Vorgang darstellt. + Text, der in den Kommentar eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die DOCTYPE-Deklaration mit dem angegebenen Namen und optionalen Attributen. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die DOCTYPE-Deklaration asynchron mit dem angegebenen Namen und optionalen Attributen. + Die Aufgabe, die den asynchronen WriteDocType-Vorgang darstellt. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteElementString-Vorgang darstellt. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse den vorherigen -Aufruf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt asynchron den vorherigen -Aufruf. + Die Aufgabe, die den asynchronen WriteEndAttribute-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse alle geöffneten Elemente oder Attribute und setzt den Writer in den Anfangszustand zurück. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt alle geöffneten Elemente oder Attribute asynchron und setzt den Writer in den Startzustand zurück. + Die Aufgabe, die den asynchronen WriteEndDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen Entitätsverweis als &name;. + Der Name des Entitätsverweises. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen Entitätsverweis asynchron als &name; aus. + Die Aufgabe, die den asynchronen WriteEntityRef-Vorgang darstellt. + Der Name des Entitätsverweises. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteFullEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiger Name ist. + Der zu schreibende Name. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft dessen Gültigkeit entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Die Aufgabe, die den asynchronen WriteName-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiges NmToken ist. + Der zu schreibende Name. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft, dass es sich entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) um ein gültiges NmToken handelt. + Die Aufgabe, die den asynchronen WriteNmToken-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers asynchron in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Die Aufgabe, die den asynchronen WriteNode-Vorgang darstellt. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse eine Verarbeitungsanweisung mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Verarbeitungsanweisung asynchron mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Die Aufgabe, die den asynchronen WriteProcessingInstruction-Vorgang darstellt. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den durch den Namespace angegebenen Namen.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den durch Namespace gekennzeichneten Namen asynchron.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Die Aufgabe, die den asynchronen WriteQualifiedName-Vorgang darstellt. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einem Zeichenpuffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einer Zeichenfolge. + Zeichenfolge, die den zu schreibenden Text enthält. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron unformatiertes Markup manuell aus einem Zeichenpuffer. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt asynchron unformatiertes Markup manuell aus einer Zeichenfolge. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenfolge, die den zu schreibenden Text enthält. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen. + Der lokale Name des Attributs. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Anfang eines Attributs mit dem angegebenen Präfix, dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs asynchron mit dem angegebenen Präfix, lokalen Namen und Namespace-URI. + Die Aufgabe, die den asynchronen WriteStartAttribute-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0" und dem eigenständigen Attribut. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0". + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0" und dem eigenständigen Attribut. + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Starttag mit dem angegebenen lokalen Namen. + Der lokale Name des Elements. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace zu. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll.Wenn sich dieser Namespace bereits im Gültigkeitsbereich befindet und dem Namespace ein Präfix zugeordnet ist, schreibt der Writer automatisch auch das Präfix. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace und Präfix zu. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt das angegebene Starttag asynchron und ordnet dieses dem angegebenen Namespace und Präfix zu. + Die Aufgabe, die den asynchronen WriteStartElement-Vorgang darstellt. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Writers ab. + Einer der -Werte. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Textinhalt. + Der zu schreibende Text. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Textinhalt asynchron. + Die Aufgabe, die den asynchronen WriteString-Vorgang darstellt. + Der zu schreibende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Generiert und schreibt beim Überschreiben in einer abgeleiteten Klasse die Ersatzzeichenentität für das Ersatzzeichenpaar. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Generiert und schreibt die Ersatzzeichenentität asynchron für das Ersatzzeichenpaar. + Die Aufgabe, die den asynchronen WriteSurrogateCharEntity-Vorgang darstellt. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Objektwert. + Der zu schreibende Objektwert.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 akzeptiert diese Methode nun auch als Parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Gleitkommazahl mit einfacher Genauigkeit. + Die zu schreibende Gleitkommazahl mit einfacher Genauigkeit. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Leerraum. + Die Zeichenfolge von Leerraumzeichen. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Leerraum asynchron. + Die Aufgabe, die den asynchronen WriteWhitespace-Vorgang darstellt. + Die Zeichenfolge von Leerraumzeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen ab, der den aktuellen xml:space-Bereich darstellt. + Ein XmlSpace, der den aktuellen xml:space-Bereich darstellt.Wert Bedeutung NoneDies ist der Standardwert, wenn kein xml:space-Bereich vorhanden ist.DefaultDer aktuelle Bereich ist xml:space="default".PreserveDer aktuelle Bereich ist xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, welches von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der -Klasse. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob der XML-Writer eine Prüfung durchführen soll, um sicherzustellen, dass alle Zeichen im Dokument den im Abschnitt der W3C-Empfehlung für XML 1.0 beschriebenen "2.2 Characters" entsprechen, oder legt diesen Wert fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der auch den zugrunde liegenden Stream oder schließen soll, wenn die -Methode aufgerufen wird, oder legt diesen Wert fest. + true, wenn auch der zugrunde liegende Stream oder geschlossen werden soll, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Übereinstimmungsniveau ab, auf den der XML-Writer die XML-Ausgabe überprüft, oder legt dieses fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt (Dokument, Fragment oder automatische Erkennung).Die Standardeinstellung ist . + + + Ruft den Typ der Textcodierung ab oder legt diesen fest. + Die zu verwendende Textcodierung.Die Standardeinstellung ist Encoding.UTF8. + + + Ruft einen Wert ab, der angibt, ob Elemente eingezogen werden sollen, oder legt diesen fest. + true, wenn einzelne Elemente mit Einzug in neue Zeilen geschrieben werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft die Zeichenfolge ab, die für den Einzug verwendet werden soll, oder legt diese fest.Diese Einstellung wird verwendet, wenn die -Eigenschaft auf true festgelegt ist. + Die für den Einzug zu verwendende Zeichenfolge.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standard beträgt zwei Leerzeichen. + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob der beim Schreiben von XML-Inhalt doppelte Namespacedeklarationen entfernen soll, oder legt diesen fest.Im Standardverhalten gibt der Writer alle Namespacedeklarationen aus, die in der Namespaceauflösung des Writers vorhanden sind. + Die -Enumeration, die verwendet wird, um anzugeben, ob doppelte Namespacedeklarationen im entfernt werden. + + + Ruft die Zeichenfolge ab, die für Zeilenumbrüche verwendet werden soll, oder legt diese fest. + Die Zeichenfolge, die für Zeilenumbrüche verwendet werden soll.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standardwert ist \r\n (Wagenrücklauf, neue Zeile). + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob Zeilenumbrüche in der Ausgabe normalisiert werden sollen, oder legt diesen fest. + Einer der -Werte.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Attribute in eine neue Zeile geschrieben werden sollen, oder legt diesen fest. + true, um Attribute in einzelne Zeilen zu schreiben, andernfalls false.Die Standardeinstellung ist false.HinweisDiese Einstellung hat keinerlei Auswirkungen, wenn der -Eigenschaftswert false ist.Wenn auf true festgelegt ist, wird jedem Attribut eine neue Zeile und eine zusätzliche Einzugsebene vorangestellt. + + + Ruft einen Wert ab, der angibt, ob eine XML-Deklaration ausgelassen werden soll, oder legt diesen fest. + true, um die XML-Deklaration auszulassen, andernfalls false.Der Standardwert ist false. Es wird eine XML-Deklaration geschrieben. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob Endtags zu allen nicht geschlossenen Elementtags hinzufügt, wenn die -Methode aufgerufen wird. + true, wenn alle nicht geschlossenen Elementtags geschlossen werden; andernfalls false.Der Standardwert ist true. + + + Eine speicherinterne Darstellung eines XML Schema, wie vom World Wide Web Consortium (W3C) in den Spezifikationen unter XML Schema Part 1: Strukturen festgelegt und XML Schema Part 2: Datentypen Spezifikationen. + + + Gibt an, ob Attribute oder Elemente mit einem Namespacepräfix qualifiziert werden müssen. + + + Element- und Attributform werden im nicht Schema angegeben. + + + Elemente und Attribute müssen mit einem Namespacepräfix qualifiziert werden. + + + Elemente und Attribute müssen nicht mit einem Namespacepräfix qualifiziert werden. + + + Stellt benutzerdefinierte Formatierungen für die XML-Serialisierung und -Deserialisierung bereit. + + + Diese Methode ist reserviert und sollte nicht verwendet werden.Wenn Sie die IXmlSerializable-Schnittstelle implementieren, sollten Sie null (Nothing in Visual Basic) von der Methode zurückgeben und stattdessen das auf die Klasse anwenden, wenn ein benutzerdefiniertes Schema erforderlich ist. + Ein zur Beschreibung der XML-Darstellung des Objekts, das von der -Methode erstellt und von der -Methode verwendet wird. + + + Generiert ein Objekt aus seiner XML-Darstellung. + Der -Stream, aus dem das Objekt deserialisiert wird. + + + Konvertiert ein Objekt in seine XML-Darstellung. + Der -Stream, in den das Objekt serialisiert wird. + + + Bei Anwendung auf einen Typ wird der Name einer statischen Methode des Typs gespeichert, die ein XML-Schema und einen (bzw. einen bei anonymen Typen) zurückgibt, der die Serialisierung des Typs steuert. + + + Initialisiert eine neue Instanz der -Klasse und übernimmt den Namen der statischen Methode, die vom XML-Schema des Typs zur Verfügung gestellt wird. + Der Name der statischen Methode, die implementiert werden muss. + + + Ruft einen Wert ab, der bestimmt, ob die Zielklasse ein Platzhalter ist oder ob das Schema für die Klasse nur ein xs:any-Element enthält, oder legt diesen fest. + true, wenn die Klasse ein Platzhalter ist oder das Schema nur das xs:any-Element enthält, andernfalls false. + + + Ruft den Namen der statischen Methode ab, die das XML-Schema des Typs und den Namen seines XML-Schemadatentyps bereitstellt. + Der Name der Methode, die von der XML-Infrastruktur aufgerufen wird, sodass ein XML-Schema zurückgegeben wird. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/es/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/es/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..62b4b18 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/es/System.Xml.ReaderWriter.xml @@ -0,0 +1,2636 @@ + + + + System.Xml.ReaderWriter + + + + Especifica el número de comprobaciones de entrada o de salida que realizan los objetos y . + + + Los objetos o detectan automáticamente si se debe realizar la comprobación del documento o fragmento y lleva a cabo la comprobación correspondiente.Si está ajustando otro objeto o , el objeto externo no lleva a cabo ninguna comprobación de conformidad adicional.La comprobación de conformidad se deja al objeto subyacente.Vea las propiedades y para obtener más información sobre cómo se determina el nivel de cumplimiento. + + + Los datos XML cumplen con las reglas de un documento XML 1.0 con el formato correcto, tal como define W3C. + + + Los datos XML son un fragmento XML con el formato correcto, tal como define W3C. + + + Especifica las opciones para procesar DTD.La clase utiliza la enumeración . + + + Hace que se omita el elemento DOCTYPE.No se procesa ninguna DTD. + + + Especifica que cuando se encuentre una DTD, se produzca una excepción con un mensaje que indique que se prohíbe el uso de esa DTD.Éste es el comportamiento predeterminado. + + + Proporciona una interfaz que permite a una clase devolver información de línea y de posición. + + + Obtiene un valor que indica si la clase puede devolver información de línea. + Es true si se pueden proporcionar y ; en caso contrario, es false. + + + Obtiene el número de línea actual. + Número de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Obtiene la posición de línea actual. + Posición de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Proporciona acceso de solo lectura a un conjunto de asignaciones de prefijos y espacios de nombres. + + + Obtiene una colección de asignaciones de prefijos y espacios de nombres que están actualmente en el ámbito. + + que contiene los espacios de nombres que hay actualmente en el ámbito. + Valor que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene el URI del espacio de nombres asignado al prefijo especificado. + El espacio de nombres del URI que está asignado al prefijo; es null si el prefijo no está asignado a ningún espacio de nombres de URI. + Prefijo cuyo URI de espacio de nombres se desea buscar. + + + Obtiene el prefijo asignado al URI del espacio de nombres especificado. + Prefijo asignado al URI del espacio de nombres; es null si este URI no está asignado a ningún prefijo. + URI de espacio de nombres cuyo prefijo se desea buscar. + + + Especifica si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Especifica que no se quitarán las declaraciones de espacio de nombres duplicadas. + + + Especifica que se quitarán las declaraciones de espacio de nombres duplicadas.Para poder quitar el espacio de nombres duplicado, el prefijo y el espacio de nombres deben coincidir. + + + Implementa de un único subproceso. + + + Inicializa una nueva instancia de la clase NameTable. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene la cadena que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter de la cadena. + Número de caracteres de la cadena. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable. + Cadena que se va a agregar. + + es null. + + + Obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Obtiene la cadena subdividida con el valor especificado. + Objeto de cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica cómo controlar los saltos de línea. + + + Los nuevos caracteres de la línea tienen entidades.Esta configuración conserva todos los caracteres cuando el resultado se lee mediante un de normalización. + + + Los nuevos caracteres de línea no se modifican.El resultado es igual que la entrada. + + + Los nuevos caracteres de línea se reemplazan para coincidir con el carácter especificado en la propiedad . + + + Especifica el estado del lector. + + + Se ha llamado al método . + + + Se ha llegado al final del archivo correctamente. + + + Se ha producido un error que impide que continúe la operación de lectura. + + + No se ha llamado al método Read. + + + Se ha llamado al método Read.Se puede llamar a otros métodos en el lector. + + + Especifica el estado de . + + + Indica que se escribe un valor de atributo. + + + Indica que se ha llamado al método . + + + Indica que se está escribiendo contenido del elemento. + + + Indica que se está escribiendo una etiqueta de apertura de elemento. + + + Se ha iniciado una excepción que ha dejado en un estado no válido.Puede llamar al método para poner en el estado .Cualquier otra llamada al método hará que se inicie una excepción . + + + Indica que se escribe el prólogo. + + + Indica que todavía no se ha llamado a un método Write. + + + Codifica y descodifica nombres XML y proporciona métodos de conversión entre tipos de Common Language Runtime y tipos de lenguajes de definición de esquema XML (XSD).Cuando se convierten tipos de datos, los valores devueltos no dependen de la configuración regional. + + + Descodifica un nombre.Este método hace lo contrario que los métodos y . + Nombre descodificado. + Nombre que se va a transformar. + + + Convierte el nombre en un nombre XML local válido. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte el nombre en un nombre XML válido. + Devuelve el nombre con los caracteres no válidos sustituidos por una cadena de escape. + Nombre que se va a convertir. + + + Comprueba que el nombre es válido de acuerdo con la especificación XML. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte en un equivalente. + Valor Boolean; es decir, true o false. + Cadena que se va a convertir. + + is null. + + does not represent a Boolean value. + + + Convierte en un equivalente. + Valor Byte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un equivalente. + Char que representa el carácter único. + Cadena que contiene un carácter único que se va a convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convierte en un mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifican si la fecha se debe pasar a la hora local o mantenerse como hora universal coordinada (UTC), si se trata de una fecha de UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir.Nota   La cadena debe ajustarse a un subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Formato desde el que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con este formato. + + is null. + + or is an empty string or is not in the specified format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Matriz de formatos a partir de los cuales puede convertirse .Cada formato de puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con uno de estos formatos. + + + Convierte el en un equivalente. + Decimal equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Double equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Guid equivalente de la cadena. + Cadena que se va a convertir. + + + Convierte el en un equivalente. + Int16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + SByte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Single equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte la clase en una clase . + Representación de cadena de Boolean; es decir, "true" o "false". + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Byte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Char. + Valor que se va a convertir. + + + Convierte en mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifica cómo tratar el valor . + The value is not valid. + The or value is null. + + + Convierte el proporcionado en una . + Representación de tipo del proporcionado. + + que va a convertirse. + + + Convierte el proporcionado en una con el formato especificado. + Representación con el formato especificado del proporcionado. + + que va a convertirse. + Formato al que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). + + + Convierte la clase en una clase . + Representación de cadena de Decimal. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Double. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Guid. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int64. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de SByte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Single. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de TimeSpan. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt64. + Valor que se va a convertir. + + + Convierte en un equivalente. + TimeSpan equivalente de la cadena. + Cadena que se va a convertir.El formato de cadena debe cumplir la recomendación sobre la duración del Consorcio W3C "XML Schema Part 2: Datatypes". + + is not in correct format to represent a TimeSpan value. + + + Convierte en un equivalente. + UInt16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Comprueba que el nombre sea válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C. + Nombre, si es un nombre XML válido. + Nombre que se va a comprobar. + + is not a valid XML name. + + is null or String.Empty. + + + Comprueba que el nombre sea un NCName válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C.NCName es un nombre que no puede contener un carácter de dos puntos. + Nombre, si es un nombre NCName válido. + Nombre que se va a comprobar. + + is null or String.Empty. + + is not a valid non-colon name. + + + Comprueba que la cadena es un NMTOKEN válido según la recomendación "XML Schema Part 2: Datatypes" del esquema XML del Consorcio W3C. + Token del nombre, si es un NMTOKEN válido. + La cadena que desea comprobar. + The string is not a valid name token. + + is null. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de identificadores públicos válidos. + Devuelve la cadena pasada si todos los caracteres del argumento son caracteres de identificadores públicos válidos. + + que contiene el identificador que se va a validar. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos. + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos; en caso contrario, null. + + que se va a comprobar. + + + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + + que contiene los caracteres que se van a comprobar. + + + Especifica cómo tratar el valor de tiempo al realizar una conversión entre una cadena y . + + + Se trata como hora local.Si el objeto representa la hora universal coordinada (UTC), se convierte a la hora local. + + + La información de la zona horaria se debe conservar al realizar la conversión. + + + Se trata como hora local si se convierte en cadena. + + + Se trata como UTC.Si el objeto representa una hora local, se convierte en UTC. + + + Devuelve información detallada sobre la última excepción. + + + Inicializa una nueva instancia de la clase XmlException. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje de error especificado. + Descripción de error. + + + Inicializa una nueva instancia de la clase XmlException. + Descripción de la condición de error. + + que inició XmlException, en caso de que exista.Este valor puede ser null. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje, la excepción interna, el número de línea y la posición de línea especificados. + Descripción de error. + La excepción que es la causa de la excepción actual.Este valor puede ser null. + Número de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene el número de línea que indica dónde se produjo el error. + Número de línea que indica dónde se produjo el error. + + + Obtiene la posición de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene un mensaje que describe la excepción actual. + Mensaje de error que explica la razón de la excepción. + + + Resuelve, agrega y quita espacios de nombres en una colección y proporciona la administración del ámbito de estos espacios de nombres. + + + Inicializa una nueva instancia de la clase con el objeto especificado. + Objeto que se va a usar. + null is passed to the constructor + + + Agrega el espacio de nombres especificado a la colección. + Prefijo que se va a asociar al espacio de nombres que se agrega.Use String.Empty para agregar un espacio de nombres predeterminado.NotaSi se usa para resolver los espacios de nombres en una expresión XPath (XML Path Language), se ha de especificar un prefijo.Si una expresión XPath no incluye un prefijo, se supone que el identificador uniforme de recursos (URI) del espacio de nombres corresponde al espacio de nombres vacío.Para más información sobre las expresiones XPath y , vea los métodos y . + Espacio de nombres que se va a agregar. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtiene el identificador URI de espacio de nombres del espacio de nombres predeterminado. + Devuelve el identificador URI de espacio de nombres del espacio de nombres predeterminado, o String.Empty si no hay espacio de nombres predeterminado. + + + Devuelve un enumerador que se usará para recorrer en iteración los espacios de nombres de . + + que contiene los prefijos almacenados por . + + + Obtiene una colección de nombres de espacios de nombres por clave de prefijo que se puede usar para enumerar los espacios de nombres que actualmente se encuentran en el ámbito. + Colección de espacios de nombres y prefijos que se encuentran actualmente en el ámbito. + Valor de enumeración que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene un valor que indica si el prefijo proporcionado tiene un espacio de nombres definido para el ámbito que se ha insertado. + true si se ha definido un espacio de nombres; en caso contrario, false. + Prefijo del espacio de nombres que se desea buscar. + + + Obtiene el identificador URI de espacio de nombres del prefijo especificado. + Devuelve el identificador URI de espacio de nombres de o null si no se ha asignado un espacio de nombres.La cadena devuelta está subdividida.Para más información sobre cadenas subdivididas, vea la clase . + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase String.Empty. + + + Busca el prefijo declarado para el identificador URI de espacio de nombres especificado. + Prefijo que coincide.Si no hay ningún prefijo asignado, el método devuelve String.Empty.Si se proporciona un valor nulo, se devuelve null. + Espacio de nombres que se va a resolver para el prefijo. + + + Obtiene el objeto asociado a este objeto. + + que usa este objeto. + + + Extrae un ámbito de espacio de nombres de la pila. + true si quedan ámbitos de espacio de nombres en la pila; false si no quedan espacios de nombres para extraer. + + + Inserta un ámbito de espacio de nombres en la pila. + + + Quita el espacio de nombres dado del prefijo especificado. + Prefijo del espacio de nombres. + Espacio de nombres que se va a quitar del prefijo especificado.El espacio de nombres quitado pertenece al ámbito de espacio de nombres actual.Los espacios de nombres que no pertenecen al ámbito actual no se tienen en cuenta. + The value of or is null. + + + Define el ámbito del espacio de nombres. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual.Esto incluye el espacio de nombres xmlns:xml que siempre se declara de manera implícita.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual, excluido el espacio de nombres xmlns:xml, que siempre se declara implícitamente.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos localmente en el nodo actual. + + + Tabla de objetos en forma de cadena subdividida. + + + Inicializa una nueva instancia de la clase . + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una.Si la longitud es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una. + Nombre que se va a agregar. + + es null. + + + Cuando se invalida en una clase derivada, se obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, obtiene la cadena subdividida que contiene el mismo valor que la cadena especificada. + Cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica el tipo de nodo. + + + Atributo (por ejemplo, id='123'). + + + Sección CDATA (por ejemplo, <![CDATA[my escaped text]]>). + + + Comentario (por ejemplo, <!-- my comment -->). + + + Objeto de documento que, como raíz del árbol de documentos, proporciona acceso a todo el documento XML. + + + Fragmento de documento. + + + declaración de tipos de documento, indicada por la siguiente etiqueta (por ejemplo, <!DOCTYPE...>). + + + Elemento (por ejemplo, <item>). + + + Etiqueta de elemento final (por ejemplo, </item>) . + + + Se devuelve cuando XmlReader alcanza el final del reemplazo de entidad como resultado de una llamada al método . + + + Declaración de entidad (por ejemplo, <!ENTITY...>). + + + Referencia a una entidad (por ejemplo, &num;). + + + + devuelve este valor si no se ha llamado al método Read. + + + Notación en la declaración de tipos de documento (por ejemplo, <!NOTATION...>). + + + Instrucción de procesamiento (por ejemplo, <?pi test?>). + + + Espacio en blanco entre marcas en un modelo de contenido mixto o espacio en blanco dentro del ámbito de xml:space="preserve". + + + Contenido de texto de un nodo. + + + Espacio en blanco entre marcas. + + + Declaración XML (por ejemplo, <?xml version='1.0'?> ). + + + Proporciona toda la información de contexto que necesita el objeto para analizar un fragmento de XML. + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.El subconjunto DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space, codificación y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados y codificación. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Obtiene o establece el identificador URI base. + Identificador URI base para resolver el archivo DTD. + + + Obtiene o establece el nombre de la declaración de tipos de documento. + Nombre de la declaración de tipos de documento. + + + Obtiene o establece el tipo de codificación. + Objeto que indica el tipo de codificación. + + + Obtiene o establece el subconjunto DTD interno. + Subconjunto DTD interno.Por ejemplo, esta propiedad devuelve todo lo que se encuentra entre los corchetes <!DOCTYPE doc [...]>. + + + Obtiene o establece el objeto . + XmlNamespaceManager. + + + Obtiene el objeto que se va a utilizar para subdividir cadenas.Para obtener más información sobre cadenas subdivididas, vea . + XmlNameTable. + + + Obtiene o establece el identificador público. + Identificador público. + + + Obtiene o establece el identificador de sistema. + Identificador de sistema. + + + Obtiene o establece el ámbito de xml:lang actual. + Ámbito de xml:lang actual.Si en el ámbito no hay ningún xml:lang, se devuelve String.Empty. + + + Obtiene o establece el ámbito de xml:space actual. + Valor de que indica el ámbito de xml:space. + + + Representa un nombre XML completo. + + + Inicializa una nueva instancia de la clase . + + + Inicializa una nueva instancia de la clase con el nombre especificado. + Nombre local que se va a utilizar como nombre del objeto . + + + Inicializa una nueva instancia de la clase con el nombre y el espacio de nombres especificados. + Nombre local que se va a utilizar como nombre del objeto . + Espacio de nombres para el objeto . + + + Proporciona un vacío. + + + Determina si el objeto especificado es igual al objeto actual. + Es true si los dos son un objeto de la misma instancia; en caso contrario, es false. + Estructura que se va comparar. + + + Devuelve el código hash del . + Código hash de este objeto. + + + Obtiene un valor que indica si el objeto está vacío. + true si el nombre y el espacio de nombres corresponden a cadenas vacías; en caso contrario, false. + + + Obtiene una representación de cadena del nombre completo de . + Representación de cadena del nombre completo o de String.Empty si no hay un nombre que esté definido para el objeto. + + + Obtiene una representación de cadena del espacio de nombres de . + Representación de cadena del espacio de nombres o de String.Empty si no hay un espacio de nombres que esté definido para el objeto. + + + Compara dos objetos . + Es true si los dos objetos tienen los mismos valores de nombre y de espacio de nombres; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Compara dos objetos . + Es true si los valores de nombre y de espacio de nombres de los dos objetos se diferencian en algo; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + Nombre del objeto. + Espacio de nombres del objeto. + + + Representa un lector que proporciona acceso rápido a datos XML, sin almacenamiento en caché y con desplazamiento solo hacia delante.Para examinar el código fuente de .NET Framework para este tipo, consulte el fuente de referencia de. + + + Inicializa una nueva instancia de la clase XmlReader. + + + Cuando se invalida en una clase derivada, obtiene el número de atributos en el nodo actual. + Número de atributos del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI base del nodo actual. + Identificador URI base del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa los métodos de lectura de contenido binario. + Es true si se implementan los métodos de lectura de contenido binario; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa el método . + Es true si implementa el método ; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si este lector puede analizar y resolver entidades. + Es true si el lector puede analizar y resolver entidades; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Crea un nuevo utilizando la secuencia especificada con la configuración predeterminada de la instancia. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + + + Crea un nuevo instancia con la configuración y la secuencia especificada. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de secuencia, la configuración y el contexto para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se utiliza el lector XML para descodificar la secuencia de datos. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo .Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de lector, la configuración y el contexto de texto especificado para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + Tanto la propiedad como la propiedad contienen valores.Sólo se puede establecer y utilizar una de estas propiedades NameTable. + + + Crea una nueva instancia de con el URI especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El URI para el archivo que contiene los datos XML.La clase se utiliza para convertir la ruta de acceso en una representación de datos canónicos. + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + El archivo que identifica el URI no existe. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia usando el URI especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + URI del archivo que contiene los datos XML.El objeto del objeto se utiliza para convertir la ruta de acceso en una representación de datos canónicos.Si es null, se utiliza un nuevo objeto . + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + No se encuentra el archivo especificado por el URI. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia utilizando el lector XML especificado y la configuración. + Un objeto que se ajusta alrededor especificado objeto. + El objeto que desea utilizar como lector XML subyacente. + La configuración para el nuevo instancia.El nivel de conformidad del objeto debe coincidir con el del lector subyacente o establecerse en . + El valor de es null. + Si el objeto especifica un nivel de conformidad que no es coherente con nivel de conformidad del lector subyacente.o bienEl objeto subyacente está en un estado de o . + + + Cuando se invalida en una clase derivada, obtiene la profundidad del nodo actual en el documento XML. + Profundidad del nodo actual en el documento XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera todos los recursos usados por la instancia actual de la clase . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera los recursos no administrados que usa y, de forma opcional, libera los recursos administrados. + truepara liberar los recursos administrados y no administrados; false para liberar únicamente los recursos no administrados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el lector está situado al final del flujo. + Es true si el lector está situado al final de la secuencia; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado.Este método no desplaza el lector. + Índice del atributo.El índice está basado en cero.El primer atributo tiene índice 0. + + está fuera del intervalo.Debe ser no negativo y menor que el tamaño de la colección de atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null. + Nombre completo del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null.Este método no desplaza el lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene de forma asincrónica el valor del nodo actual. + Valor del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Obtiene un valor que indica si el nodo actual tiene algún atributo. + Es true si el nodo actual tiene atributos; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual puede tener una propiedad . + Es true si el nodo en el que está situado actualmente el lector puede tener un Value; en caso contrario, es false.Si es false, el nodo tiene un valor de String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se reemplaza en una clase derivada, obtiene un valor que indica si el nodo actual es un atributo generado a partir del valor predeterminado definido en la DTD o el esquema. + Es true si el nodo actual es un atributo cuyo valor fue generado a partir del valor predeterminado definido en la DTD o el esquema; es false si el valor de atributo se estableció explícitamente. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual es un elemento vacío (por ejemplo, <MyElement/>). + Es true si el nodo actual es un elemento ( es igual a XmlNodeType.Element) que termina en />; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve un valor que indica si el argumento de cadena es un nombre XML válido. + Es true si el nombre es válido; en caso contrario, es false. + Nombre que se va a validar. + El valor de es null. + + + Devuelve un valor que indica si el argumento de cadena es un token de nombre XML válido. + Es true si es un token de nombre válido; en caso contrario, es false. + Token de nombre que se va a validar. + El valor de es null. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío. + Es true si encuentra una etiqueta de apertura o una etiqueta de elemento vacío; es false si se encuentra un tipo de nodo que no sea XmlNodeType.Element. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si la propiedad del elemento encontrado coincide con el argumento especificado. + true si el nodo resultante es un elemento y la propiedad Name coincide con la cadena especificada.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si la propiedad Name del elemento no coincide con la cadena especificada. + Cadena que se compara con la propiedad Name del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si las propiedades y del elemento encontrado coinciden con las cadenas especificadas. + true si el nodo resultante es un elemento.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si las propiedades LocalName y NamespaceURI del elemento no coinciden con la cadena especificada. + Cadena con la que se compara la propiedad LocalName del elemento encontrado. + Cadena con la que se compara la propiedad NamespaceURI del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre local del nodo actual. + Nombre del nodo actual sin prefijo.Por ejemplo, LocalName es book para el elemento <bk:book>.Para los tipos de nodo sin nombre (por ejemplo, Text, Comment, etc.), esta propiedad devuelve String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, resuelve un prefijo de espacio de nombres en el ámbito del elemento actual. + Identificador URI de espacio de nombres al que se asigna el prefijo o null si no se encuentra ningún prefijo coincidente. + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con el índice especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro tiene un valor negativo. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con la propiedad especificada. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con las propiedades y especificadas. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Comprueba si el nodo actual es un nodo de contenido (texto sin espacios en blanco, CDATA, Element, EndElement, EntityReference o EndEntity).Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo.Omite los siguientes tipos de nodo: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + XML incorrecto que se encuentra en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica comprueba si el nodo actual es un nodo de contenido.Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, se desplaza al elemento que contiene el nodo de atributo actual. + Es true si el lector está situado en un atributo (el lector se desplaza hasta el elemento que posee el atributo); es false si el lector no está situado en un atributo (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el primer atributo. + Es true si existe un atributo (el lector se desplaza hasta el primer atributo); en caso contrario, es false (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el siguiente atributo. + Es true si hay siguiente atributo; es false si no hay más atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre completo del nodo actual. + Nombre completo del nodo actual.Por ejemplo, Name es bk:book para el elemento <bk:book>.El nombre devuelto depende de la propiedad del nodo.Los siguientes tipos de nodo devuelven los valores que figuran en la lista.Todos los demás tipos de nodo devuelven una cadena vacía.Tipo de nodo Name AttributeNombre del atributo. DocumentTypeNombre del tipo de documento. ElementEl nombre de la etiqueta. EntityReferenceNombre de la entidad a la que se hace referencia. ProcessingInstructionDestino de la instrucción de procesamiento. XmlDeclarationCadena literal xml. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI de espacio de nombres (según se define en la especificación relativa a espacios de nombres del Consorcio W3C) del nodo en el que está situado el lector. + URI de espacio de nombres del nodo actual; en caso contrario, una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el objeto que está asociado a esta implementación. + XmlNameTable que permite obtener la versión subdividida de una cadena en el nodo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el tipo del nodo actual. + Uno de los valores de enumeración que especifican el tipo del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el prefijo de espacio de nombres asociado al nodo actual. + Prefijo de espacio de nombres asociado al nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee el siguiente nodo del flujo. + trueSi el siguiente nodo se leyó correctamente; de lo contrario, false. + Se ha producido un error al analizar el fragmento de XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el nodo siguiente del flujo. + Es true si se lee correctamente el siguiente nodo; es false si no hay más nodos para leer. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, analiza el valor de atributo en uno o varios nodos Text, EntityReference o EndEntity. + Es true si hay nodos para devolver.Es false si el lector no está situado en un nodo de atributo cuando se realiza la llamada inicial o si se han leído todos los valores de atributo.Un atributo vacío, como misc="", devuelve true con un solo nodo cuyo valor es String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo.Por ejemplo, se puede utilizar al convertir un objeto en xs:string.Este valor puede ser null. + El formato del contenido no es correcto para el tipo de destino. + La conversión intentada no es válida. + El valor de es null. + El nodo actual no es un tipo de nodo compatible.Vea la siguiente tabla para obtener información detallada. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como valor Boolean. + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido de texto en la posición actual como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión doble. + El contenido de texto como número de punto flotante de precisión doble. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + El contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 32 bits con signo. + El contenido de texto como entero de 32 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 64 bits con signo. + El contenido de texto como entero de 64 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI de espacio de nombres coinciden con los del elemento actual y, a continuación, lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido del elemento como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión doble. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo de contenido actual es una etiqueta de cierre y desplaza el lector hasta el siguiente nodo. + El nodo actual no es una etiqueta de cierre o si se encuentra XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía.Si el nodo actual no es un elemento ni un atributo, se devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, lee el contenido, incluido el marcado, que representa este nodo y todos sus nodos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el contenido, incluido el marcado, que representa este nodo y todos sus elementos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo actual es un elemento y hace avanzar el sistema de lectura hasta el siguiente nodo. + Se detectó XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con la propiedad especificada y desplaza el lector hasta el siguiente nodo. + Nombre completo del elemento. + Se detectó XML incorrecto en el flujo de entrada. o bien El objeto del elemento no coincide con el especificado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con las propiedades y especificadas y desplaza el lector hasta el siguiente nodo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Se detectó XML incorrecto en el flujo de entrada.o bienLas propiedades y del elemento encontrado no coinciden con los argumentos especificados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el estado del lector. + Uno de los valores de enumeración que especifica el estado del lector. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve una nueva instancia de XmlReader que se puede utilizar para leer el nodo actual y todos sus descendientes. + Una nueva instancia de lector XML se establece en .Llamar a la método coloca el nuevo sistema de lectura en el nodo que era actual antes de llamar a la método. + El lector de XML no está situado en un elemento cuando se llama a este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Hace avanzar el objeto hasta al siguiente elemento descendiente con el nombre completo especificado. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre completo del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto hasta el siguiente elemento descendiente que tenga el URI de espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre local del elemento al que se desea desplazar. + URI del espacio de nombres del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee hasta que encuentra un elemento con el nombre completo especificado. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre completo del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Lee hasta que encuentra un elemento con el nombre local y el URI de espacio de nombres especificados. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Hace avanzar el objeto XmlReader hasta al siguiente elemento relacionado con el nombre completo especificado. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre completo del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto XmlReader hasta el siguiente elemento relacionado que tenga el URI del espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre local del elemento relacionado al que se desea desplazar. + URI del espacio de nombres del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + El nodo actual no tiene ningún valor ( es false). + El valor de es null. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El formato de los datos XML no es correcto. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, resuelve la referencia a entidad para los nodos EntityReference. + El lector no está situado en un nodo EntityReference; esta implementación del lector no puede resolver entidades ( devuelve false). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto utilizado para crear esta instancia del lector.Si este lector no se creó utilizando el método , esta propiedad devuelve null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite los nodos secundarios del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite de forma asincrónica los elementos secundarios del valor del nodo actual. + Nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, obtiene el valor de texto del nodo actual. + El valor devuelto depende de la propiedad del nodo.En la siguiente tabla se recogen los tipos de nodo que tienen un valor para devolver.Todos los demás tipos de nodo devuelven String.Empty.Tipo de nodo Valor AttributeValor del atributo. CDATAContenido de la sección CDATA. CommentContenido del comentario. DocumentTypeSubconjunto interno. ProcessingInstructionTodo el contenido, salvo el destino. SignificantWhitespaceEspacio en blanco entre marcas en un modelo de contenido mixto. TextEl contenido del nodo de texto. WhitespaceEspacio en blanco entre marcas. XmlDeclarationContenido de la declaración. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el tipo de Common Language Runtime (CLR) del nodo actual. + Tipo de CLR correspondiente al valor con tipo del nodo.De manera predeterminada, es System.String. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:space actual. + Uno de los valores de .Si no existe ningún ámbito de xml:space, el valor predeterminado de esta propiedad será XmlSpace.None. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece si los métodos asincrónicos de se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si se va a realizar la comprobación de caracteres. + Es true si se va a realizar la comprobación de caracteres; en caso contrario, es false.De manera predeterminada, es true.NotaSi procesa datos de texto, siempre comprueba que los nombres XML y el contenido de texto son válidos, independientemente de la configuración de la propiedad.Al establecer la propiedad en false, se desactiva la comprobación de caracteres en las referencias a entidades de caracteres. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si se debe cerrar la secuencia o el objeto subyacente al cerrar el lector. + Es true para cerrar la secuencia o subyacente al cerrar el lector; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que cumplirá . + Uno de los valores de enumeración que especifica el nivel de cumplimiento que se aplicará el lector XML.De manera predeterminada, es . + + + Obtiene o establece un valor que determine el procesamiento de DTD. + Uno de los valores de enumeración que determina el procesamiento de DTD.De manera predeterminada, es . + + + Obtiene o establece un valor que indica si se van a omitir los comentarios. + Es true para omitir los comentarios; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se van a omitir las instrucciones de procesamiento. + Es true para omitir las instrucciones de procesamiento; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se va a omitir el espacio en blanco no significativo. + Es true para omitir el espacio en blanco; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el desplazamiento del número de línea del objeto . + Desplazamiento del número de línea.El valor predeterminado es 0. + + + Obtiene o establece el desplazamiento de la posición de línea del objeto . + Desplazamiento de la posición de la línea.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo de caracteres permitido en un documento que resulta de expandir las entidades. + El número máximo de caracteres permitido de las entidades expandidas.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo permitido de caracteres en un documento XML.Un valor cero (0) significa que no existe ningún límite en el tamaño del documento XML.Un valor distinto de cero especifica el tamaño máximo, en caracteres. + El número máximo de caracteres permitido en un documento XML.El valor predeterminado es 0. + + + Obtiene o establece el objeto utilizado para las comparaciones de cadenas subdivididas. + Objeto que almacena todas las cadenas subdivididas que utilizan todas las instancias del objeto creadas mediante este objeto .De manera predeterminada, es null.La instancia de creada utilizará un nuevo objeto vacío si este valor es null. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Especifica el ámbito de xml:space actual. + + + El ámbito de xml:space equivale a default. + + + Sin ámbito de xml:space. + + + El ámbito de xml:space equivale a preserve. + + + Representa un sistema de escritura que constituye una manera rápida, no almacenada en caché y de solo avance para generar flujos o archivos que contienen datos XML. + + + Inicializa una nueva instancia de la clase . + + + Crea una nueva instancia de mediante el flujo especificado. + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + The value is null. + + + Crea una nueva instancia de mediante el flujo y el objeto . + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + The value is null. + + + Crea una nueva instancia de mediante los objetos y especificados. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Libera todos los recursos usados por la instancia actual de la clase . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libera los recursos no administrados que usa y libera los recursos administrados de forma opcional. + Es true para liberar recursos tanto administrados como no administrados; es false para liberar únicamente recursos no administrados. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, vuelca el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vuelca asincrónicamente el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + Tarea que representa la operación Flush asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, devuelve el prefijo más próximo definido en el ámbito de espacio de nombres actual correspondiente al identificador URI de espacio de nombres. + Prefijo coincidente o null si no se encuentra ningún identificador URI de espacio de nombres coincidente en el ámbito actual. + Identificador URI de espacio de nombres cuyo prefijo se desea buscar. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto usado para crear esta instancia del sistema de escritura.Si este sistema de escritura no se creó usando el método , esta propiedad devuelve null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe todos los atributos que se encuentran en la posición actual en . + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe todos los atributos encontrados en la posición actual en . + Tarea que representa la operación WriteAttributes asincrónica. + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el valor y nombre local especificados. + Nombre local del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe un atributo con el valor, nombre local e identificador URI del espacio de nombres especificados. + Nombre local del atributo. + Identificador URI de espacio de nombres que se va asociar al atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el prefijo, el nombre local, el identificador URI de espacio de nombres y el valor especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un atributo con el prefijo, el nombre local, el URI del espacio de nombres y el valor especificados. + Tarea que representa la operación WriteAttributeString asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en Base64 y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados en Base64 y escribe el texto resultante. + Tarea que representa la operación WriteBase64 asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en BinHex y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados como BinHex y escribe el texto resultante. + Tarea que representa la operación WriteBinHex asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un bloque <![CDATA[...]]> que contiene el texto especificado. + Texto que se va a colocar en el bloque CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un bloque <![CDATA[...]]> que contiene el texto especificado. + Tarea que representa la operación WriteCData asincrónica. + Texto que se va a colocar en el bloque CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, impone la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Carácter Unicode para el que se va a generar una entidad de caracteres. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Impone asincrónicamente la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Tarea que representa la operación WriteCharEntity asincrónica. + Carácter Unicode para el que se va a generar una entidad de caracteres. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe texto en un búfer cada vez. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente texto en un búfer cada vez. + Tarea que representa la operación WriteChars asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un comentario <!--...--> que contiene el texto especificado. + Texto que se va a colocar en el comentario. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe un comentario <!--...--> que contiene el texto especificado. + Tarea que representa la operación WriteComment asincrónica. + Texto que se va a colocar en el comentario. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración DOCTYPE con el nombre y atributos opcionales especificados. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración DOCTYPE con el nombre y los atributos opcionales especificados. + Tarea que representa la operación WriteDocType asincrónica. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un elemento con el nombre local y el valor especificados. + Nombre local del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el nombre local especificado, el URI de espacio de nombres y el valor. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el prefijo, nombre local, el URI de espacio de nombres y el valor especificados. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un elemento con el nombre local, el URI de espacio de nombres, el valor y el prefijo especificados. + Tarea que representa la operación WriteElementString asincrónica. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra la llamada a anterior. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra de forma asincrónica la llamada anterior al método . + Tarea que representa la operación WriteEndAttribute asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra todos los elementos o atributos abiertos y vuelve a colocar el sistema de escritura en el estado de inicio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente todos los elementos o atributos abiertos y coloca de nuevo el sistema de escritura en el estado de inicio. + Tarea que representa la operación WriteEndDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una referencia a entidad de la siguiente forma: &name;. + Nombre de la referencia a entidad. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente una referencia a entidad de la siguiente manera: &name;. + Tarea que representa la operación WriteEntityRef asincrónica. + Nombre de la referencia a entidad. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteFullEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteName asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteNmToken asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, copia todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia asincrónicamente todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + Tarea que representa la operación WriteNode asincrónica. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe de forma asincrónica una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Tarea que representa la operación WriteProcessingInstruction asincrónica. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Tarea que representa la operación WriteQualifiedName asincrónica. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde un búfer de caracteres. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde una cadena. + Cadena que contiene el texto que se va a escribir. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el marcado sin formato de un búfer de caracteres. + Tarea que representa la operación WriteRaw asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente el marcado sin formato de una cadena. + Tarea que representa la operación WriteRaw asincrónica. + Cadena que contiene el texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe el inicio de un atributo con el nombre local especificado. + Nombre local del atributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el inicio de un atributo con el URI de espacio de nombres y el nombre local especificados. + Nombre local del atributo. + URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el inicio de un atributo con el prefijo, el nombre local y el URI de espacio de nombres especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el inicio de un atributo con el prefijo, URI de espacio de nombres y el nombre local especificados. + Tarea que representa la operación WriteStartAttribute asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0" y el atributo independiente. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0". + Tarea que representa la operación WriteStartDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0" así como el atributo independiente. + Tarea que representa la operación WriteStartDocument asincrónica. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una etiqueta de apertura con el nombre local especificado. + Nombre local del elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres especificado. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento.Si este espacio de nombres ya está en el ámbito y tiene asociado un prefijo, el sistema de escritura escribe automáticamente también dicho prefijo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres y prefijo especificados. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la etiqueta de apertura especificada y la asocia al espacio de nombres y al prefijo especificados. + Tarea que representa la operación WriteStartElement asincrónica. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el estado del sistema de escritura. + Uno de los valores de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el contenido de texto especificado. + Texto que se va a escribir. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el contenido de texto dado. + Tarea que representa la operación WriteString asincrónica. + Texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, genera y escribe la entidad de carácter suplente para el par de caracteres suplentes. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera y escribe asincrónicamente la entidad de carácter suplente del par de caracteres suplentes. + Tarea que representa la operación WriteSurrogateCharEntity asincrónica. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el valor del objeto. + Valor del objeto que se va a escribir.Nota   Con el lanzamiento de .NET Framework 3.5, este método acepta como parámetro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un número de punto flotante de precisión sencilla. + El número de punto flotante de precisión sencilla que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el espacio en blanco especificado. + Cadena de caracteres de espacio en blanco. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el espacio en blanco especificado. + Tarea que representa la operación WriteWhitespace asincrónica. + Cadena de caracteres de espacio en blanco. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, se obtiene un que representa el ámbito de xml:space actual. + XmlSpace que representa el ámbito de xml:space actual.Valor Significado NoneEste es el valor predeterminado si no existe ningún ámbito de xml:space.DefaultEl ámbito actual es xml:space="default".PreserveEl ámbito actual es xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece un valor que indica si los métodos asincrónicos se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si el sistema de escritura XML debería comprobar y asegurarse de que todos los caracteres en el documento se ajustan a la sección "2.2 Characters" de la recomendación XML 1.0 del Consorcio W3C. + true si se va a realizar la comprobación de caracteres; en caso contrario, false.De manera predeterminada, es true. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si el objeto también debe cerrar el flujo subyacente o cuando se llama al método . + true para cerrar también el flujo subyacente o ; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que el sistema de escritura XML comprueba para la salida XML. + Uno de los valores de enumeración que especifica el nivel de conformidad (documento, fragmento o detección automática).De manera predeterminada, es . + + + Obtiene o establece el tipo de codificación de texto que se va a usar. + Codificación de texto que se va a usar.De manera predeterminada, es Encoding.UTF8. + + + Obtiene o establece un valor que indica si se va a aplicar sangría a los elementos. + true para escribir elementos individuales en líneas nuevas y aplicar sangría; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece la cadena de caracteres que se va a usar al aplicar sangría.Esta opción se usa cuando la propiedad se establece en true. + Cadena de caracteres que se va a usar al aplicar sangría.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es dos espacios. + The value assigned to the is null. + + + Obtiene o establece un valor que indica si debe quitar declaraciones de espacio de nombres duplicadas al escribir contenido XML.El comportamiento predeterminado es que el sistema de escritura genere todas las declaraciones de espacio de nombres que se encuentran en la resolución de espacios de nombres del sistema de escritura. + Enumeración usada para especificar si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Obtiene o establece la cadena de caracteres que se va a usar para los saltos de línea. + Cadena de caracteres que se va a usar para los saltos de línea.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es \r\n (retorno de carro, nueva línea). + The value assigned to the is null. + + + Obtiene o establece un valor que indica si se deben normalizar los saltos de línea en el resultado. + Uno de los valores de .De manera predeterminada, es . + + + Obtiene o establece un valor que indica si los atributos se deben escribir en una nueva línea. + true para escribir los atributos en líneas individuales; en caso contrario, false.De manera predeterminada, es false.NotaEsta configuración no se aplica cuando el valor de la propiedad es false.Cuando se establece en true, a cada atributo le precede una nueva línea y un nivel adicional de sangría. + + + Obtiene o establece un valor que indica si debe omitir una declaración XML. + true para omitir la declaración XML; en caso contrario, false.El valor predeterminado es false, se escribe una declaración XML. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Obtiene o establece un valor que indica si agregará etiquetas de cierre a todas las etiquetas de elementos sin cerrar cuando se llame al método . + + Es true si se cerrarán todas las etiquetas de elementos sin cerrar; si no, es false.El valor predeterminado es true. + + + Una representación en memoria de un esquema XML según se indica en las especificaciones XML Schema Part 1: Structures y XML Schema Part 2: Datatypes de World Wide Web Consortium (W3C). + + + Indica si los atributos o los elementos deben calificarse con un espacio de nombres como prefijo. + + + El formato de elemento y de atributo no se especifica en el esquema. + + + Los atributos y los elementos deben estar calificados con el espacio de nombres como prefijo. + + + Los elementos y los atributos no deben estar calificados con el espacio de nombres como prefijo. + + + Proporciona formato personalizado para la serialización y deserialización XML. + + + Este método se reserva y no debe utilizarse.Al implementar la interfaz IXmlSerializable, debe devolver null (Nothing en Visual Basic) desde este método y, en su lugar, si se requiere especificar un esquema personalizado, aplique a la clase. + Clase que describe la representación XML del objeto producido por el método y utilizado por el método . + + + Genera un objeto a partir de su representación XML. + Secuencia de desde la que se deserializa el objeto. + + + Convierte un objeto en su representación XML. + Secuencia de para la que se serializa el objeto. + + + Cuando se aplica a un tipo, almacena el nombre de un método estático del tipo que devuelve un esquema XML y un (o para los tipos anónimos) que controla la serialización del tipo. + + + Inicializa una nueva instancia de la clase , tomando el nombre del método estático que proporciona el esquema XML del tipo. + El nombre del método estático que se debe implementar. + + + Obtiene o establece un valor que determina si la clase de destino es un carácter comodín o que el esquema para la clase contiene sólo un elemento xs:any. + true, si la clase es un comodín, o si el esquema contiene sólo el elemento xs:any; de lo contrario, false. + + + Obtiene el nombre del método estático que proporciona el esquema XML del tipo y el nombre de su tipo de datos de esquemas XML. + Nombre del método que invoca la infraestructura de XML para devolver un esquema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..f9d6d67 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml @@ -0,0 +1,2659 @@ + + + + System.Xml.ReaderWriter + + + + Spécifie l'ampleur des contrôles d'entrée ou de sortie que les objets et effectuent. + + + L'objet ou détecte automatiquement si une vérification au niveau du document ou du fragment doit être effectuée et procède au contrôle approprié.Si vous encapsulez un autre objet ou , l'objet externe n'effectue aucune vérification de conformité supplémentaire.Le contrôle de conformité doit être fait par l'objet sous-jacent.Pour plus de détails sur la détermination du niveau de conformité, consultez les propriétés et . + + + Les données XML respectent les règles définissant un document XML 1.0 bien formé, tel que défini par le W3C. + + + Les données XML constituent un fragment XML bien formé, tel que défini par le W3C. + + + Spécifie les options de traitement des DTD.L'énumération est utilisée par la classe . + + + Entraîne le fait que l'élément DOCTYPE est ignoré.Aucun traitement de DTD ne se poursuit. + + + Spécifie que lorsqu'une DTD est rencontrée, un est levé avec un message signalant que les DTD sont interdites.Il s'agit du comportement par défaut. + + + Fournit une interface pour permettre à une classe de retourner des informations de ligne et de position. + + + Obtient une valeur indiquant si la classe peut retourner des informations de ligne. + true si et peuvent être fournis ; sinon, false. + + + Obtient le numéro de la ligne active. + Le numéro de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Obtient la position de la ligne active. + La position de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Fournit un accès en lecture seule à un jeu de mappages de préfixes et d'espaces de noms. + + + Obtient une collection de mappages de préfixes sur des espaces de noms définis qui sont actuellement dans la portée. + + qui contient les espaces de noms actuellement dans la portée. + Valeur de qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient l'URI de l'espace de noms mappé sur le préfixe spécifié. + L'URI de l'espace de noms qui est mappé au préfixe ; null si le préfixe n'est pas mappé à un URI d'espace de noms. + Préfixe dont vous recherchez l'URI de l'espace de noms. + + + Obtient le préfixe qui est mappé sur l'URI de l'espace de noms spécifié. + Le préfixe qui est mappé sur l'URI de l'espace de noms ; null si l'URI de l'espace de noms n'est pas mappé sur un préfixe. + URI de l'espace de noms dont vous recherchez le préfixe. + + + Spécifie si vous souhaitez supprimer les déclarations d'espace de noms en double dans le . + + + Spécifie que les déclarations d'espace de noms en double ne seront pas supprimées. + + + Spécifie que les déclarations d'espace de noms en double seront supprimées.Pour l'espace de noms en double à supprimer, le préfixe et l'espace de noms doivent correspondre. + + + Implémente un à thread unique. + + + Initialise une nouvelle instance de la classe NameTable. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans NameTable.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant les chaînes à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère de la chaîne. + Nombre de caractères dans la chaîne. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans le NameTable. + Chaîne à ajouter. + + a la valeur null. + + + Obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Obtient la chaîne atomisée de valeur spécifiée. + L'objet de chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie comment gérer les sauts de ligne. + + + Les caractères de nouvelle ligne sont définis comme "entitize".Ce paramètre conserve tous les caractères lorsque la sortie est lue par un normalisant. + + + Les caractères de nouvelle ligne restent inchangés.La sortie est identique à l'entrée. + + + Les caractères de nouvelle ligne sont remplacés pour correspondre au caractère spécifié dans la propriété . + + + Spécifie l'état du lecteur. + + + La méthode a été appelée. + + + La fin du fichier a été atteinte avec succès. + + + Une erreur s'est produite et empêche l'opération de lecture de se poursuivre. + + + La méthode Read n'a pas été appelée. + + + La méthode Read a été appelée.Des méthodes supplémentaires peuvent être appelées sur le lecteur. + + + Spécifie l'état de . + + + Indique qu'une valeur d'attribut est en cours d'écriture. + + + Indique que la méthode a été appelée. + + + Indique que le contenu d'élément est en cours d'écriture. + + + Indique qu'une balise de début d'élément est en cours d'écriture. + + + Une exception a été levée et a laissé le dans un état non valide.Vous pouvez appeler la méthode pour mettre le à l'état .Toute autre méthode appelle les résultats dans un . + + + Indique que le prologue est en cours d'écriture. + + + Indique qu'une méthode Write n'a pas encore été appelée. + + + Encode et décode les noms XML, et fournit des méthodes pour la conversion entre les types Common Language Runtime et les types XSD (XML Schema Definition).Lors de la conversion de types de données, les valeurs retournées sont indépendantes des paramètres régionaux. + + + Décode un nom.Cette méthode fait le contraire des méthodes et . + Nom décodé. + Nom à transformer. + + + Convertit le nom en un nom local XML valide. + Nom encodé. + Nom à encoder. + + + Convertit le nom en un nom XML valide. + Retourne le nom avec les caractères non valides remplacés par une chaîne d'échappement. + Nom à traduire. + + + Vérifie que le nom est valide selon la spécification XML. + Nom encodé. + Nom à encoder. + + + Convertit la chaîne en un équivalent . + Valeur Boolean, c'est-à-dire true ou false. + Chaîne à convertir. + + is null. + + does not represent a Boolean value. + + + Convertit la chaîne en un équivalent . + Équivalent Byte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Char représentant le caractère unique. + Chaîne contenant un seul caractère à convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convertit la chaîne en un élément en utilisant le mode spécifié. + Équivalent de la chaîne . + Valeur de la chaîne à convertir. + Une des valeurs de qui spécifient si la date doit être convertie en heure locale ou conservée en temps UTC, s'il s'agit d'une date UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir.Remarque   La chaîne doit être conforme à un sous-ensemble de la recommandation du W3C sur le type XML dateTime.Pour plus d'informations, consultez http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Format à partir duquel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à ce format. + + is null. + + or is an empty string or is not in the specified format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Tableau de formats à partir duquel peut être convertie.Chaque format figurant dans peut correspondre à un des sous-ensembles de la recommandation W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à un de ces formats. + + + Convertit la chaîne en un équivalent . + Équivalent Decimal de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Double de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Guid de la chaîne. + Chaîne à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent Int16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent SByte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Single de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit le en . + Une représentation sous forme de chaîne de l'élément Boolean, c'est-à-dire "true" ou "false". + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Byte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Char. + Valeur à convertir. + + + Convertit l'élément en une chaîne en utilisant le mode spécifié. + Équivalent de l'élément . + Valeur à convertir. + Une des valeurs de qui spécifient comment traiter la valeur . + The value is not valid. + The or value is null. + + + Convertit l'élément fourni en une chaîne . + Représentation de l'élément fourni. + + à convertir. + + + Convertit l'élément fourni en une chaîne dans le format spécifié. + Représentation dans le format spécifié de l'élément . + + à convertir. + Format vers lequel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Convertit le en . + Représentation sous forme de chaîne de Decimal. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Double. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Guid. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int64. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de SByte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Single. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de TimeSpan. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt64. + Valeur à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent TimeSpan de la chaîne. + Chaîne à convertir.Le format de chaîne doit être conforme à la recommandation W3C intitulée Schema Part 2 : Datatypes pour les durées. + + is not in correct format to represent a TimeSpan value. + + + Convertit la chaîne en un équivalent . + Équivalent UInt16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Vérifie que le nom est un nom valide selon la recommandation W3C XML (Extended Markup Language). + Le nom, s'il s'agit d'un nom XML valide. + Nom à vérifier. + + is not a valid XML name. + + is null or String.Empty. + + + Vérifie que le nom est un NCName valide selon la recommandation W3C XML (Extended Markup Language).Un élément NCName est un nom qui ne peut pas contenir un signe deux-points. + Le nom, s'il s'agit d'un NCName valide. + Nom à vérifier. + + is null or String.Empty. + + is not a valid non-colon name. + + + Vérifie que la chaîne est un NMTOKEN valide selon la recommandation du W3C intitulée XML Schema Part2 : Datatypes + Jeton de nom, s'il s'agit d'un NMTOKEN valide. + Chaîne à vérifier. + The string is not a valid name token. + + is null. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'ID publics valides. + Retourne la chaîne passée si tous les caractères de l'argument sont des caractères d'ID publics valides. + + qui contient l'ID à valider. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides. + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides, sinon null. + + à vérifier. + + + Retourne les caractères de la chaîne passée si tous les caractères et caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations relatives au premier caractère non valide rencontré. + Retourne les caractères de la chaîne passée si tous les caractères et les caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations sur le premier caractère non valide rencontré. + Chaîne qui contient les caractères à vérifier. + + + Spécifie la façon de traiter la valeur d'heure lors de la conversion entre chaîne et . + + + Traiter en tant qu'heure locale.Si l'objet représente une heure UTC (Universal Time Coordinates), il est converti en heure locale. + + + Les informations relatives au fuseau horaire doivent être conservées lors de la conversion. + + + Traiter en tant qu'heure locale si un est converti en chaîne. + + + Traiter en tant qu'heure UTC.Si l'objet représente une heure locale, il est converti en UTC. + + + Retourne des informations détaillées sur la dernière exception. + + + Initialise une nouvelle instance de la classe XmlException. + + + Initialise une nouvelle instance de la classe XmlException avec un message d'erreur spécifié. + Description de l'erreur. + + + Initialise une nouvelle instance de la classe XmlException. + Description de la condition d'erreur. + + qui a levé XmlException, le cas échéant.Cette valeur peut être null. + + + Initialise une nouvelle instance de la classe XmlException avec le message, l'exception interne, le numéro de ligne et la position de ligne spécifiés. + Description de l'erreur. + Exception qui constitue la cause de l'exception actuelle.Cette valeur peut être null. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient le numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient la position de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient un message décrivant l'exception actuelle. + Message d'erreur indiquant la raison de l'exception. + + + Résout des espaces de noms dans une collection, ajoute des espaces de noms à une collection, en supprime de celle-ci et gère la portée de ces espaces de noms. + + + Initialise une nouvelle instance de la classe avec le spécifié. + + à utiliser. + null is passed to the constructor + + + Ajoute l'espace de noms spécifié à la collection. + Préfixe à associer à l'espace de noms ajouté.Utilisez String.Empty pour ajouter un espace de noms par défaut.Remarque : si est utilisé pour la résolution des espaces de noms dans une expression XPath (XML Path Language), un préfixe doit être spécifié.Si une expression XPath n'inclut pas de préfixe, l'URI (Uniform Resource Identifier) d'espace de noms est supposé être un espace de noms vide.Pour plus d'informations sur les expressions XPath et , reportez-vous aux méthodes et . + Espace de noms à ajouter. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtient l'URI de l'espace de noms de l'espace de noms par défaut. + Retourne l'URI de l'espace de noms de l'espace de noms par défaut ou String.Empty s'il n'existe aucun espace de noms par défaut. + + + Retourne un énumérateur qui peut être utilisé pour itérer au sein des espaces de noms de . + + contenant les préfixes stockés par . + + + Obtient une collection de noms d'espace de noms indexés par préfixe qui peut être utilisée pour énumérer les espaces de noms figurant actuellement dans la portée. + Collection de paires d'espace de noms et préfixe actuellement dans la portée. + Valeur d'énumération qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient une valeur indiquant si le préfixe fourni possède un espace de noms défini pour la portée actuelle faisant l'objet d'un push. + true si un espace de noms est défini ; sinon, false. + Préfixe de l'espace de noms que vous souhaitez rechercher. + + + Obtient l'URI de l'espace de noms du préfixe spécifié. + Retourne l'URI de l'espace de noms pour ou null en l'absence d'un espace de noms mappé.La chaîne retournée est atomisée.Pour plus d'informations sur les chaînes atomisées, consultez la classe . + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour mettre en correspondance l'espace de noms par défaut, passez String.Empty. + + + Recherche le préfixe déclaré pour l'URI de l'espace de noms spécifié. + Préfixe correspondant.S'il n'y a aucun préfixe mappé, la méthode retourne String.Empty.Si une valeur nulle est fournie, null est retourné. + Espace de noms à résoudre pour le préfixe. + + + Obtient le associé à cet objet. + + utilisé par cet objet. + + + Dépile une portée espace de noms de la pile. + true s'il reste des portées espaces de noms sur la pile ; false s'il n'existe plus d'espaces de noms à dépiler. + + + Exécute un push d'une portée espace de noms dans la pile. + + + Supprime l'espace de noms indiqué pour le préfixe spécifié. + Préfixe de l'espace de noms. + Espace de noms à supprimer pour le préfixe spécifié.L'espace de noms supprimé provient de la portée espace de noms en cours.Les espaces de noms situés en dehors de la portée actuelle sont ignorés. + The value of or is null. + + + Définit la portée espace de noms. + + + Tous les espaces de noms définis dans la portée du nœud actuel.Ceci inclut l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms définis dans la portée du nœud actuel, à l'exclusion de l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms qui sont définis localement sur le nœud actuel. + + + Table d'objets de chaînes atomisées. + + + Initialise une nouvelle instance de la classe . + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante.Si la longueur a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante. + Nom à ajouter. + + a la valeur null. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant la même valeur que la chaîne spécifiée. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie le type de nœud. + + + Attribut (par exemple, id='123'). + + + Section CDATA (par exemple, <![CDATA[my escaped text]]>). + + + Commentaire (par exemple, <!-- my comment -->). + + + Objet document qui, en tant que racine de l'arborescence de documents, permet d'accéder à l'intégralité du document XML. + + + Fragment de document. + + + Déclaration de type du document, indiquée par la balise suivante (par exemple, <!DOCTYPE...>). + + + Élément (par exemple, <item>). + + + Balise d'élément de fin (par exemple, </item>). + + + Retourné lorsque XmlReader parvient à la fin du remplacement de l'entité, à la suite d'un appel à . + + + Déclaration d'entité (par exemple, <!ENTITY...>). + + + Référence à une entité (par exemple, &num;). + + + Ceci est retourné par si aucune méthode Read n'a été appelée. + + + Notation dans la déclaration de type du document (par exemple, <!NOTATION...>). + + + Instruction de traitement (par exemple, <?pi test?>). + + + Espace blanc entre le balisage dans un modèle de contenu mixte ou espace blanc dans la portée xml:space="preserve". + + + Texte d'un nœud. + + + Espace blanc entre le balisage. + + + Déclaration XML (par exemple, <?xml version='1.0'?>). + + + Fournit toutes les informations de contexte requises par pour analyser un fragment XML. + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le sous-ensemble DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space, encodage et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les valeurs , , xml:lang et xml:space spécifiées. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , xml:lang, xml:space spécifiés et l'encodage spécifié. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations sur les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Obtient ou définit l'URI de base. + URI de base à utiliser pour résoudre le fichier DTD. + + + Obtient ou définit le nom de la déclaration de type du document. + Nom de la déclaration de type du document. + + + Obtient ou définit le type d'encodage. + Objet indiquant le type d'encodage. + + + Obtient ou définit le sous-ensemble interne DTD. + Sous-ensemble interne DTD.Par exemple, cette propriété retourne tout ce qui est contenu entre crochets <!DOCTYPE doc [...]>. + + + Obtient ou définit l'. + XmlNamespaceManager. + + + Obtient le utilisé pour atomiser les chaînes.Pour plus d'informations sur les chaînes atomisées, consultez . + XmlNameTable. + + + Obtient ou définit l'identificateur public. + Identificateur public. + + + Obtient ou définit l'identificateur système. + Identificateur système. + + + Obtient ou définit la portée xml:lang en cours. + Portée xml:lang en cours.S'il n'existe aucun xml:lang dans la portée, String.Empty est retournée. + + + Obtient ou définit la portée xml:space en cours. + Valeur indiquant la portée xml:space. + + + Représente un nom qualifié XML. + + + Initialise une nouvelle instance de la classe . + + + Initialise une nouvelle instance de la classe avec le nom spécifié. + Le nom local à utiliser comme nom de l'objet . + + + Initialise une nouvelle instance de la classe avec le nom et l'espace de noms spécifiés. + Le nom local à utiliser comme nom de l'objet . + Espace de noms pour l'objet . + + + Fournit une chaîne vide . + + + Détermine si l'objet spécifié est identique à l'objet en cours. + true si les deux sont le même objet d'instance ; sinon, false. + + à comparer. + + + Retourne le code de hachage pour . + Code de hachage de cet objet. + + + Obtient une valeur indiquant si est vide. + true si le nom et l'espace de noms sont des chaînes vides ; sinon false. + + + Obtient une représentation de chaîne du nom complet de . + Une représentation du nom complet ou String.Empty si un nom n'est pas défini pour l'objet. + + + Obtient une représentation d'espace de noms de . + Une représentation de l'espace de noms, ou String.Empty si un espace de noms n'est pas défini pour l'objet. + + + Compare deux objets . + true si les deux objets ont le même nom et les mêmes valeurs d'espace de noms ; sinon false. + + à comparer. + + à comparer. + + + Compare deux objets . + true si les valeurs de nom et d'espace de noms diffèrent pour les deux objets ; sinon false. + + à comparer. + + à comparer. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + Nom de l'objet. + Espace de noms pour l'objet. + + + Représente un lecteur fournissant un accès rapide, non mis en cache et en avant uniquement vers les données XML.Pour parcourir le code source de .NET Framework pour ce type, consultez la Source de référence. + + + Initialise une nouvelle instance de la classe XmlReader. + + + En cas de substitution dans une classe dérivée, obtient le nombre d'attributs du nœud actuel. + Nombre d'attributs du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de base du nœud actuel. + URI de base du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur qui indique si implémente les méthodes de lecture de contenu binaire. + true si les méthodes de lecture de contenu binaire sont implémentées ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si implémente la méthode spécifiée. + true si implémente la méthode  ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si ce lecteur peut analyser et résoudre les entités. + true si le lecteur peut analyser et résoudre les entités ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Crée un nouveau instance à l'aide du flux spécifié avec les paramètres par défaut. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + + + Crée un nouveau instance avec les paramètres et les flux de données spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance à l'aide des informations de contexte, les paramètres et les flux de données spécifiées pour l'analyse. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau à l'aide du lecteur de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + La valeur est null. + + + Crée un nouveau à l'aide de la lecture du texte spécifié et les paramètres. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau .Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance pour l'analyse à l'aide des informations de lecteur, les paramètres et le contexte de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + Les propriétés et contiennent toutes deux des valeurs.(Seule une de ces propriétés NameTable peut être définie et utilisée). + + + Crée une instance de avec l'URI spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier qui contient les données XML.La classe permet de convertir un chemin d'accès en représentation de données canonique. + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + Le fichier identifié par l'URI n'existe pas. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau à l'aide de l'URI et les paramètres spécifiés. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier contenant les données XML.L'objet sur l'objet permet de convertir un chemin d'accès en représentation de données canonique.Si est null, un nouvel objet est utilisé. + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + Impossible de trouver le fichier spécifié par l'URI. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau instance à l'aide du lecteur XML spécifié et les paramètres. + Un objet qui est encapsulé autour du texte spécifié objet. + L'objet à utiliser comme lecteur XML sous-jacent. + Les paramètres du nouveau instance.Le niveau de conformité de l'objet doit soit correspondre au niveau de conformité du lecteur sous-jacent, soit avoir la valeur . + La valeur est null. + Si l'objet spécifie un niveau de conformité qui n'est pas cohérent avec le niveau de conformité du lecteur sous-jacent.ouLe sous-jacent est dans un état ou . + + + En cas de substitution dans une classe dérivée, obtient la profondeur du nœud actuel dans le document XML. + Profondeur du nœud actuel dans le document XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour ne libérer que les ressources non managées. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le lecteur est placé à la fin du flux. + true si le lecteur est placé à la fin du flux ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié.Cette méthode ne déplace pas le lecteur. + Index de l'attribut.L'index est de base zéro.Le premier attribut possède l'index 0. + + est hors limites.Il doit être non négatif et inférieur à la taille de la collection d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné. + Nom qualifié de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné.Cette méthode ne déplace pas le lecteur. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient de façon asynchrone la valeur du nœud actuel. + Valeur du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Obtient une valeur indiquant si le nœud actuel a des attributs. + true si le nœud actuel possède des attributs ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel peut posséder . + true si le nœud sur lequel le lecteur est placé actuellement peut posséder Value ; sinon, false.Si false, le nœud a une valeur de String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un attribut généré à partir de la valeur par défaut définie dans le DTD ou le schéma. + true si le nœud actuel est un attribut dont la valeur a été générée à partir de la valeur par défaut définie dans le DTD ou le schéma ; false si la valeur d'attribut a été définie explicitement. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un élément vide (par exemple, <MyElement/>). + true si le nœud actuel est un élément (la propriété est égale à XmlNodeType.Element) qui se termine par /> ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une valeur indiquant si l'argument de chaîne est un nom XML valide. + true si le nom est valide ; sinon, false. + Nom à valider. + La valeur est null. + + + Retourne une valeur indiquant si l'argument de chaîne est un jeton de nom XML valide. + true si le jeton de nom est valide ; sinon, false. + Jeton de nom à valider. + La valeur est null. + + + Appelle et vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide. + true si trouve une balise de début ou une balise d'élément vide ; false si un type de nœud autre que XmlNodeType.Element est trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si la propriété de l'élément trouvé correspond à l'argument spécifié. + true si le nœud résultant est un élément et si la propriété Name correspond à la chaîne spécifiée.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si la propriété Name de l'élément ne correspond pas à la chaîne spécifiée. + Chaîne comparée à la propriété Name de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si les propriétés et de l'élément trouvé correspondent aux chaînes spécifiées. + true si le nœud résultant est un élément.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si les propriétés LocalName et NamespaceURI de l'élément ne correspondent pas aux chaînes spécifiées. + Chaîne à comparer à la propriété LocalName de l'élément trouvé. + Chaîne à comparer à la propriété NamespaceURI de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom local du nœud actuel. + Nom du nœud actuel dont le préfixe est supprimé.Par exemple, LocalName est book pour l'élément <bk:book>.Pour les types de nœuds ne possédant pas de nom (par exemple Text, Comment, etc.), cette propriété retourne String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, résout un préfixe de l'espace de noms dans la portée de l'élément actuel. + URI de l'espace de noms vers lequel le préfixe est mappé ou null si aucun préfixe correspondant n'est trouvé. + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour établir une correspondance avec l'espace de noms par défaut, passez une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec l'index spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre a une valeur négative. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le spécifié. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le et le spécifiés. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Vérifie si le nœud actuel est un nœud de contenu (texte non constitué d'espaces blancs, CDATA, Element, EndElement, EntityReference ou EndEntity).Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier.Il ignore les nœuds possédant les types suivants : ProcessingInstruction, DocumentType, Comment, Whitespace ou SignificantWhitespace. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie de façon asynchrone si le nœud actuel est un nœud de contenu.Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, se déplace vers l'élément contenant le nœud d'attribut actuel. + true si le lecteur est placé sur un attribut (le lecteur se déplace vers l'élément possédant l'attribut) ; false si le lecteur n'est pas placé sur un attribut (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers le premier attribut. + true si un attribut existe (le lecteur se déplace vers le premier attribut) ; sinon, false (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut suivant. + true s'il existe un attribut suivant ; false s'il n'existe plus d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom qualifié du nœud actuel. + Nom qualifié du nœud actuel.Par exemple, Name est bk:book pour l'élément <bk:book>.Le nom retourné dépend du du nœud.Les types de nœuds suivants retournent les valeurs répertoriées.Tous les autres types de nœuds retournent une chaîne vide.Type de nœud Nom AttributeNom de l'attribut. DocumentTypeNom du type de document. ElementNom de la balise. EntityReferenceNom de l'entité référencée. ProcessingInstructionCible de l'instruction de traitement. XmlDeclarationChaîne littérale xml. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de l'espace de noms (tel qu'il est défini dans la spécification relative aux espaces de noms du W3C) du nœud sur lequel le lecteur est placé. + URI d'espace de noms du nœud actuel ; sinon, une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le associé à cette implémentation. + XmlNameTable vous permettant d'obtenir la version atomisée d'une chaîne du nœud. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le type du nœud actuel. + Une des valeurs d'énumération qui spécifient le type du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le préfixe de l'espace de noms associé au nœud actuel. + Préfixe de l'espace de noms associé au nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit le nœud suivant à partir du flux. + trueSi le nœud suivant a été lu avec succès ; Sinon, false. + Une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le nœud suivant à partir du flux de données. + true si le nœud suivant a été lu correctement ; false s'il n'existe plus de nœuds à lire. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, analyse la valeur d'attribut dans un ou plusieurs nœuds Text, EntityReference ou EndEntity. + true s'il existe des nœuds à retourner.false si le lecteur n'est pas placé sur un nœud d'attribut lorsque l'appel initial est effectué ou si toutes les valeurs d'attributs ont été lues.Un attribut vide, par exemple misc="", retourne true avec un nœud unique et la valeur String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type.Par exemple, il peut être utilisé lors de la conversion d'un objet en xs:string.Cette valeur peut être null. + Le format du contenu n'est pas correct pour le type cible. + La tentative de cast n'est pas valide. + La valeur est null. + Le nœud actuel n'est pas un type de nœud pris en charge.Voir le tableau ci-dessous pour plus d'informations. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un Boolean. + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte à la position actuelle comme un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante double précision. + Contenu de texte sous la forme d'un nombre à virgule flottante double précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + Contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 32 bits. + Contenu de texte sous la forme d'un entier signé de 32 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 64 bits. + Contenu de texte sous la forme d'un entier signé de 64 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit le contenu d'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante double précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud de contenu actuel est une balise de fin et avance le lecteur jusqu'au nœud suivant. + Le nœud actuel n'est pas une balise de fin ou un code XML incorrect est trouvé dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit tout le contenu, y compris le balisage, sous forme de chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée.Si le nœud actuel n'est ni un élément ni un attribut, une chaîne vide est retournée. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone tout le contenu, notamment le balisage, en tant que chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, lit le contenu, y compris le balisage, représentant ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu, notamment le balisage, qui représente ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud actuel est un élément et avance le lecteur jusqu'au nœud suivant. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le spécifié, puis avance le lecteur jusqu'au nœud suivant. + Nom qualifié de l'élément. + Code XML incorrect dans le flux d'entrée. ou Le de l'élément ne correspond pas au donné. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le et le spécifiés, puis avance le lecteur jusqu'au nœud suivant. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Code XML incorrect dans le flux d'entrée.ouLes propriétés et de l'élément trouvé ne correspondent pas aux arguments spécifiés. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'état du lecteur. + L'une des valeurs d'énumération qui spécifie l'état du lecteur. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une nouvelle instance de XmlReader qui permet de lire le nœud actuel, ainsi que tous ses descendants. + Une nouvelle instance de lecteur XML définie sur .Appel de la méthode positionne le nouveau lecteur sur le nœud qui était actif avant l'appel à la (méthode). + Lorsque cette méthode est appelée, le lecteur XML n'est pas positionné sur un élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Avance le vers l'élément descendant suivant portant le nom qualifié spécifié. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom qualifié de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance vers le nœud descendant suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom local de l'élément vers lequel se déplacer. + URI de l'espace de noms de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit jusqu'à trouver un élément avec le nom qualifié spécifié. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Nom qualifié de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Lit jusqu'à trouver un élément avec le nom local et l'URI de l'espace de noms spécifiés. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Avance le XmlReader vers l'élément frère suivant portant le nom qualifié spécifié. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom qualifié de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance XmlReader vers l'élément frère suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom local de l'élément frère vers lequel se déplacer. + URI de l'espace de noms de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Le nœud actuel n'a pas de valeur ( est false). + La valeur est null. + L'index de la mémoire tampon, ou l'index augmenté de la valeur du paramètre count, est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + La forme des données XML n'est pas correcte. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, résout la référence d'entité des nœuds EntityReference. + Le lecteur n'est pas placé sur un nœud EntityReference ; cette implémentation du lecteur ne permet pas de résoudre les entités ( retourne false). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance du lecteur.Si ce lecteur n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore les enfants du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore de façon asynchrone les enfants du nœud actuel. + Nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, obtient la valeur texte du nœud actuel. + La valeur retournée dépend du du nœud.Le tableau suivant répertorie les types de nœuds possédant une valeur de retour.Tous les autres types de nœuds retournent String.Empty.Type de nœud Valeur AttributeValeur de l'attribut. CDATAContenu de la section CDATA. CommentContenu du commentaire. DocumentTypeSous-ensemble interne. ProcessingInstructionContenu entier, à l'exclusion de la cible. SignificantWhitespaceEspace blanc entre les balisages dans un modèle de contenu mixte. TextContenu du nœud de texte. WhitespaceEspace blanc entre les balisages. XmlDeclarationContenu de la déclaration. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient le type de CLR du nœud actuel. + Type CLR qui correspond à la valeur typée du nœud.La valeur par défaut est System.String. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang en cours. + Portée xml:lang en cours. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:space en cours. + Une des valeurs de .S'il n'existe pas de portée xml:space, cette propriété prend la valeur par défaut XmlSpace.None. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur indiquant si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur indiquant si la vérification des caractères doit être assurée. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true.RemarqueSi le traite des données de texte, il vérifie toujours que les noms XML et le contenu de texte sont valides, indépendamment du paramètre de propriété.L'attribution à de la valeur false désactive la vérification de caractères pour la recherche de références d'entité de caractère. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si le flux sous-jacent ou doit être fermé à la fermeture du lecteur. + true pour fermer le flux sous-jacent ou à la fermeture du lecteur ; sinon false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité que respecte. + Une des valeurs d'énumération qui spécifie le niveau de conformité appliqué par le lecteur XML.La valeur par défaut est . + + + Obtient ou définit une valeur qui détermine le traitement des DTD. + L'une des valeurs d'énumération qui détermine le traitement des DTD.La valeur par défaut est . + + + Obtient ou définit une valeur indiquant si les commentaires doivent être ignorés. + true pour ignorer les commentaires ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les instructions de traitement doivent être ignorées. + true pour ignorer les instructions de traitement ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les espaces blancs non significatifs doivent être ignorés. + true pour ignorer l'espace blanc ; sinon false.La valeur par défaut est false. + + + Obtient ou définit l'offset du numéro de ligne de l'objet . + Offset de numéro de ligne.La valeur par défaut est 0. + + + Obtient ou définit l'offset de position de ligne de l'objet . + Décalage de position de ligne.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document, qui résultent du développement des entités. + Nombre maximal autorisé de caractères résultant du développement des entités.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document XML.Zéro (0) signifie que la taille du document XML n'est pas limitée.Une valeur non nulle spécifie la taille maximale, en caractères. + Nombre maximal autorisé de caractères dans un document XML.La valeur par défaut est 0. + + + Obtient ou définit servant aux comparaisons de chaînes atomisées. + + qui stocke toutes les chaînes atomisées utilisées par toutes les instances créées à l'aide de cet objet .La valeur par défaut est null.L'instance de créée utilisera un nouveau vide si cette valeur est null. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Spécifie la portée xml:space en cours. + + + La portée xml:space est default. + + + Pas de portée xml:space. + + + La portée xml:space est preserve. + + + Représente un writer qui fournit un moyen rapide, sans mise en cache et en avant de générer des flux de données ou des fichiers contenant des données XML. + + + Initialise une nouvelle instance de la classe . + + + Crée une instance de à l'aide du flux spécifié. + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + The value is null. + + + Crée une instance de à l'aide du flux et de l'objet . + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide de l'objet spécifié. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + The value is null. + + + Crée une instance de à l'aide des objets et spécifiés. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour libérer uniquement les ressources non managées. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, vide le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vide de façon asynchrone le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + Tâche qui représente l'opération Flush asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, retourne le préfixe le plus proche défini dans la portée espace de noms actuelle pour l'URI de l'espace de noms. + Le préfixe correspondant ou null, s'il n'existe aucun URI d'espace de noms correspondant dans la portée actuelle. + URI de l'espace de noms dont vous recherchez le préfixe. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance de writer.Si ce writer n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit tous les attributs trouvés à la position actuelle dans . + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone tous les attributs trouvés à la position actuelle dans le . + Tâche qui représente l'opération WriteAttributes asynchrone. + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le nom local et la valeur spécifiés. + Le nom local de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit un attribut avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'attribut. + URI de l'espace de noms à associer à l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteAttributeString asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format Base64 et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format base64 et écrit le texte résultant. + Tâche qui représente l'opération WriteBase64 asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format BinHex et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format BinHex et écrit le texte résultant. + Tâche qui représente l'opération WriteBinHex asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un bloc <![CDATA[...]]> contenant le texte spécifié. + Texte à placer dans le bloc CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un bloc <![CDATA[…]]> contenant le texte spécifié. + Tâche qui représente l'opération WriteCData asynchrone. + Texte à placer dans le bloc CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, force la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Caractère Unicode pour lequel une entité de caractère doit être générée. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Force de façon asynchrone la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Tâche qui représente l'opération WriteCharEntity asynchrone. + Caractère Unicode pour lequel une entité de caractère doit être générée. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit du texte mémoire tampon par mémoire tampon. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone du texte mémoire tampon par mémoire tampon. + Tâche qui représente l'opération WriteChars asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un commentaire <!--...--> contenant le texte spécifié. + Texte à placer dans le commentaire. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un commentaire <!--...--> contenant le texte spécifié. + Tâche qui représente l'opération WriteComment asynchrone. + Texte à placer dans le commentaire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Tâche qui représente l'opération WriteDocType asynchrone. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit un élément avec la valeur et le nom locaux spécifiés. + Le nom local de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteElementString asynchrone. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme le précédent appel de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone l'appel précédent. + Tâche qui représente l'opération WriteEndAttribute asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme les éléments ou attributs ouverts, et replace le writer à l'état Start. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone les éléments ou attributs ouverts, et replace le writer à l'état Start. + Tâche qui représente l'opération WriteEndDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une référence d'entité comme suit : &name;. + Nom de la référence d'entité. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une référence d'entité comme suit : &name;. + Tâche qui représente l'opération WriteEntityRef asynchrone. + Nom de la référence d'entité. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteFullEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteName asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteNmToken asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, copie tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copie de façon asynchrone tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + Tâche qui représente l'opération WriteNode asynchrone. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une instruction de traitement avec un espace entre le nom et le texte : <?nom texte?>. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une instruction de traitement avec un espace entre le nom et le texte, comme suit : <?nom texte?>. + Tâche qui représente l'opération WriteProcessingInstruction asynchrone. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Nom local à écrire. + URI d'espace de noms de ce nom. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Tâche qui représente l'opération WriteQualifiedName asynchrone. + Nom local à écrire. + URI d'espace de noms de ce nom. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une mémoire tampon de caractères. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une chaîne. + Chaîne contenant le texte à écrire. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit manuellement de façon asynchrone un balisage brut à partir d'une mémoire tampon de caractères. + Tâche qui représente l'opération WriteRaw asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone un balisage brut à partir d'une chaîne. + Tâche qui représente l'opération WriteRaw asynchrone. + Chaîne contenant le texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit le début d'un attribut avec le nom local spécifié. + Le nom local de l'attribut. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit le début d'un attribut avec le nom local et l'URI de l'espace de noms spécifiés. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Tâche qui représente l'opération WriteStartAttribute asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0" et l'attribut autonome. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 ». + Tâche qui représente l'opération WriteStartDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 » et l'attribut autonome. + Tâche qui représente l'opération WriteStartDocument asynchrone. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une balise de début avec le nom local spécifié. + Le nom local de l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée et l'associe à l'espace de noms indiqué. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément.Si cet espace de noms est déjà dans la portée et qu'il possède un préfixe associé, le writer écrit automatiquement ce préfixe également. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée, puis l'associe à l'espace de noms et au préfixe indiqués. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la balise de début indiquée et l'associe à l'espace de noms et au préfixe spécifiés. + Tâche qui représente l'opération WriteStartElement asynchrone. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient l'état du writer. + Une des valeurs de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le texte spécifié. + Texte à écrire. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le texte spécifié. + Tâche qui représente l'opération WriteString asynchrone. + Texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, génère et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Génère de façon asynchrone et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Tâche qui représente l'opération WriteSurrogateCharEntity asynchrone. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit la valeur de l'objet. + Valeur de l'objet à écrire.Remarque   Avec le .NET Framework version 3.5, cette méthode accepte en tant que paramètre. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un nombre à virgule flottante simple précision. + Nombre à virgule flottante simple précision à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'espace blanc spécifié. + Chaîne d'espaces blancs. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'espace blanc spécifié. + Tâche qui représente l'opération WriteWhitespace asynchrone. + Chaîne d'espaces blancs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang actuelle. + Portée xml:lang actuelle. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, obtient représentant la portée xml:spaceactuelle. + Obtient un XmlSpace représentant la portée xml:space actuelle.Valeur Signification NoneValeur par défaut si aucune portée xml:space n'existe.DefaultLa portée actuelle est xml:space="default".PreserveLa portée actuelle est xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur qui indique si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur qui indique si le writer XML doit vérifier que tous les caractères du document sont conformes à la section « 2.2 Characters » de la W3C XML 1.0 Recommendation.. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si doit également fermer le flux sous-jacent ou quand la méthode est appelée. + true pour également fermer le flux sous-jacent ou  ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité de vérification de sortie XML du writer XML. + Une des valeurs d'énumération qui spécifie le niveau de conformité (document, fragment ou détection automatique).La valeur par défaut est . + + + Obtient ou définit le type d'encodage de texte à utiliser. + Encodage de texte à utiliser.La valeur par défaut est Encoding.UTF8. + + + Obtient ou définit une valeur indiquant si les éléments doivent être mis en retrait. + true pour écrire des éléments individuels sur de nouvelles lignes et les mettre en retrait ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit la chaîne de caractères à utiliser au moment de la mise en retrait.Ce paramètre est utilisé quand la propriété a la valeur true. + Chaîne de caractères à utiliser au moment de la mise en retrait.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.Par défaut, il s'agit de deux espaces. + The value assigned to the is null. + + + Obtient ou définit une valeur qui indique si doit supprimer des déclarations d'espace de noms en double pendant l'écriture du contenu XML.Le comportement par défaut consiste pour le writer à générer la sortie de toutes les déclarations d'espace de noms qui sont présentes dans le programme de résolution d'espace de noms du writer. + L'énumération utilisée pour spécifier s'il faut supprimer les déclarations d'espace de noms en double dans le . + + + Obtient ou définit la chaîne de caractères à utiliser pour les sauts de ligne. + Chaîne de caractères à utiliser pour les sauts de ligne.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.La valeur par défaut est \r\n (retour chariot, nouvelle ligne). + The value assigned to the is null. + + + Obtient ou définit une valeur indiquant s'il convient de normaliser des sauts de ligne dans la sortie. + Une des valeurs de .La valeur par défaut est . + + + Obtient ou définit une valeur indiquant s'il convient d'écrire des attributs sur une nouvelle ligne. + true pour écrire des attributs sur des lignes ; sinon, false.La valeur par défaut est false.RemarqueCe paramètre n'a aucun effet si la propriété a la valeur false.Quand a la valeur true, chaque attribut est ajouté avec une nouvelle ligne et un niveau supplémentaire de mise en retrait. + + + Obtient ou définit une valeur indiquant si une déclaration XML doit être omise. + true pour omettre la déclaration XML ; sinon, false.La valeur par défaut est false, une déclaration XML est écrite. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Obtient ou définit une valeur qui indique si ajoutera des indicateurs de fermeture à tous les indicateurs d'éléments non fermés quand la méthode est appelée. + true si toutes les balises d'élément non fermées seront fermées ; sinon, false.La valeur par défaut est true. + + + Représentation en mémoire d'un schéma XML, comme spécifié dans les spécifications XML Schema Part 1: Structures et XML Schema Part 2: Datatypes du World Wide Web Consortium (W3C). + + + Indique si les attributs ou les éléments doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Aucune forme d'élément et d'attribut n'est spécifiée dans le schéma. + + + Les éléments et les attributs doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Les éléments et les attributs ne doivent pas obligatoirement être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Offre une mise en forme personnalisée pour la sérialisation et la désérialisation XML. + + + Cette méthode est réservée et ne doit pas être utilisée.Lorsque vous implémentez l'interface IXmlSerializable, vous devez retourner la valeur null (Nothing dans Visual Basic) à partir cette méthode et, si la spécification d'un schéma personnalisé est requise, appliquez à la place à la classe. + + qui décrit la représentation XML de l'objet qui est généré par la méthode et utilisé par la méthode . + + + Génère un objet à partir de sa représentation XML. + + source à partir de laquelle l'objet est désérialisé. + + + Convertit un objet en sa représentation XML. + + flux dans lequel l'objet est sérialisé. + + + Dans le cadre d'une application à un type, stocke le nom d'une méthode statique du type qui retourne un schéma XML et un (ou pour les types anonymes) qui contrôle la sérialisation du type. + + + Initialise une nouvelle instance de la classe , en acceptant le nom de la méthode statique qui fournit le schéma XML du type. + Nom de la méthode statique qui doit être implémentée. + + + Obtient ou définit une valeur qui détermine si la classe cible est un caractère générique, ou que le schéma pour la classe contient uniquement un élément xs:any. + true si la classe est un caractère générique ou si le schéma contient uniquement l'élément xs:any ; sinon, false. + + + Obtient le nom de la méthode statique qui fournit le schéma XML du type et le nom de son type de données de schéma XML. + Nom de la méthode qui est appelée par l'infrastructure XML pour retourner un schéma XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/it/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/it/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..0b7c9a4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/it/System.Xml.ReaderWriter.xml @@ -0,0 +1,2611 @@ + + + + System.Xml.ReaderWriter + + + + Specifica il livello di controllo dell'input o dell'output eseguito dagli oggetti e . + + + L'oggetto o rileva automaticamente se il controllo deve essere eseguito a livello di documento o di frammento e procede nel modo appropriato.Se viene eseguito il wrapping di un altro oggetto o , l'oggetto esterno non esegue altri controlli di conformità.Il controllo di conformità viene eseguito fino al livello dell'oggetto sottostante.Per informazioni su come viene determinato il livello di conformità, vedere le proprietà e . + + + I dati XML sono conformi alle regole per un documento XML 1.0 ben formato, in base alla definizione di W3C. + + + I dati XML sono un frammento XML ben formato, in base alla definizione di W3C. + + + Specifica le opzioni per l'elaborazione dei DTD.L'enumerazione viene utilizzata dalla classe . + + + Fa in modo che venga ignorato l'elemento DOCTYPE.L'operazione di elaborazione dei DTD non ha luogo. + + + Specifica che quando viene rilevato un DTD, viene generato un oggetto con un messaggio indicante che i DTD non sono consentiti.Questo è il comportamento predefinito. + + + Fornisce un'interfaccia che consente ad una classe di restituire informazioni sulla riga e sulla posizione. + + + Ottiene un valore che indica se la classe può restituire informazioni sulla riga. + true se è possibile specificare la e ; in caso contrario false. + + + Ottiene il numero corrente di riga. + Numero della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Ottiene la posizione corrente di riga. + Posizione della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Fornisce l'accesso in sola lettura a un set di mapping di prefissi e spazi dei nomi. + + + Ottiene una raccolta di mapping definiti di prefissi-spazi dei nomi attualmente inclusi nell'ambito. + + contenente tutti gli spazi dei nomi attualmente inclusi nell'ambito. + Valore di che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene l'URI dello spazio dei nomi mappato al prefisso specificato. + L'URI dello spazio dei nomi mappato al prefisso; null se il prefisso non è mappato all'URI dello spazio dei nomi. + Prefisso del quale si desidera individuare l'URI dello spazio dei nomi. + + + Ottiene il prefisso mappato all'URI dello spazio dei nomi specificato. + Il prefisso mappato all'URI dello spazio dei nomi; null se l'URI dello spazio dei nomi non è mappato al prefisso. + URI dello spazio dei nomi di cui si desidera individuare il prefisso. + + + Specifica se rimuovere le dichiarazioni di spazio dei nomi duplicate nell'oggetto . + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate non verranno rimosse. + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate verranno rimosse.Affinché lo spazio dei nomi duplicato venga rimosso, il prefisso e lo spazio dei nomi devono corrispondere. + + + Implementa una classe a thread singolo. + + + Inizializza una nuova istanza della classe NameTable. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente la stringa da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere della stringa. + Numero di caratteri nella stringa. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable. + Stringa da aggiungere. + + è null. + + + Ottiene la stringa suddivisa in elementi di base che contiene gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da trovare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Ottiene la stringa suddivisa in elementi di base con il valore specificato. + Oggetto della stringa suddivisa in elementi di base o null se la stringa non è stata ancora suddivisa. + Nome da trovare. + + è null. + + + Specifica in che modo gestire le interruzioni di riga. + + + I caratteri della nuova riga diventano entità.Questa impostazione mantiene tutti i caratteri quando l'output viene letto da una classe di normalizzazione. + + + I caratteri della nuova riga restano invariati.L'output è uguale all'input. + + + I caratteri della nuova riga vengono sostituiti in modo che corrispondano al carattere specificato nella proprietà . + + + Specifica lo stato del lettore. + + + È stato chiamato il metodo . + + + È stata raggiunta correttamente la fine del file. + + + Si è verificato un errore che non consente di continuare l'operazione di lettura. + + + Il metodo Read non è stato chiamato. + + + È stato chiamato il metodo Read.È possibile chiamare altri metodi sul lettore. + + + Specifica lo stato della classe . + + + Indica che viene scritto il valore di un attributo. + + + Indica che il metodo è già stato chiamato. + + + Indica che viene scritto il contenuto dell'elemento. + + + Indica che viene scritto il tag di inizio di un elemento. + + + È stata generata un'eccezione che ha lasciato la classe in uno stato non valido.È possibile chiamare il metodo per porre in stato .Qualsiasi altra chiamata al metodo ha come conseguenza un'eccezione . + + + Indica che viene scritto il prologo. + + + Indica che un metodo Write non è ancora stato chiamato. + + + Codifica e decodifica i nomi XML e fornisce metodi per la conversione tra tipi Common Language Runtime e tipi XSD (XML Schema Definition Language).Quando si convertono i tipi di dati, i valori restituiti sono indipendenti dalle impostazioni locali. + + + Decodifica un nome.Questo metodo produce effetti opposti rispetto ai metodi e . + Nome decodificato. + Nome da trasformare. + + + Converte il nome in un nome XML locale valido. + Nome codificato. + Nome da codificare. + + + Converte il nome in un nome XML valido. + Restituisce il nome con gli eventuali caratteri non validi sostituiti da una stringa di escape. + Nome da convertire. + + + Verifica che il nome sia valido secondo le specifiche XML. + Nome codificato. + Nome da codificare. + + + Converte l'oggetto in un oggetto equivalente. + Valore Boolean, ossia true o false. + Stringa da convertire. + + is null. + + does not represent a Boolean value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Byte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Oggetto Char che rappresenta il carattere singolo. + Stringa contenente un singolo carattere da convertire. + The value of the parameter is null. + The parameter contains more than one character. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica se la data deve essere convertita nell'ora locale o mantenuta nel formato UTC (Coordinated Universal Time), se si tratta di una data UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire.Nota   La stringa deve essere conforme a un sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Formato da cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di questo formato. + + is null. + + or is an empty string or is not in the specified format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Matrice di formati dalla quale è possibile convertire .Ogni formato in può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di uno di questi formati. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Decimal della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Double della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Guid della stringa. + Stringa da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente SByte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Single della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte in un oggetto . + Rappresentazione di stringa del valore Boolean, ossia "true" o "false". + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Byte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Char. + Valore da convertire. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica la modalità di gestione del valore . + The value is not valid. + The or value is null. + + + Converte l'oggetto fornito in un oggetto . + Rappresentazione dell'oggetto specificato. + Elemento da convertire. + + + Converte l'oggetto fornito in un oggetto nel formato specificato. + Rappresentazione nel formato specificato dell'oggetto fornito. + Elemento da convertire. + Formato in cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte in un oggetto . + Rappresentazione di stringa di Decimal. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Double. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Guid. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int64. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di SByte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Single. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di TimeSpan. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt64. + Valore da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente TimeSpan della stringa. + Stringa da convertire.Il formato della stringa deve essere conforme alla raccomandazione W3C XML Schema Part 2: Datatypes per la durata. + + is not in correct format to represent a TimeSpan value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifica che il nome sia valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C. + Nome, se è un nome XML valido. + Nome da verificare. + + is not a valid XML name. + + is null or String.Empty. + + + Verifica che il nome sia un NCName valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C.Un NCName è un nome che non può contenere i due punti (:). + Nome, se è un nome NCName valido. + Nome da verificare. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifica che la stringa sia un tipo NMTOKEN valido in base alla raccomandazione W3C XML Schema Part2: Datatypes. + Token del nome, se è un NMTOKEN valido. + Stringa da verificare. + The string is not a valid name token. + + is null. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di tipo stringa sono caratteri dell'ID pubblico validi. + Restituisce la stringa passata se tutti i caratteri nell'argomento sono caratteri dell'ID pubblico validi. + + che contiene l'ID da convalidare. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi. + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi; in caso contrario null. + + da verificare. + + + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + + che contiene i caratteri da verificare. + + + Specifica in che modo deve essere considerato il valore dell'ora nelle conversioni tra una stringa e . + + + Viene considerato come ora locale.Se l'oggetto rappresenta un'ora UTC (Coordinated Universal Time), viene convertito nell'ora locale. + + + Durante la conversione devono essere mantenute le informazioni sul fuso orario. + + + Viene considerato come ora locale se viene convertito in una stringa. + + + Viene considerato come UTC.Se l'oggetto rappresenta un'ora locale, viene convertito in un valore UTC. + + + Restituisce informazioni dettagliate sull'ultima eccezione. + + + Inizializza una nuova istanza della classe XmlException. + + + Consente l'inizializzazione di una nuova istanza della classe XmlException con un messaggio di errore specificato. + Descrizione dell'errore. + + + Inizializza una nuova istanza della classe XmlException. + Descrizione della condizione di errore. + + che ha generato l'eccezione XmlException, se presente.Il valore può essere null. + + + Inizializza una nuova istanza della classe XmlException con l'eccezione interna, il numero di riga, la posizione nella riga e il messaggio specificati. + Descrizione dell'errore. + Eccezione causa dell'eccezione corrente.Il valore può essere null. + Numero di riga che indica dove si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene il numero di riga che indica dove si è verificato l'errore. + Numero di riga che indica dove si è verificato l'errore. + + + Ottiene la posizione di riga in cui si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene un messaggio in cui viene descritta l'eccezione corrente. + Messaggio di errore nel quale viene indicato il motivo dell’eccezione + + + Risolve, aggiunge e rimuove spazi dei nomi in una raccolta e ne consente la gestione dell'ambito. + + + Inizializza una nuova istanza della classe con l'oggetto specificato. + Oggetto da usare. + null is passed to the constructor + + + Aggiunge alla raccolta lo spazio dei nomi specificato. + Prefisso da associare allo spazio dei nomi aggiunto.Usare String.Empty per aggiungere uno spazio dei nomi predefinito.NotaSe si usa l'oggetto per risolvere gli spazi dei nomi in un'espressione XML Path Language (XPath), è necessario specificare un prefisso.Se in un'espressione XPath non è incluso un prefisso, si presuppone che l'URI (Uniform Resource Identifier) dello spazio dei nomi sia lo spazio dei nomi vuoto.Per altre informazioni sulle espressioni XPath e su , fare riferimento ai metodi e . + Spazio dei nomi da aggiungere. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ottiene l'URI dello spazio dei nomi per lo spazio dei nomi predefinito. + Restituisce l'URI dello spazio dei nomi per lo spazio dei nomi predefinito o String.Empty se non è presente uno spazio dei nomi predefinito. + + + Restituisce un enumeratore usato per scorrere gli spazi dei nomi nell'oggetto . + Oggetto contenente i prefissi archiviati da . + + + Ottiene una raccolta di nomi di spazi dei nomi con chiave in base al prefisso, che può essere usata per enumerare gli spazi dei nomi attualmente nell'ambito. + Raccolta delle coppie di spazio dei nomi e prefisso attualmente nell'ambito. + Valore di enumerazione che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene un valore che indica se il prefisso fornito dispone di uno spazio dei nomi definito per l'ambito inserito attualmente. + true se è presente uno spazio dei nomi definito; in caso contrario, false. + Prefisso dello spazio dei nomi da trovare. + + + Ottiene l'URI dello spazio dei nomi per il prefisso specificato. + Restituisce l'URI dello spazio dei nomi per o null se non è disponibile uno spazio dei nomi mappato.La stringa restituita è atomizzata.Per altre informazioni sulle stringhe atomizzate, vedere la classe . + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per trovare la corrispondenza con lo spazio dei nomi predefinito, passare String.Empty. + + + Trova il prefisso dichiarato per l'URI dello spazio dei nomi specificato. + Prefisso corrispondente.Se non è presente un prefisso mappato, il metodo restituisce String.Empty. Se viene specificato un valore Null, viene restituito null. + Spazio dei nomi da risolvere per il prefisso. + + + Ottiene l'oggetto associato a questo oggetto. + Oggetto usato da questo oggetto. + + + Estrae un ambito dello spazio dei nomi dallo stack. + true se sono rimasti ambiti dello spazio dei nomi nello stack; false se non sono più disponibili spazi dei nomi da prelevare. + + + Inserisce un ambito dello spazio dei nomi nello stack. + + + Rimuove lo spazio dei nomi specificato per il prefisso specificato. + Prefisso per lo spazio dei nomi + Spazio dei nomi da rimuovere per il prefisso specificato.Lo spazio dei nomi rimosso deriva dall'ambito dello spazio dei nomi corrente.Gli spazi dei nomi non compresi nell'ambito corrente vengono ignorati. + The value of or is null. + + + Definisce l'ambito dello spazio dei nomi. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente,compreso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente, escluso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti localmente nel nodo corrente. + + + Tabella degli oggetti stringa suddivisi in elementi di base. + + + Inizializza una nuova istanza della classe . + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente.Se la lunghezza equivale a zero, verrà restituito String.Empty. + Matrice di caratteri contenente il nome da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente. + Nome da aggiungere. + + è null. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da cercare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente lo stesso valore della stringa specificata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa. + Nome da cercare. + + è null. + + + Specifica il tipo di nodo. + + + Attributo (ad esempio, id='123' ). + + + Sezione CDATA (ad esempio, <![CDATA[my escaped text]]>). + + + Commento (ad esempio, <!-- my comment -->). + + + Oggetto documento che, come radice della struttura ad albero del documento, fornisce accesso all'intero documento XML. + + + Frammento di documento. + + + Dichiarazione del tipo di documento, indicata dal tag seguente (ad esempio, <!DOCTYPE...>). + + + Elemento (ad esempio, <item>). + + + Tag di fine dell'elemento (ad esempio, </item>). + + + Viene restituito quando XmlReader completa l'analisi del testo sostitutivo dell'entità in seguito a una chiamata al metodo . + + + Dichiarazione di entità (ad esempio, <!ENTITY...>). + + + Riferimento a un'entità (ad esempio, &num;). + + + Viene restituito dall'oggetto se non è stato chiamato un metodo Read. + + + Notazione nella dichiarazione del tipo del documento (ad esempio <!NOTATION...>). + + + Istruzione di elaborazione (ad esempio, <?pi test?>). + + + Spazio vuoto all'interno di markup in un modello a contenuto misto oppure spazio vuoto all'interno dell'ambito xml:space="preserve". + + + Contenuto di un nodo. + + + Spazio vuoto all'interno di markup. + + + Dichiarazione XML (ad esempio, <?xml version='1.0'?>). + + + Fornisce tutte le informazioni sul contesto richieste dalla classe per analizzare un frammento XML. + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.Il sottoinsieme DTD viene utilizzato per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.La definizione DTD viene utilizzata per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con i valori di , , xml:lang e xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con la codifica, l'oggetto , l'oggetto , l'xml:lang e l'xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Ottiene o imposta l'URI di base. + URI di base da utilizzare per risolvere il file DTD. + + + Ottiene o imposta il nome della dichiarazione del tipo di documento. + Nome della dichiarazione del tipo di documento. + + + Ottiene o imposta il tipo di codifica. + Oggetto che indica il tipo di codifica. + + + Ottiene o imposta il sottoinsieme DTD interno. + Sottoinsieme DTD interno.Questa proprietà restituisce ad esempio tutte le informazioni racchiuse tra parentesi quadre <!DOCTYPE doc [...]>. + + + Ottiene o imposta . + Campo XmlNamespaceManager. + + + Ottiene l' utilizzata per suddividere le stringhe in elementi di base.Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Campo XmlNameTable. + + + Ottiene o imposta l'identificatore pubblico. + Identificatore pubblico. + + + Ottiene o imposta l'identificatore di sistema. + Identificatore di sistema. + + + Ottiene o imposta l'ambito xml:lang corrente. + Ambito xml:lang corrente.Se nell'ambito non è disponibile alcun valore xml:lang, viene restituito String.Empty. + + + Ottiene o imposta l'ambito xml:space corrente. + Valore di che indica l'ambito xml:space. + + + Rappresenta un nome XML completo. + + + Inizializza una nuova istanza della classe . + + + Consente l'inizializzazione di una nuova istanza della classe con il nome specificato. + Nome locale da utilizzare come nome dell'oggetto . + + + Inizializza una nuova istanza della classe con il nome e lo spazio dei nomi specificati. + Nome locale da utilizzare come nome dell'oggetto . + Spazio dei nomi per l'oggetto . + + + Fornisce un oggetto vuoto. + + + Determina se l'oggetto specificato equivale all'oggetto corrente. + true se i due oggetti rappresentano lo stesso oggetto di istanza; in caso contrario, false. + Oggetto da confrontare. + + + Restituisce il codice hash per l'oggetto . + Codice hash per l'oggetto. + + + Ottiene un valore che indica se l'oggetto è vuoto. + true se il nome e lo spazio dei nomi sono stringhe vuote; in caso contrario, false. + + + Ottiene una rappresentazione in forma di stringa del nome completo dell'oggetto . + Rappresentazione in forma di stringa del nome completo, oppure String.Empty se un nome non è definito per l'oggetto. + + + Ottiene una rappresentazione in forma di stringa dello spazio dei nomi dell'oggetto . + Rappresentazione in forma di stringa dello spazio dei nomi, oppure String.Empty se uno spazio dei nomi non è definito per l'oggetto. + + + Confronta due oggetti . + true se i due oggetti hanno lo stesso nome e gli stessi valori di spazio dei nomi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Confronta due oggetti . + true se il nome e i valori di spazio dei nomi dei due oggetti sono diversi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + Nome dell'oggetto. + Spazio dei nomi dell'oggetto. + + + Rappresenta un lettore che fornisce accesso veloce, non in cache e di tipo forward-only ai dati XML.Per esaminare il codice sorgente .NET Framework per questo tipo, vedere Origine riferimento. + + + Inizializza una nuova istanza della classe XmlReader. + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il numero di attributi sul nodo corrente. + Numero di attributi sul nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI di base del nodo corrente. + URI di base del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa metodi di lettura del contenuto binario. + true se i metodi di lettura del contenuto binario vengono implementati; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa il metodo . + true se implementa il metodo ; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se il lettore può analizzare e risolvere le entità. + true se il lettore può analizzare e risolvere le entità; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Crea una nuova istanza di con il flusso specificato e le impostazioni predefinite. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + + + Crea una nuova istanza di con il flusso e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il flusso, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML. L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo specificato. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni del nuovo oggetto .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + Le proprietà e contengono entrambe valori.È possibile impostare e utilizzare una sola delle proprietà NameTable. + + + Crea una nuova istanza di con l'URI specificato. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.La classe viene usata per convertire il percorso in una rappresentazione canonica dei dati. + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + Il file identificato dall'URI non esiste. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con l'URI e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.L'oggetto nell'oggetto viene usato per eseguire la conversione del percorso a una rappresentazione canonica dei dati.Se è null, viene usato un nuovo oggetto . + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + Il file specificato dall'URI non è stato trovato. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con il lettore XML e le impostazioni specificate. + Oggetto di cui è stato eseguito il wrapping intorno all'oggetto specificato. + Oggetto da usare come lettore XML sottostante. + Impostazioni per la nuova istanza di .Il livello di conformità dell'oggetto deve corrispondere a quello del lettore sottostante o deve essere impostato su . + Il valore è null. + Se l'oggetto specifica un livello di conformità che non corrisponde al livello di conformità del lettore sottostante.-oppure-Lo stato dell'oggetto sottostante è o . + + + Quando ne viene eseguito l'override in una classe derivata, ottiene la profondità del nodo corrente nel documento XML. + Profondità del nodo corrente nel documento XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il lettore è posizionato alla fine del flusso. + true se il lettore è posizionato alla fine del flusso; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato.Questo metodo non determina lo spostamento del lettore. + Indice dell'attributo.L'indice è in base zero.Il primo attributo ha indice 0. + + non è compreso nell'intervallo.Richiesto valore non negativo e minore della dimensione dell'insieme di attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null. + Nome completo dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null.Questo metodo non determina lo spostamento del lettore. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene in modo asincrono il valore del nodo corrente. + Valore del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Ottiene un valore che indica se il nodo corrente dispone di attributi. + true se il nodo corrente contiene attributi; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente può avere . + true se il nodo sul quale il lettore è attualmente posizionato può contenere Value; in caso contrario, false.Se false, il valore del nodo è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un attributo generato dal valore predefinito configurato nella definizione DTD o nello schema. + true se il nodo corrente è un attributo il cui valore è stato generato in base al valore predefinito configurato nella definizione DTD o nello schema; false se il valore dell'attributo è stato impostato in modo esplicito. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un elemento vuoto, ad esempio <MyElement/>. + true se il nodo corrente rappresenta un elemento ( uguale a XmlNodeType.Element) che termina con />; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce un valore che indica se l'argomento della stringa è un nome XML valido. + true se il nome è valido; in caso contrario, false. + Nome da convalidare. + Il valore è null. + + + Restituisce un valore che indica se l'argomento della stringa è un token di un nome XML valido o meno. + true se è un token del nome valido; in caso contrario, false. + Token del nome da convalidare. + Il valore è null. + + + Chiama e verifica se il nodo di contenuto corrente è un tag di inizio o un tag di elemento vuoto. + true se trova un tag di inizio o un tag di elemento vuoto; false se viene trovato un tipo di nodo diverso da XmlNodeType.Element. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo corrente è un tag di inizio o un tag di elemento vuoto e se la proprietà dell'elemento trovato corrisponde all'argomento specificato. + true se il nodo risultante è un elemento e la proprietà Name corrisponde alla stringa specificata.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se la proprietà Name dell'elemento non corrisponde alla stringa specificata. + Stringa confrontata con la proprietà Name dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo di contenuto è un tag di inizio o un tag di elemento vuoto e se le proprietà e dell'elemento trovato corrispondono alle stringhe specificate. + true, se il nodo risultante è un elemento.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se le proprietà LocalName e NamespaceURI dell'elemento non corrispondono alle stringhe specificate. + Stringa da confrontare con la proprietà LocalName dell'elemento trovato. + Stringa da confrontare con la proprietà NamespaceURI dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome locale del nodo corrente. + Nome del nodo corrente senza il prefisso.Ad esempio, LocalName è book per l'elemento <bk:book>.Per i tipi di nodo privi di nome, quali Text, Comment e così via, questa proprietà restituisce String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, risolve il prefisso di uno spazio dei nomi nell'ambito dell'elemento corrente. + URI dello spazio dei nomi a cui viene mappato il prefisso oppure null se non viene trovato alcun prefisso corrispondente. + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per ottenere lo spazio dei nomi predefinito corrispondente, passare una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con l'indice specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro ha un valore negativo. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con la proprietà specificata. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con le proprietà e specificate. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Controlla se il nodo corrente è un nodo di contenuto (testo diverso da spazi vuoti, CDATA, Element, EndElement, EntityReference o EndEntity).Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file.Ignora i nodi del tipo seguente: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica in modo asincrono se il nodo corrente è un nodo di contenuto.Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, passa all'elemento che contiene il nodo attributo corrente. + true se il lettore è posizionato in corrispondenza di un attributo, ovvero il lettore si sposta in corrispondenza dell'elemento che possiede l'attributo; false se il lettore non è posizionato in corrispondenza di un attributo, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa al primo attributo. + true se esiste un attributo, ovvero il lettore si sposta in corrispondenza del primo attributo; in caso contrario, false, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo successivo. + true se esiste un attributo successivo; false se non esistono altri attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome completo del nodo corrente. + Nome completo del nodo corrente.Ad esempio, Name è bk:book per l'elemento <bk:book>.Il nome restituito dipende dalla proprietà del nodo.I seguenti tipi di nodo restituiscono i valori inclusi nell'elenco.Tutti gli altri tipi di nodo restituiscono una stringa vuota.Tipo di nodo Nome AttributeNome dell'attributo. DocumentTypeNome del tipo di documento. ElementNome del tag. EntityReferenceNome dell'entità a cui si fa riferimento. ProcessingInstructionDestinazione dell'istruzione di elaborazione. XmlDeclarationStringa letterale xml. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI dello spazio dei nomi, definito nella specifica W3C Namespace, del nodo su cui è posizionato il lettore. + URI dello spazio dei nomi del nodo corrente; in caso contrario, una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'oggetto associato a questa implementazione. + Oggetto XmlNameTable che consente di ottenere la versione atomizzata di una stringa all'interno del nodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il tipo del nodo corrente. + Uno dei valori di enumerazione che specifica il tipo del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il prefisso dello spazio dei nomi associato al nodo corrente. + Prefisso dello spazio dei nomi associato al nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, visualizza il nodo successivo nel flusso. + true se il nodo successivo è stato letto correttamente; in caso contrario, false. + Si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il nodo successivo del flusso. + true se è stata completata la lettura del nodo successivo; false se non esistono altri nodi da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, analizza il valore dell'attributo incluso in uno o più nodi Text, EntityReference o EndEntity. + true se sono presenti nodi da restituire.false se il lettore non è posizionato in corrispondenza del nodo attributo quando viene effettuata la chiamata iniziale oppure se è stato letto il valore di tutti gli attributi.Un attributo vuoto, quale misc="", restituisce true con un singolo nodo il cui valore è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione.Può essere usato ad esempio per la conversione di un oggetto in xs:string.Il valore può essere null. + Il contenuto non presenta il formato corretto per il tipo di destinazione. + Il tentativo di cast non è valido. + Il valore è null. + Il nodo corrente non è un tipo di nodo supportato.Per ulteriori informazioni vedere la tabella riportata di seguito. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce byte binari decodificati Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce byte binari con decodifica Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce i byte binari decodificati BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce dati binari con decodifica BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come Boolean. + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo nella posizione corrente come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione doppia. + Contenuto di testo come numero a virgola mobile a precisione doppia. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 32 bit. + Contenuto di testo come valore intero con segno a 32 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 64 bit. + Contenuto di testo come valore intero con segno a 64 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione doppia. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi corrispondano a quelli dell'elemento corrente, quindi legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica che il nodo di contenuto corrente sia un tag di fine e sposta il lettore al nodo successivo. + Il nodo corrente non è un tag di fine oppure è stata rilevata una stringa di codice XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, legge tutto il contenuto come stringa, incluso il markup. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota.Se il nodo corrente non è né un elemento né un attributo, verrà restituita una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono tutto il contenuto, incluso il markup, come stringa. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, legge il contenuto, incluso il markup, che rappresenta questo nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto, incluso il markup, che rappresenta il nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica se il nodo corrente è un elemento e sposta il lettore al nodo successivo. + È stata rilevata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con la proprietà specificata e passa il lettore al nodo successivo. + Nome completo dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input. -oppure- Il dell'elemento non corrisponde al specificato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con le proprietà e specificate e passa il lettore al nodo successivo. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input.-oppure-Le proprietà e dell'elemento trovato non corrispondono agli argomenti specificati. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del lettore. + Uno dei valori di enumerazione che specifica lo stato del lettore. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce una nuova istanza di XmlReader che può essere usata per leggere il nodo corrente e tutti i relativi discendenti. + Nuova istanza del lettore XML impostata su .La chiamata al metodo posiziona il nuovo lettore sul nodo che era il nodo corrente prima della chiamata al metodo . + Il lettore XML non è posizionato su un elemento quando viene chiamato questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Sposta l'oggetto al successivo elemento discendente con il nome completo specificato. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome completo dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto al successivo elemento discendente con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome locale dell'elemento a cui spostarsi. + URI dello spazio dei nomi dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge fino a trovare un elemento con il nome completo specificato. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome completo dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Legge fino a trovare un elemento con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome completo specificato. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome completo dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome locale dell'elemento di pari livello a cui spostarsi. + URI dello spazio dei nomi dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Il nodo corrente non ha un valore ( è false). + Il valore è null. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Il formato dei dati XML non è corretto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, risolve il riferimento a entità per i nodi EntityReference. + Il lettore non è posizionato in corrispondenza di un nodo EntityReference; questa implementazione del lettore non consente di risolvere le entità, ovvero la proprietà restituisce il valore false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del lettore.Se il lettore non è stato creato con il metodo , la proprietà restituisce null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora gli elementi figlio del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora in modo asincrono gli elementi figlio del nodo corrente. + Nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore del testo del nodo corrente. + Il valore restituito dipende dalla proprietà del nodo.La tabella seguente elenca i tipi di nodo che hanno un valore da restituire.Tutti gli altri tipi di nodo restituiscono String.Empty.Tipo di nodo Valore AttributeValore dell'attributo. CDATAContenuto della sezione CDATA. CommentContenuto del commento. DocumentTypeSottoinsieme interno. ProcessingInstructionIntero contenuto, esclusa la destinazione. SignificantWhitespaceSpazio vuoto tra markup in un modello con contenuto misto. TextContenuto del nodo di testo. WhitespaceSpazio vuoto tra markup. XmlDeclarationContenuto della dichiarazione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene il tipo CLR (Common Language Runtime) per il nodo corrente. + Tipo CLR che corrisponde al valore tipizzato del nodo.Il valore predefinito è System.String. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:space corrente. + Uno dei valori di .Se non esiste alcun ambito xml:space, alla proprietà viene applicata l'impostazione predefinita XmlSpace.None. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare metodi asincroni in una determinata istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se eseguire il controllo dei caratteri. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true.NotaSe l'oggetto elabora dati di testo, controlla sempre che i nomi XML e il contenuto del testo siano validi, indipendentemente dall'impostazione della proprietà.Se si imposta la proprietà su false, il controllo dei caratteri per i riferimenti a entità carattere viene disattivato. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se il flusso o la classe sottostante devono essere chiusi alla chiusura del lettore. + true per chiudere il flusso o l'oggetto sottostante alla chiusura del lettore; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità dell'oggetto . + Uno dei valori di enumerazione che specifica il livello di conformità che verrà applicato dal lettore XML.Il valore predefinito è . + + + Ottiene o imposta un valore che determina l'elaborazione di DTD. + Uno dei valori di enumerazione che determina l'elaborazione di DTD.Il valore predefinito è . + + + Ottiene o imposta un valore che indica se ignorare i commenti. + true per ignorare i commenti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare le istruzioni di elaborazione. + true per ignorare le istruzioni di elaborazione; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare gli spazi vuoti non significativi. + true per ignorare gli spazi vuoti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta l'offset del numero di riga dell'oggetto . + Offset del numero di riga.Il valore predefinito è 0. + + + Ottiene o imposta l'offset della posizione della riga dell'oggetto . + Offset della posizione della riga.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento generato dall'espansione delle entità. + Numero massimo consentito per i caratteri generati dalle entità espanse.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento XML.Un valore zero (0) indica che non è previsto alcun limite alla dimensione del documento XML.Un valore diverso da zero specifica la dimensione massima in caratteri. + Numero massimo di caratteri consentito in un documento XML.Il valore predefinito è 0. + + + Ottiene o imposta l'oggetto usato per il confronto delle stringhe atomizzate. + Classe che archivia tutte le stringhe atomizzate usate da tutte le istanze di create tramite l'oggetto .Il valore predefinito è null.Se questo valore è null, l'istanza di creata userà una nuova classe vuota. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Specifica l'ambito xml:space corrente. + + + L'ambito xml:space è uguale a default. + + + Nessun ambito xml:space. + + + L'ambito xml:space è uguale a preserve. + + + Rappresenta un writer che fornisce un modo veloce, non in cache e di tipo forward-only per generare flussi o i file contenenti dati XML. + + + Inizializza una nuova istanza della classe . + + + Crea una nuova istanza di con il flusso specificato. + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + The value is null. + + + Crea una nuova istanza di con i flusso e l'oggetto . + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di con l'oggetto specificato. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + The value is null. + + + Crea una nuova istanza di con gli oggetti e specificati. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scarica il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scarica in modo asincrono il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + Attività che rappresenta l'operazione asincrona Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, restituisce il prefisso più vicino definito nell'ambito dello spazio dei nomi corrente per l'URI dello spazio dei nomi. + Prefisso corrispondente o null se nell'ambito corrente non viene trovato nessun URI dello spazio dei nomi corrispondente. + URI dello spazio dei nomi di cui trovare il prefisso. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del writer.Se il writer non è stato creato usando il metodo , questa proprietà restituisce null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive tutti gli attributi che si trovano nella posizione corrente in . + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono tutti gli attributi che si trovano nella posizione corrente in . + Attività che rappresenta l'operazione asincrona WriteAttributes. + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il nome locale e il valore specificati. + Nome locale dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un attributo con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi da associare all'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteAttributeString. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, codifica i byte binari specificati come valori Base64 e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come valori Base64 e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBase64. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata,codifica i byte binari specificati come BinHex e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come BinHex e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBinHex. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un blocco <![CDATA[...]]> che contiene il testo specificato. + Testo da inserire all'interno del blocco CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un blocco <![CDATA[...]]> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteCData. + Testo da inserire all'interno del blocco CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, forza la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Carattere Unicode per cui generare l'entità carattere. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Forza in modo asincrono la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Attività che rappresenta l'operazione asincrona WriteCharEntity. + Carattere Unicode per cui generare l'entità carattere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il testo in un buffer alla volta. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il testo in un buffer alla volta. + Attività che rappresenta l'operazione asincrona WriteChars. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un commento <!--...--> che contiene il testo specificato. + Testo da inserire nel commento. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un commento <!--...--> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteComment. + Testo da inserire nel commento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Attività che rappresenta l'operazione asincrona WriteDocType. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un elemento con il nome locale e il valore specificati. + Nome locale dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteElementString. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude la chiamata a precedente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono la chiamata a precedente. + Attività che rappresenta l'operazione asincrona WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando se ne esegue l'override in una classe derivata, chiude qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + Attività che rappresenta l'operazione asincrona WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un riferimento a entità come &name;. + Nome del riferimento a entità. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un riferimento a entità come &name;. + Attività che rappresenta l'operazione asincrona WriteEntityRef. + Nome del riferimento a entità. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteName. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un oggetto NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteNmToken. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, copia tutto il contenuto del lettore nel writer e sposta il lettore all'inizio del successivo elemento di pari livello. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia in modo asincrono tutto il contenuto del lettore nel writer e sposta il lettore sul successivo elemento di pari livello. + Attività che rappresenta l'operazione asincrona WriteNode. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Attività che rappresenta l'operazione asincrona WriteProcessingInstruction. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Attività che rappresenta l'operazione asincrona WriteQualifiedName. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a un buffer di caratteri. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a una stringa. + Stringa contenente il testo da scrivere. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a un buffer di caratteri. + Attività che rappresenta l'operazione asincrona WriteRaw. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a una stringa. + Attività che rappresenta l'operazione asincrona WriteRaw. + Stringa contenente il testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive l'inizio di un attributo con il nome locale specificato. + Nome locale dell'attributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive l'inizio di un attributo con il nome locale e l'URI dello spazio dei nomi specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Attività che rappresenta l'operazione asincrona WriteStartAttribute. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0" e all'attributo standalone. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0". + Attività che rappresenta l'operazione asincrona WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0" e l'attributo standalone. + Attività che rappresenta l'operazione asincrona WriteStartDocument. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un tag di inizio con il nome locale specificato. + Nome locale dell'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi indicato. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento.Se questo spazio dei nomi si trova già all'interno dell'ambito ed è associato a un prefisso, il writer scriverà automaticamente anche tale prefisso. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Attività che rappresenta l'operazione asincrona WriteStartElement. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del writer. + Uno dei valori di . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il contenuto di testo specificato. + Testo da scrivere. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il contenuto di testo specificato. + Attività che rappresenta l'operazione asincrona WriteString. + Testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, genera e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera in modo asincrono e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Attività che rappresenta l'operazione asincrona WriteSurrogateCharEntity. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive il valore dell'oggetto. + Valore dell'oggetto da scrivere.Nota   In .NET Framework 3.5 questo metodo accetta come parametro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un numero a virgola mobile e precisione singola. + Numero a virgola mobile e precisione singola da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive lo spazio specificato. + Stringa di caratteri spazio vuoto. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono lo spazio vuoto specificato. + Attività che rappresenta l'operazione asincrona WriteWhitespace. + Stringa di caratteri spazio vuoto. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un oggetto che rappresenta l'ambito xml:space corrente. + Oggetto XmlSpace che rappresenta l'ambito xml:space corrente.Valore Significato NoneValore predefinito se non esistono ambiti xml:space.DefaultL'ambito corrente è xml:space="default".PreserveL'ambito corrente è xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare i metodi asincroni in una specifica istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se il writer XML deve verificare la conformità di tutti i caratteri nel documento alla sezione "2.2 Characters" della specifica W3C XML 1.0 Recommendation. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se l'oggetto deve anche chiudere il flusso sottostante o quando viene chiamato il metodo . + true per chiudere anche il flusso sottostante o ; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità per cui il writer XML controlla l'output XML. + Uno dei valori di enumerazione che specifica il livello di conformità (documento, frammento o rilevamento automatico).Il valore predefinito è . + + + Ottiene o imposta il tipo di codifica testo da usare. + Codifica testo da usare.Il valore predefinito è Encoding.UTF8. + + + Ottiene o imposta un valore che indica se impostare il rientro di elementi. + true per scrivere singoli elementi su nuove righe e applicare il rientro; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta la stringa di caratteri da usare per il rientro.Questa impostazione viene usata quando la proprietà è impostata su true. + Stringa di caratteri da usare per il rientro.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è due spazi. + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se deve rimuovere le dichiarazioni dello spazio dei nomi duplicati quando viene scritto contenuto XML.Il comportamento predefinito del writer è restituire tutte le dichiarazioni dello spazio dei nomi presenti nel resolver dello spazio dei nomi del writer. + Enumerazione usata per specificare se rimuovere le dichiarazioni dello spazio dei nomi duplicate in . + + + Ottiene o imposta la stringa di caratteri da usare per le interruzioni di riga. + Stringa di caratteri da usare per le interruzioni di riga.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è \r\n (ritorno a capo, nuova riga). + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se le interruzioni di riga devono essere normalizzate nell'output. + Uno dei valori di .Il valore predefinito è . + + + Ottiene o imposta un valore che indica se scrivere gli attributi su una nuova riga. + true per scrivere gli attributi su una nuova riga; in caso contrario, false.Il valore predefinito è false.NotaQuesta impostazione non ha effetto se il valore della proprietà è false.Se il valore di è impostato su true, ogni attributo viene preceduto da una nuova riga e da un livello aggiuntivo di rientro. + + + Ottiene o imposta un valore che indica se omettere una dichiarazione XML. + true per omettere la dichiarazione XML; in caso contrario, false.Il valore predefinito false significa che viene scritta una dichiarazione XML. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Ottiene o imposta un valore che indica se aggiungerà tag di chiusura a tutti i tag di elemento senza chiusura quando viene chiamato metodo . + true se tutti i tag di elemento senza chiusura verranno chiusi; in caso contrario, false.Il valore predefinito è true. + + + Rappresentazione in memoria di un XML Schema, come descritto nelle specifiche di World Wide Web Consortium (W3C) XML Schema Part 1: Structures e XML Schema Part 2: Datatypes. + + + Indica se gli attributi o gli elementi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + La forma dell'attributo e dell'elemento non è specificata nello schema. + + + Gli elementi e gli attributi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + Non occorre che gli attributi e gli elementi siano qualificati con un prefisso di uno spazio dei nomi. + + + Fornisce una formattazione personalizzata per la serializzazione e la deserializzazione XML. + + + Il metodo è riservato e non deve essere utilizzato.Quando si implementa l'interfaccia IXmlSerializable, è necessario restituire null (Nothing in Visual Basic) da questo metodo. Se invece è richiesta la specifica di uno schema personalizzato, applicare alla classe. + + che descrive la rappresentazione XML dell'oggetto generato dal metodo e utilizzato dal metodo . + + + Genera un oggetto dalla relativa rappresentazione XML. + Flusso di da cui viene deserializzato l'oggetto. + + + Converte un oggetto nella relativa rappresentazione XML. + Flusso di nel quale viene serializzato l'oggetto. + + + Quando viene applicata a un tipo, archivia il nome di un metodo statico del tipo che restituisce uno schema XML e una classe (o per i tipi anonimi) che controlla la serializzazione del tipo. + + + Inizializza una nuova istanza della classe utilizzando il nome del metodo statico che fornisce lo schema XML del tipo. + Nome del metodo statico che deve essere implementato. + + + Ottiene o imposta un valore che determina se la classe di destinazione è un carattere jolly o lo schema della classe contiene solo un elemento xs:any. + true se la classe è un carattere jolly o se lo schema contiene solo l'elemento xs:any; in caso contrario, false. + + + Ottiene il nome del metodo statico che fornisce lo schema XML del tipo e il nome del relativo tipo di dati XML Schema. + Nome del metodo che viene richiamato dall'infrastruttura XML per restituire uno schema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..4a6e035 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml @@ -0,0 +1,2897 @@ + + + + System.Xml.ReaderWriter + + + + + オブジェクトおよび オブジェクトで実行する、入力チェックまたは出力チェックの量を指定します。 + + + + オブジェクトまたは オブジェクトは、ドキュメント レベルのチェックまたはフラグメント レベルのチェックを実行する必要があるかどうかを自動的に検出し、適切なチェックを実行します。別の オブジェクトまたは オブジェクトをラップしている場合、外側のオブジェクトは追加の準拠のチェックを実行しません。準拠のチェックは、基になるオブジェクトだけで実行されます。準拠レベルの決定方法の詳細については、 プロパティと プロパティを参照してください。 + + + XML データは、W3C によって定義された整形式の XML 1.0 ドキュメント のルールに準拠します。 + + + XML データは、W3C によって定義された整形式の XML フラグメントです。 + + + DTD を処理するためのオプションを指定します。 列挙体は クラスによって使用されます。 + + + DOCTYPE 要素は無視されます。DTD 処理は発生しません。 + + + DTD を検出したときに、DTD が禁止されていることを示すメッセージと共に をスローします。これが既定の動作です。 + + + クラスが行情報および位置情報を返せるようにするインターフェイスを提供します。 + + + クラスが行情報を返すことができるかどうかを示す値を取得します。 + + および を提供できる場合は true。それ以外の場合は false。 + + + 現在の行番号を取得します。 + 現在の行番号。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + 現在の行の位置を取得します。 + 現在の行の位置。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + プレフィックスと名前空間の一連の割り当てに対する読み取り専用アクセスを提供します。 + + + 現在スコープ内にあるプレフィックスと名前空間の間に定義された割り当てのコレクションを取得します。 + 現在のスコープ内にある名前空間が格納された + 返される名前空間ノードの種類を指定する 値。 + + + 指定したプレフィックスに割り当てられた名前空間 URI を取得します。 + プレフィックスに割り当てられている名前空間 URI。このプレフィックスに名前空間 URI が割り当てられていない場合は null。 + 検索対象の名前空間 URI を持つプレフィックス。 + + + 指定した名前空間 URI に割り当てられたプレフィックスを取得します。 + 名前空間 URI に割り当てられているプレフィックス。この名前空間 URI にプレフィックスが割り当てられていない場合は null。 + 検索対象のプレフィックスを持つ名前空間 URI。 + + + + で重複する名前空間宣言を削除するかどうかを指定します。 + + + 重複する名前空間宣言が削除されないように指定します。 + + + 重複する名前空間宣言を削除するように指定します。重複する名前空間を削除するには、プレフィックスと名前空間が一致している必要があります。 + + + シングルスレッド を実装します。 + + + NameTable クラスの新しいインスタンスを初期化します。 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。または NameTable に既に存在している場合は既存の文字列。 が 0 の場合は、String.Empty が返されます。 + 追加する文字列を格納している文字配列。 + 文字列の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 文字列の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。NameTable に既に存在している場合は既存の文字列。 + 追加する文字列。 + + は null なので、 + + + 指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した値を持つ最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列オブジェクト。または文字列がまだ最小単位に分割されていない場合は null。 + 検索対象の名前。 + + は null なので、 + + + 改行の処理方法を指定します。 + + + 改行文字をエンティティ化します。この設定では、正規化 で出力を読み取るときにすべての文字が保持されます。 + + + 改行文字を変更しません。出力は入力と同じになります。 + + + + プロパティに指定されている文字と一致するように、改行文字を置き換えます。 + + + リーダーの状態を指定します。 + + + + メソッドが呼び出されています。 + + + ファイルの末尾に正常に到達しています。 + + + 読み取り操作を継続できないようにするエラーが発生しました。 + + + Read メソッドが呼び出されていません。 + + + Read メソッドが呼び出されています。リーダーで追加のメソッドが呼び出される場合があります。 + + + + の状態を指定します。 + + + 属性値が書き込まれていることを示します。 + + + + メソッドが呼び出されていることを示します。 + + + 要素の内容が書き込まれていることを示します。 + + + 要素開始タグが書き込まれていることを示します。 + + + 例外がスローされ、 が無効な状態になっています。 メソッドを呼び出すと、 状態にできます。それ以外の メソッドを呼び出した場合、 が発生します。 + + + プロローグが書き込まれていることを示します。 + + + Write メソッドがまだ呼び出されていないことを示します。 + + + XML 名をエンコードおよびデコードし、共通言語ランタイム型と XML スキーマ定義言語 (XSD) 型との間で変換を実行するメソッドを提供します。データ型を変換する場合、返される値はロケールには依存しません。 + + + 名前をデコードします。このメソッドは、 メソッドおよび メソッドの変換を元に戻します。 + デコードされた名前。 + 変換対象の名前。 + + + 名前を有効な XML ローカル名に変換します。 + エンコードされた名前。 + エンコードする名前。 + + + 名前を有効な XML 名に変換します。 + 無効な文字をエスケープ文字列で置換した名前を返します。 + 変換する対象の名前。 + + + XML 仕様に従って有効な名前であることを検証します。 + エンコードされた名前。 + エンコードする名前。 + + + + を等価の に変換します。 + Boolean 値。つまり true または false。 + 変換する文字列。 + + is null. + + does not represent a Boolean value. + + + + を等価の に変換します。 + 文字列と等価の Byte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 単一の文字を表す Char。 + 変換する単一の文字を含んでいる文字列。 + The value of the parameter is null. + The parameter contains more than one character. + + + 指定された を使用して、 に変換します + + と等価の + 変換する 値。 + 世界協定時刻 (UTC) 日付を使用している場合に、日付を現地時間に変換するか、または UTC のままにするかを指定する 値の 1 つ。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。メモ   文字列は、W3C 勧告の XML dateTime 型のサブセットに準拠している必要があります。詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + 変換前の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 はこの形式に対して妥当性が検査されます。 + + is null. + + or is an empty string or is not in the specified format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + + に変換可能な形式の配列。 の各形式には、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 は、これらの形式のいずれかに対して妥当性が検査されます。 + + + + を等価の に変換します。 + 文字列と等価の Decimal。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Double。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Guid。 + 変換する文字列。 + + + + を等価の に変換します。 + 文字列と等価の Int16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の SByte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Single。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + に変換します。 + Boolean の文字列形式。つまり "true" または "false"。 + 変換する値。 + + + + に変換します。 + Byte の文字列形式。 + 変換する値。 + + + + に変換します。 + Char の文字列形式。 + 変換する値。 + + + 指定された を使用して、 に変換します。 + + と等価の + 変換する 値。 + + 値を処理する方法を指定する 値の 1 つ。 + The value is not valid. + The or value is null. + + + 指定した に変換します。 + 指定した 表現。 + 変換される 。 + + + 指定した を指定した形式の に変換します。 + 指定した の指定した形式での 表現。 + 変換される 。 + 変換後の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 + + + + に変換します。 + Decimal の文字列形式。 + 変換する値。 + + + + に変換します。 + Double の文字列形式。 + 変換する値。 + + + + に変換します。 + Guid の文字列形式。 + 変換する値。 + + + + に変換します。 + Int16 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int32 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int64 の文字列形式。 + 変換する値。 + + + + に変換します。 + SByte の文字列形式。 + 変換する値。 + + + + に変換します。 + Single の文字列形式。 + 変換する値。 + + + + に変換します。 + TimeSpan の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt16 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt32 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt64 の文字列形式。 + 変換する値。 + + + + を等価の に変換します。 + 文字列と等価の TimeSpan。 + 変換する文字列。文字列の形式は、W3C『XML Schema Part 2: Datatypes』の期間に関する勧告に準拠している必要があります。 + + is not in correct format to represent a TimeSpan value. + + + + を等価の に変換します。 + 文字列と等価の UInt16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な名前であることを検証します。 + 有効な XML 名の場合は、その名前。 + 検証対象となる名前。 + + is not a valid XML name. + + is null or String.Empty. + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な NCName であることを検証します。NCName は、コロンを入れることができない名前です。 + 有効な NCName の場合は、その名前。 + 検証対象となる名前。 + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C 勧告『XML Schema Part 2: Datatypes』に照らし合わせて、文字列が有効な NMTOKEN であることを検証します。 + 有効な NMTOKEN の場合は、名前トークン。 + 検証する文字列。 + The string is not a valid name token. + + is null. + + + 文字列引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列インスタンスを返します。 + 引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列を返します。 + 検証対象の識別子が格納されている 。 + + + 文字列引数のすべての文字が有効な空白文字の場合、渡された文字列インスタンスを返します。 + 文字列引数のすべての文字が有効な空白文字の場合は渡された文字列インスタンスを返し、それ以外の場合は null を返します。 + 検証する 。 + + + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 検証対象の文字が格納されている 。 + + + 文字列と の間で変換を行うときに、時刻の値をどのように処理するかを指定します。 + + + 現地時刻として処理します。 オブジェクトが世界協定時刻 (UTC: Coordinated Universal Time) を表す場合、これを現地時刻に変換します。 + + + 変換を行うときに、タイム ゾーン情報が保持されます。 + + + + を文字列に変換する場合は、現地時刻として処理します。 + + + UTC として処理します。 オブジェクトが現地時刻を表す場合は、UTC に変換します。 + + + 最後の例外に関する詳細情報を返します。 + + + XmlException クラスの新しいインスタンスを初期化します。 + + + 指定したエラー メッセージを使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + + + XmlException クラスの新しいインスタンスを初期化します。 + エラー状態の説明。 + XmlException をスローした (存在する場合)。この値は、null の場合もあります。 + + + 指定したメッセージ、内部例外、行番号、行の位置を使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + 現在の例外の原因である例外。この値は、null の場合もあります。 + エラーの発生場所を示す行番号。 + エラーの発生場所を示す行の位置。 + + + エラーの発生場所を示す行番号を取得します。 + エラーの発生場所を示す行番号。 + + + エラーの発生場所を示す行の位置を取得します。 + エラーの発生場所を示す行の位置。 + + + 現在の例外を説明するメッセージを取得します。 + 例外の原因を説明するエラー メッセージ。 + + + 名前空間を解決し、コレクションに追加および削除して、これらの名前空間に対するスコープ管理を提供します。 + + + + を指定して、 クラスの新しいインスタンスを初期化します。 + 使用する 。 + null is passed to the constructor + + + 指定した名前空間をコレクションに追加します。 + 追加する名前空間に関連付けるプリフィックス。String.Empty を使用して、既定の名前空間を追加します。メモ XML Path Language (XPath) 式の名前空間の解決に を使用する場合は、プレフィックスを指定する必要があります。XPath 式にプレフィックスが含まれていない場合、名前空間 URI (Uniform Resource Identifier) は、空の名前空間であると見なされます。XPath 式および の詳細については、 メソッドおよび メソッドの説明を参照してください。 + 追加する名前空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 既定の名前空間の名前空間 URI を取得します。 + 既定の名前空間の名前空間 URI を返します。既定の名前空間がない場合は String.Empty を返します。 + + + + 内の名前空間を反復処理するために使用する列挙子を返します。 + + によって格納されているプレフィックスを含む + + + 現在スコープ内にある名前空間を列挙するために使用できる、プレフィックスをキーとした、名前空間の名前のコレクションを取得します。 + 現在スコープ内にある名前空間とプレフィックスのペアのコレクション。 + 返される名前空間ノードの種類を指定する列挙値。 + + + 提供されたプリフィックスに現在のプッシュされたスコープに対して定義された名前空間があるかどうかを示す値を取得します。 + 定義された名前空間がある場合は true。それ以外の場合は false。 + 検索する対象の名前空間のプリフィックス。 + + + 指定したプリフィックスの名前空間 URI を取得します。 + + の名前空間 URI を返します。マップされた名前空間がない場合は null を返します。返される文字列は最小単位に分割されます。最小単位に分割された文字列の詳細については、 クラスを参照してください。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間に一致するようにするには、String.Empty を渡します。 + + + 指定した名前空間 URI に対して宣言されたプリフィックスを検索します。 + 一致するプリフィックス。割り当てられたプリフィックスがない場合、メソッドは String.Empty を返します。null 値を指定した場合、null が返されます。 + プリフィックスに対して解決する名前空間。 + + + このオブジェクトに関連付けられている を取得します。 + このオブジェクトが使用する + + + 名前空間スコープをスタックからポップします。 + スタックに名前空間スコープが残されている場合は true。ポップする名前空間がそれ以上ない場合は false。 + + + 名前空間スコープをスタックにプッシュします。 + + + 指定したプリフィックスの指定した名前空間を削除します。 + 名前空間のプリフィックス。 + 指定したプリフィックスに対して削除する名前空間。削除された名前空間は、現在の名前空間スコープに由来しています。現在のスコープ外の名前空間は無視されます。 + The value of or is null. + + + 名前空間スコープを定義します。 + + + 現在のノードのスコープに定義されているすべての名前空間。この名前空間には、常に暗黙的に宣言される xmlns:xml 名前空間が含まれます。返される名前空間の順序は定義されません。 + + + 常に暗黙的に宣言される xmlns:xml 名前空間を除く、現在のノードのスコープに定義されているすべての名前空間。返される名前空間の順序は定義されません。 + + + 現在のノードでローカルに定義されているすべての名前空間。 + + + 最小単位に分割された文字列オブジェクトのテーブル。 + + + + クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。長さが 0 の場合は、String.Empty が返されます。 + 追加する名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。 + 追加する名前。 + + は null なので、 + + + 派生クラスでオーバーライドされると、指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列と同じ値を含む最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 + 検索する名前。 + + は null なので、 + + + ノードの型を指定します。 + + + 属性 (例 : id='123')。 + + + CDATA セクション (例 : <![CDATA[my escaped text]]>)。 + + + コメント (例 : <!-- my comment -->)。 + + + ドキュメント ツリーのルートして、XML ドキュメント全体へのアクセスを実現するドキュメント オブジェクト。 + + + ドキュメント フラグメント。 + + + 次のようなタグで示されるドキュメント型宣言 (例 : <!DOCTYPE...>)。 + + + 要素 (例 : <item>)。 + + + 終了要素タグ (例 : </item>)。 + + + + を呼び出した結果、XmlReader がエンティティ置換の末尾に到達したときに返されます。 + + + エンティティ宣言 (例 : <!ENTITY...>)。 + + + エンティティへの参照 (例 : &num;)。 + + + Read メソッドが呼び出されなかった場合に、 によって返されます。 + + + ドキュメント型宣言内の表記 (例 : <!NOTATION...>)。 + + + 処理命令 (例 : <?pi test?>)。 + + + 混合コンテンツ モデル内のマークアップ間にある空白、または xml:space="preserve" スコープ内の空白。 + + + ノードのテキストの内容。 + + + マークアップ間の空白。 + + + XML 宣言 (例 : <?xml version='1.0'?>)。 + + + XML フラグメントを解析するために が必要とするコンテキスト情報をすべて提供します。 + + + + 、ベース URI、xml:lang、xml:space、ドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD サブセットはエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、ベース URI、xml:lang、xml:space、エンコーディング、およびドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD はエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、および xml:space のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、xml:space、およびエンコーディングを指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + ベース URI を取得または設定します。 + DTD ファイルを解決するために使用するベース URI。 + + + ドキュメント型宣言の名前を取得または設定します。 + ドキュメント型宣言の名前。 + + + エンコーディングの種類を取得または設定します。 + エンコーディングの種類を示す オブジェクト。 + + + 内部 DTD サブセットを取得または設定します。 + 内部 DTD サブセット。たとえば、このプロパティは、<!DOCTYPE doc [...]> の角かっこの中のすべての内容を返します。 + + + + を取得または設定します。 + XmlNamespaceManager。 + + + 文字列を最小単位に分割するために使用される を取得します。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + XmlNameTable。 + + + パブリック識別子を取得または設定します。 + パブリック識別子。 + + + システム識別子を取得または設定します。 + システム識別子。 + + + 現在の xml:lang スコープを取得または設定します。 + 現在の xml:lang スコープ。スコープ内に xml:lang がない場合は、String.Empty が返されます。 + + + 現在の xml:space スコープを取得または設定します。 + xml:space スコープを示す 値。 + + + XML 限定名を表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定した名前を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + + 指定した名前と名前空間を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + オブジェクトの名前空間。 + + + 空の を提供します。 + + + 指定した オブジェクトが、現在の オブジェクトと等しいかどうかを判断します。 + 2 つのオブジェクトが同じインスタンス オブジェクトである場合は true。それ以外の場合は false。 + 比較対象の 。 + + + + のハッシュ コードを返します。 + このオブジェクトのハッシュ コード。 + + + + が空かどうかを示す値を取得します。 + 名前と名前空間が空の文字列である場合は true。それ以外の場合は false。 + + + + の限定名の文字列形式を取得します。 + 限定名の文字列形式。オブジェクトに対して名前が定義されていない場合は String.Empty。 + + + + の名前空間の文字列形式を取得します。 + 名前空間の文字列形式。オブジェクトに対して名前空間が定義されていない場合は String.Empty。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が同じである場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が異なっている場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + オブジェクトの名前です。 + オブジェクトの名前空間。 + + + XML データへの高速で非キャッシュの前方向アクセスを提供するリーダーを表します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、参照ソースです。 + + + XmlReader クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、現在のノードの属性数を取得します。 + 現在のノードにある属性の数。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのベース URI を取得します。 + 現在のノードのベース URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + がバイナリ コンテンツ用の読み取りメソッドを実装するかどうかを示す値を取得します。 + バイナリ コンテンツ用の読み取りメソッドを実装する場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドを実装しているかどうかを示す値を取得します。 + true if the implements the method; otherwise false. + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このリーダーがエンティティを解析および解決できるかどうかを示す値を取得します。 + リーダーがエンティティを解析および解決できる場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 新たに作成インスタンスの既定の設定で指定されたストリームを使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + + + 新たに作成インスタンスは、指定したストリームおよび設定を使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成インスタンスを解析するための指定したストリーム、設定、およびコンテキスト情報を使用しています。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーを使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーと設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定です。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成を解析するための指定されたテキスト リーダー、設定、およびコンテキスト情報を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + プロパティと プロパティの両方に値が設定されています(これらの NameTable プロパティのいずれか 1 つだけを設定して使用できます)。 + + + 指定された URI で新しい インスタンスを作成します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 クラスは、パスを正規データ形式に変換するときに使用されます。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + URI で指定されたファイルが存在しません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成指定された URI および設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 オブジェクトの オブジェクトは、パスを正規データ形式に変換するときに使用されます。 が null の場合は、新しい オブジェクトが使用されます。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + URI で指定されたファイルが見つかりません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成、指定した XML リーダーと設定を使用してインスタンス。 + ラップされているオブジェクトには、指定されたオブジェクトです。 + 基になる XML リーダーとして使用するオブジェクト。 + 新しい設定インスタンス。 オブジェクトの準拠レベルは、基になるリーダーの準拠レベルと一致するか、または に設定する必要があります。 + + 値が null です。 + + オブジェクトが、基になるリーダーの準拠レベルと一致しない準拠レベルを指定しています。または基になる の状態または の状態にあります。 + + + 派生クラスでオーバーライドされると、XML ドキュメント内の現在のノードの深さを取得します。 + XML ドキュメント内の現在のノードの深さ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーがストリームの末尾に配置されているかどうかを示す値を取得します。 + ストリームの末尾にリーダーが配置されている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。このメソッドは、リーダーを移動しません。 + 属性のインデックス。インデックスの値は、0 から始まります。最初の属性のインデックスは 0 です。 + 該当する がありません。負の値以外で、属性コレクションのサイズよりも小さくなければなりません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。 + 属性の限定名。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。このメソッドは、リーダーを移動しません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードのテキスト値を非同期に取得します。 + 現在のノードの値。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードに属性があるかどうかを示す値を取得します。 + 現在のノードが属性を持っている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが を持つことができるかどうかを示す値を取得します。 + リーダーが現在配置されているノードが Value を持つことができる場合は true。それ以外の場合は false。false の場合、ノードは String.Empty の値を持ちます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが DTD またはスキーマで定義された既定値から生成された属性かどうかを示す値を取得します。 + 現在のノードが、DTD またはスキーマで定義された既定値から生成された値を持つ属性である場合は true。属性値が明示的に設定された場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが空の要素 (<MyElement/> など) かどうかを示す値を取得します。 + 現在のノードが /> で終わる要素である ( が XmlNodeType.Element に等しい) 場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 文字列引数が有効な XML 名かどうかを示す値を返します。 + 名前が有効な場合は true。それ以外の場合は false。 + 検証対象の名前。 + + 値が null です。 + + + 文字列引数が有効な XML 名トークンかどうかを示す値を返します。 + 有効な名前トークンの場合は true。それ以外の場合は false。 + 検証対象の名前トークン。 + + 値が null です。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうかをテストします。 + + が開始タグまたは空の要素タグを見つけた場合は true。XmlNodeType.Element 以外のノード型が見つかった場合は false。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティが、指定した引数と一致するかどうかをテストします。 + 見つかったノードが要素であり、Name プロパティが指定した文字列と一致する場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の Name プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の Name プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティと プロパティが、指定した文字列と一致するかどうかをテストします。 + 見つかったノードが要素の場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の LocalName および NamespaceURI プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の LocalName プロパティと一致する文字列。 + 見つかった要素の NamespaceURI プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのローカル名を取得します。 + プリフィックスを削除した現在のノードの名前。たとえば、LocalName は、要素 <bk:book> の book です。名前を持たないノード型 (Text、Comment など) の場合、このプロパティは String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の要素のスコープの名前空間プリフィックスを解決します。 + プリフィックスの割り当て先の名前空間 URI。条件に合うプリフィックスが見つからない場合は null。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間と一致させるには、空の文字列を渡します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性に移動します。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターの値が負数です。 + + + 派生クラスでオーバーライドされると、指定した の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 派生クラスでオーバーライドされると、指定した および の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 現在のノードがコンテンツ (空白でないテキスト、CDATA、Element、EndElement、EntityReference、または EndEntity) ノードかどうかを確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。リーダーは、ProcessingInstruction、DocumentType、Comment、Whitespace、または SignificantWhitespace の型のノードをスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + 入力ストリームで検出された正しくない XML。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードがコンテンツ ノードであるかどうかを非同期的に確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の属性ノードを含む要素に移動します。 + リーダーが属性の位置に配置されている場合は true で、属性を所有している要素の位置にリーダーが移動します。リーダーが属性の位置に配置されていない場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、最初の属性に移動します。 + 属性が存在する場合は true で、リーダーが最初の属性へ移動します。それ以外の場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、次の属性に移動します。 + 次の属性が存在する場合は true。それ以上、属性が存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの限定名を取得します。 + 現在のノードの限定名。たとえば、Name は、要素 <bk:book> の bk:book です。返される名前は、ノードの によって異なります。リストされた値を返すノード型を次に示します。その他のすべてのノード型は、空の文字列を返します。ノード型名前 Attribute属性の名前。 DocumentTypeドキュメントの種類の名前。 Elementタグ名。 EntityReference参照されたエンティティの名前。 ProcessingInstruction処理命令の対象。 XmlDeclarationリテラル文字列 xml。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーが配置されているノードの名前空間 URI (W3C の名前空間の仕様における定義に準拠) を取得します。 + 現在のノードの名前空間 URI。それ以外の場合は空の文字列。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、この実装に関連付けられている を取得します。 + ノード内の最小単位に分割された文字列を取得できる XmlNameTable。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの型を取得します。 + 現在のノードの型を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードに関連付けられている名前空間プリフィックスを取得します。 + 現在のノードに関連付けられた名前空間プリフィックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、ストリームから次のノードを読み取ります。 + true次のノードが正常に読み取られた場合それ以外の場合、falseです。 + XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + ストリームから次のノードを非同期に読み取ります。 + 次のノードが正常に読み取られた場合は true。それ以上読み取る対象となるノードが存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、属性値を解析して、1 つ以上の Text、EntityReference、または EndEntity の各ノードに格納します。 + 返すノードがある場合は true。初めて呼び出すときにリーダーの位置が属性ノード上にない場合、またはすべての属性値が読み込まれている場合は、false。misc="" などの空の属性は、値 true を持つ単一のノードと一緒に String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。たとえば、 オブジェクトを xs:string に変換するときにこれを使用できます。この値は、null の場合もあります。 + 内容が、指定した型の正しい形式になっていません。 + 試行されたキャストが無効です。 + + 値が null です。 + 現在のノードは、サポートされているノード型ではありません。詳細については、次の表を参照してください。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を非同期に読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を Boolean として読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + 現在の位置における オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、倍精度浮動小数点数として読み取ります。 + 倍精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、単精度浮動小数点数として読み取ります。 + 現在の位置における単精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 32 ビット符号付き整数として読み取ります。 + 32 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 64 ビット符号付き整数として読み取ります。 + 64 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として非同期に読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして非同期に読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として返します。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、要素の内容を要求された型として読み込みます。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として非同期に読み取ります。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を倍精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが終了タグで、リーダーを次のノードに進めることを確認します。 + 現在のノードが終了タグでないか、入力ストリームで正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、マークアップを含むすべての内容を文字列として読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。現在のノードが要素でも属性でもない場合は、空の文字列が返されます。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + マークアップを含むすべてのコンテンツを文字列として非同期に読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、このノードとそのすべての子を表す内容 (マークアップを含む) を読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このノードとその子を表すコンテンツをマークアップを含めて非同期に読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードが要素であるか調べ、リーダーを次のノードに進めます。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素の限定名。 + 入力ストリームで、正しくない XML が検出されました。または要素の が指定した と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素のローカル名。 + 要素の名前空間 URI。 + 入力ストリームで、正しくない XML が検出されました。または見つかった要素の プロパティと プロパティが指定した引数と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーの状態を取得します。 + リーダーの状態を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードおよびそのすべての子孫ノードを読み取るために使用できる、新しい XmlReader インスタンスを返します。 + 新しい XML リーダー インスタンスの設定です。呼び出す、メソッド呼び出しの前に現在のノードで、新しいリーダーを配置する、メソッドです。 + XML リーダーではありません、このメソッドが呼び出されると、要素に配置されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された修飾名を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。 が呼び出されたときに が要素に配置されていない場合、このメソッドは false を返し、 の位置を変更しません。 + 移動先となる要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 移動先となる要素のローカル名。 + 移動先となる要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名の要素が見つかるまで読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI が見つかるまで要素を読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素のローカル名。 + 要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素のローカル名。 + 移動先となる兄弟要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを読み込みます。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + 現在のノードに値がありません ( が false)。 + + 値が null です。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + XML データは、整形式ではありません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを非同期に読み取ります。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、EntityReference ノードのエンティティ参照を解決します。 + リーダーが EntityReference ノードに配置されていません。つまり、このリーダーの実装では、エンティティを解決できません。 は false を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + Gets the object used to create this instance. + このリーダーのインスタンスを作成するために使用した オブジェクト。 メソッドを使用しないでこのリーダーを作成した場合、このプロパティは null を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子をスキップします。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子を非同期にスキップします。 + 現在のノード。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのテキスト値を取得します。 + 返される値は、ノードの によって異なります。返す値を持つノード型の一覧を次の表に示します。これ以外のノード型はすべて String.Empty を返します。ノード型値 Attribute属性の値。 CDATACDATA セクションの内容。 Commentコメントの内容。 DocumentType内部サブセット。 ProcessingInstructionターゲットを含まない、全体の内容。 SignificantWhitespace混合コンテンツ モデル内のマークアップ間の空白。 Textテキスト ノードの内容。 Whitespaceマークアップ間の空白。 XmlDeclaration宣言の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの共通言語ランタイム (CLR) 型を取得します。 + ノードの型指定された値に対応する CLR 型。既定値は、System.String です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを取得します。 + + 値のいずれか。xml:space スコープが存在しない場合、このプロパティは既定の XmlSpace.None に設定されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + 文字のチェックを行うかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。メモ がテキスト データの処理を行う場合は、プロパティの設定に関係なく、XML 名とテキストの内容が有効であることを常にチェックします。 を false に設定すると、文字エンティティ参照に対する文字のチェック機能がオフになります。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + リーダーを閉じるときに基になるストリームまたは を閉じる必要があるかどうかを示す値を取得または設定します。 + リーダーを閉じるときに基になるストリームまたは を閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + + が従う準拠のレベルを取得または設定します。 + XML リーダーが適用する準拠のレベルを指定する列挙値のいずれか。既定値は、 です。 + + + DTD の処理を決定する値を取得または設定します。 + DTD の処理を決定する列挙値の 1 つ。既定値は、 です。 + + + コメントを無視するかどうかを示す値を取得または設定します。 + コメントを無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 処理命令を無視するかどうかを示す値を取得または設定します。 + 処理命令を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 意味のない空白を無視するかどうかを示す値を取得または設定します。 + 空白を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + 行番号オフセット。既定値は 0 です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + ラインの位置のオフセット。既定値は 0 です。 + + + エンティティの展開時に許容されるドキュメント内の最大文字数を示す値を取得または設定します。 + エンティティの展開時に許容される最大文字数。既定値は 0 です。 + + + XML ドキュメントの最大文字数を示す値を取得または設定します。ゼロ (0) の値は、XML ドキュメントのサイズに制限がないことを示します。0 以外の値は、最大サイズを文字数で示します。 + XML ドキュメント内の最大文字数。既定値は 0 です。 + + + 最小単位に分割された文字列の比較に使用する を取得または設定します。 + この オブジェクトを使用して作成されたすべての インスタンスで使用する、最小単位に分割されたすべての文字列を格納する 。既定値は、null です。この値が null の場合、作成された インスタンスは、新しい空の を使用します。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + 現在の xml:space スコープを指定します。 + + + xml:space スコープと default は等価です。 + + + xml:space スコープがありません。 + + + xml:space スコープと preserve は等価です。 + + + XML データが格納されたストリームまたはファイルを、高速かつ非キャッシュで前方のみに生成する方法を提供するライターを表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定されたストリームを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + The value is null. + + + ストリームと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バッファー内のデータをすべて基になるストリームにフラッシュし、基になるストリームもフラッシュします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バッファー内のデータをすべて基になるストリームに非同期にフラッシュし、基になるストリームもフラッシュします。 + 非同期の Flush 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間 URI の現在の名前空間スコープで定義された最も近いプリフィックスを返します。 + 一致するプリフィックス。現在のスコープに一致する名前空間 URI が見つからない場合は null。 + 検索対象のプリフィックスを持つ名前空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + この インスタンスを作成するために使用された オブジェクトを取得します。 + このライターのインスタンスを作成するために使用した オブジェクト。このライターが メソッドを使用して作成されなかった場合、このプロパティは null を返します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスによってオーバーライドされると、 の現在の位置で見つかったすべての属性を書き込みます。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + の現在の位置で見つかったすべての属性を非同期に書き込みます。 + 非同期の WriteAttributes 操作を表すタスク。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名と値の属性を書き込みます。 + 属性のローカル名。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性のローカル名。 + 属性に関連付ける名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したプリフィックス、ローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して属性を非同期に書き込みます。 + 非同期の WriteAttributeString 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したバイナリ バイトを Base64 としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを base64 として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBase64 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定されたバイナリ バイトを BinHex としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを BinHex として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBinHex 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを含む <![CDATA[...]]> ブロックを書き込みます。 + CDATA ブロック内に配置するテキスト。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを格納する <![CDATA[...]]> ブロックを非同期に書き込みます。 + 非同期の WriteCData 操作を表すタスク。 + CDATA ブロック内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した Unicode 文字値の文字エンティティを強制的に生成します。 + 文字エンティティを生成する Unicode 文字。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した Unicode 文字値の文字エンティティを非同期に強制的に生成します。 + 非同期の WriteCharEntity 操作を表すタスク。 + 文字エンティティを生成する Unicode 文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、一度に 1 つのバッファーにテキストを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 一度に 1 つのバッファーにテキストを非同期に書き込みます。 + 非同期の WriteChars 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを格納している <!--...--> コメントを書き込みます。 + コメント内に配置するテキスト。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを含むコメント <!--...--> を非同期に書き込みます。 + 非同期の WriteComment 操作を表すタスク。 + コメント内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前とオプションの属性を含む DOCTYPE 宣言を書き込みます。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定された名前とオプション属性を使用して DOC 宣言を非同期に書き込みます。 + 非同期の WriteDocType 操作を表すタスク。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を非同期に書き込みます。 + 非同期の WriteElementString 操作を表すタスク。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、前の 呼び出しを閉じます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 前の 呼び出しを非同期に閉じます。 + 非同期の WriteEndAttribute 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、開いている任意の要素または属性を閉じ、ライターを Start 状態に戻します。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 開いている要素または属性を非同期に閉じ、ライターを Start 状態に戻します。 + 非同期の WriteEndDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、&name; などのエンティティ参照を書き込みます。 + エンティティ参照の名前。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + エンティティ参照を &name; として非同期的に書き込みます。 + 非同期の WriteEntityRef 操作を表すタスク。 + エンティティ参照の名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteFullEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であるようにします。 + 書き込む名前。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であることを確認し、それを非同期に書き込みます。 + 非同期の WriteName 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であるようにします。 + 書き込む名前。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であることを確認し、それを非同期に書き込みます。 + 非同期の WriteNmToken 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターにコピーし、リーダーを次の兄弟の開始位置に移動します。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターに非同期にコピーし、リーダーを次の兄弟の開始位置に移動します。 + 非同期の WriteNode 操作を表すタスク。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、<?name text?> など、名前とテキストの間に空白が入った処理命令を書き込みます。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前とテキストの間にスペースがある処理命令を、次のように非同期的に書き込みます: <?name text?>。 + 非同期の WriteProcessingInstruction 操作を表すタスク。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間の限定名を書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 書き込むローカル名。 + 名前の名前空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前空間の修飾名を非同期に書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 非同期の WriteQualifiedName 操作を表すタスク。 + 書き込むローカル名。 + 名前の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、手動で文字バッファーから生のマークアップを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、手動で文字列から生のマークアップを書き込みます。 + 書き込むテキストを格納している文字列。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 文字バッファーから手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 文字列から手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名を使用して属性の開始を書き込みます。 + 属性のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名および名前空間 URI を使用して属性の開始を書き込みます。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定されたプリフィックス、ローカル名、および名前空間 URI を使用して属性の開始を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、および名前空間 URI を使用して属性の開始を非同期に書き込みます。 + 非同期の WriteStartAttribute 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言とスタンドアロン属性を書き込みます。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バージョン "1.0" で XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + バージョン "1.0" とスタントアロン属性を使用して XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名の開始タグを書き込みます。 + 要素のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間に関連付けます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。この名前空間が既にスコープ内にあり、関連付けられたプリフィックスを持つ場合、ライターは、そのプリフィックスも自動的に書き込みます。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間とプリフィックスに関連付けます。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した開始タグを非同期に書き込み、指定した名前空間とプレフィックスに関連付けます。 + 非同期の WriteStartElement 操作を表すタスク。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、ライターの状態を取得します。 + + 値のいずれか。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したテキスト内容を書き込みます。 + 書き込むテキスト。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストの内容を非同期に書き込みます。 + 非同期の WriteString 操作を表すタスク。 + 書き込むテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、サロゲート文字ペアのサロゲート文字エンティティを生成し、書き込みます。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + サロゲート文字ペアのサロゲート文字エンティティを非同期に生成して書き込みます。 + 非同期の WriteSurrogateCharEntity 操作を表すタスク。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + オブジェクト値を書き込みます。 + 書き込むオブジェクト値。メモ   .NET Framework 3.5 のリリースでは、このメソッドは をパラメーターとして受け入れます。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 単精度浮動小数点数を書き込みます。 + 書き込む単精度浮動小数点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した空白を書き込みます。 + 空白文字の文字列。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した空白を非同期に書き込みます。 + 非同期の WriteWhitespace 操作を表すタスク。 + 空白文字の文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを表す を取得します。 + 現在の xml:space スコープを表す XmlSpace。値説明 Nonexml:space スコープが存在しない場合は、これが既定値になります。Default現在のスコープは、xml:space="default" です。Preserve現在のスコープは、xml:space="preserve" です。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを示す値を取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + ドキュメント内のすべての文字が W3C の「XML 1.0 Recommendation (XML 1.0 勧告)」の「2.2 Characters (2.2 文字)」に準拠していることを XML ライターがチェックする必要があるかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + + を呼び出したときに、 が、基になるストリームまたは も閉じる必要があるかどうかを示す値を取得または設定します。 + 基になるストリームまたは も閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + XML ライターが XML 出力をチェックする準拠のレベルを取得または設定します。 + 準拠のレベル (ドキュメント、フラグメント、自動検出) を指定する列挙値のいずれか。既定値は、 です。 + + + 使用するテキスト エンコーディングの種類を取得または設定します。 + 使用するテキスト エンコーディング。既定値は、Encoding.UTF8 です。 + + + 要素にインデントを設定するかどうかを示す値を取得または設定します。 + 各要素を新しい行に書き込んでインデントを設定する場合は true、それ以外の場合は false。既定値は、false です。 + + + インデント処理を行うときに使用する文字列を取得または設定します。この設定は、 プロパティが true に設定されている場合に使用します。 + インデント処理を行うときに使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は 2 つのスペースです。 + The value assigned to the is null. + + + XML コンテンツの書き込み時に、重複する名前空間宣言を で削除するかどうかを示す値を取得または設定します。既定の動作では、ライターの名前空間リゾルバーに存在するすべての名前空間宣言がライターによって出力されます。 + + で重複する名前空間宣言を削除するかどうかを指定するための 列挙体。 + + + 改行に使用する文字列を取得または設定します。 + 改行に使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は \r\n (復帰、改行) です。 + The value assigned to the is null. + + + 出力内の改行を正規化するかどうかを示す値を取得または設定します。 + + 値のいずれか。既定値は、 です。 + + + 新しい行に属性を書き込むかどうかを示す値を取得または設定します。 + 個々の行に属性を書き込む場合に true、それ以外の場合は false。既定値は、false です。メモ プロパティ値が false の場合、この設定は無効です。 を true に設定すると、各属性は、新しい行にインデントを 1 レベル増やして記述されます。 + + + XML 宣言を省略するかどうかを示す値を取得または設定します。 + XML 宣言を省略する場合は true、それ以外の場合は false。既定値は false で、XML 宣言が書き込まれます。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + + メソッドが呼び出されるときに がすべての閉じられていない要素タグに終了タグを追加するかどうかを示す値を取得または設定します。 + 閉じられていない要素タグがすべて閉じられる場合は true。それ以外の場合は false。既定値は true です。 + + + W3C (World Wide Web Consortium) の『XML Schema Part 1: Structures』および『XML Schema Part 2: Datatypes』の仕様で指定されている XML スキーマのインメモリ表現です。 + + + 属性または要素を、名前空間プレフィックスで修飾する必要があるかどうかを示します。 + + + スキーマには、要素および属性の形式が指定されません。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要があります。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要はありません。 + + + XML シリアル化および逆シリアル化のカスタム書式を提供します。 + + + このメソッドは予約されているため、使用できません。IXmlSerializable インターフェイスを実装する場合、このメソッドから null (Visual Basic では Nothing) を返す必要があります。また、カスタム スキーマの指定が要求されている場合は、このクラスに を適用します。 + + メソッドによって生成され メソッドによって処理されるオブジェクトの XML 表現を記述する + + + オブジェクトの XML 表現からオブジェクトを生成します。 + オブジェクトの逆シリアル化元である ストリーム。 + + + オブジェクトを XML 表現に変換します。 + オブジェクトのシリアル化先の ストリーム。 + + + 型に適用された場合、XML スキーマを返す型の静的メソッドの名前と、型のシリアル化を制御する (または匿名型の ) を格納します。 + + + 型の XML スキーマを提供する静的メソッドの名前を受け取って、 クラスの新しいインスタンスを初期化します。 + 実装する必要がある静的メソッドの名前。 + + + ターゲット クラスがワイルドカードかどうか、またはクラスのスキーマに xs:any 要素のみが含まれているかどうかを判断する値を取得または設定します。 + クラスがワイルドカードの場合、またはスキーマに xs:any 要素のみが含まれている場合は true。それ以外の場合は false。 + + + 型の XML スキーマおよびその XML スキーマ データ型の名前を提供する静的メソッドの名前を取得します。 + XML スキーマを返すために XML インフラストラクチャによって呼び出されるメソッドの名前。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..9be6f63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml @@ -0,0 +1,2766 @@ + + + + System.Xml.ReaderWriter + + + + 만들어진 개체에서 수행할 입력 또는 출력 검사 수준을 지정합니다. + + + + 또는 개체가 문서 또는 조각 검사의 수행 여부를 자동으로 확인하고 적합한 검사를 수행합니다.다른 또는 개체를 래핑하면 외부 개체는 추가 규칙 검사를 수행하지 않습니다.내부 개체에서만 규칙 검사를 수행합니다.규격 수준을 결정하는 데 대한 자세한 내용은 속성을 참조하세요. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 1.0 문서에 대한 규칙을 준수합니다. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 조각입니다. + + + DTD 처리 옵션을 지정합니다. 열거형은 클래스에서 사용됩니다. + + + DOCTYPE 요소가 무시됩니다.DTD 처리가 수행되지 않습니다. + + + DTD가 발견되면 DTD가 금지되었다는 메시지와 함께 이 throw되도록 지정합니다.이것은 기본적인 동작입니다. + + + 클래스에서 줄과 위치 정보를 반환할 수 있는 인터페이스를 제공합니다. + + + 클래스에서 줄 정보를 반환할 수 있는지 여부를 나타내는 값을 가져옵니다. + + 을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 현재 줄 번호를 가져옵니다. + 현재 줄 번호이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 현재 줄 위치를 가져옵니다. + 현재 줄 위치이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 접두사 및 네임스페이스 매핑 집합에 읽기 전용으로 액세스하는 데 사용됩니다. + + + 현재 범위 내에 정의된 접두사-네임스페이스 매핑 컬렉션을 가져옵니다. + 현재 범위 내의 네임스페이스가 포함된 입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 값입니다. + + + 지정된 접두사에 매핑된 네임스페이스 URI를 가져옵니다. + 접두사에 매핑된 네임스페이스 URI이거나, 접두사가 네임스페이스 URI에 매핑되지 않은 경우 null입니다. + 찾을 네임스페이스 URI의 접두사입니다. + + + 지정된 네임스페이스 URI에 매핑된 접두사를 가져옵니다. + 네임스페이스 URI에 매핑된 접두사이거나, 네임스페이스 URI가 접두사에 매핑되지 않은 경우 null입니다. + 찾을 접두사의 네임스페이스 URI입니다. + + + + 에서 중복된 네임스페이스 선언을 제거할지 여부를 지정합니다. + + + 중복된 네임스페이스 선언을 제거하지 않도록 지정합니다. + + + 중복된 네임스페이스 선언을 제거하도록 지정합니다.중복된 네임스페이스를 제거하려면 접두사와 네임스페이스가 일치해야 합니다. + + + 단일 스레드 을 구현합니다. + + + NameTable 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다.이 0이면 String.Empty가 반환됩니다. + 추가할 문자열이 포함된 문자 배열입니다. + 문자열의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 문자열에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다. + 추가할 문자열입니다. + + 가 null입니다. + + + 주어진 배열의 지정된 문자 범위와 같은 문자가 포함된 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.이 0이면 String.Empty가 반환됩니다. + 찾을 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 값을 가진 원자화된 문자열을 가져옵니다. + 원자화된 문자열이거나 문자열이 이미 원자화되지 않은 경우에는 null입니다. + 찾을 이름입니다. + + 가 null입니다. + + + 줄 바꿈을 처리하는 방법을 지정합니다. + + + 새 줄 문자를 엔터티화합니다.이 설정을 사용하면 정규화 에서 출력을 읽을 경우 모든 문자가 유지됩니다. + + + 새 줄 문자를 변경하지 않습니다.이 경우에는 입력과 출력이 같습니다. + + + + 속성에 지정된 문자와 일치하도록 새 줄 문자를 바꿉니다. + + + 판독기의 상태를 지정합니다. + + + + 메서드가 호출되었습니다. + + + 파일 끝에 성공적으로 도달했습니다. + + + 읽기 작업을 계속할 수 없는 오류가 발생했습니다. + + + Read 메서드가 호출되지 않았습니다. + + + Read 메서드가 호출되었습니다.판독기에 메서드가 추가로 호출될 수 있습니다. + + + + 의 상태를 지정합니다. + + + 특성 값을 쓰고 있음을 나타냅니다. + + + + 메서드가 이미 호출되었음을 나타냅니다. + + + 요소 내용을 쓰고 있음을 나타냅니다. + + + 요소 시작 태그를 쓰고 있음을 나타냅니다. + + + 예외가 throw되어 가 잘못된 상태에 있습니다. 메서드를 호출하여 상태로 설정할 수 있습니다.이외의 경우 메서드를 호출하면 이 throw됩니다. + + + 프롤로그를 쓰고 있음을 나타냅니다. + + + Write 메서드가 아직 호출되지 않았음을 나타냅니다. + + + XML 이름을 인코딩 및 디코딩하고 공용 언어 런타임 형식과 XSD(XML 스키마 정의) 언어 형식 사이의 변환 메서드를 제공합니다.데이터 형식을 변환할 때 반환되는 값은 로캘과 무관합니다. + + + 이름을 디코딩합니다.이 메서드는 메서드 및 메서드와 반대로 수행합니다. + 디코딩한 이름입니다. + 변환될 이름입니다. + + + 이름을 올바른 XML 로컬 이름으로 변환합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + 이름을 올바른 XML 이름으로 변환합니다. + 잘못된 문자가 이스케이프 문자열로 바뀐 이름을 반환합니다. + 변환할 이름입니다. + + + XML 사양에 따라 올바른 이름인지 확인합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + + 을 해당하는 값으로 변환합니다. + Boolean 값, 즉 true 또는 false입니다. + 변환할 문자열입니다. + + is null. + + does not represent a Boolean value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Byte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 단일 문자를 나타내는 Char입니다. + 변환할 단일 문자가 포함된 문자열입니다. + The value of the parameter is null. + The parameter contains more than one character. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + UTC(Coordinated Universal Time) 날짜를 현지 시간으로 변환할지 아니면 UTC로 유지할지 지정하는 값 중 하나입니다. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다.참고   이 문자열은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분을 준수해야 합니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이 형식을 사용하여 문자열 의 유효성을 검사합니다. + + is null. + + or is an empty string or is not in the specified format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 수 있는 형식의 배열입니다.의 각 형식은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이러한 형식 중 하나를 사용하여 문자열 의 유효성을 검사합니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Decimal 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Double 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Guid 값입니다. + 변환할 문자열입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 SByte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Single 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 으로 변환합니다. + Boolean에 대한 문자열 표현, 즉 "true" 또는 "false"입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Byte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Char의 문자열 표현입니다. + 변환할 값입니다. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + + 값 처리 방법을 지정하는 값 중 하나입니다. + The value is not valid. + The or value is null. + + + 제공된 으로 변환합니다. + 제공된 표현입니다. + 변환될 입니다. + + + 제공된 을 지정된 형식의 으로 변환합니다. + 제공된 을 지정된 형식으로 나타낸 입니다. + 변환될 입니다. + + 를 변환할 대상 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + + + 으로 변환합니다. + Decimal의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Double의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Guid의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int64의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + SByte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Single의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + TimeSpan의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt64의 문자열 표현입니다. + 변환할 값입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 TimeSpan 값입니다. + 변환할 문자열입니다.형식 문자열은 기간에 대한 W3C XML Schema Part 2: Datatypes 권장 사항을 준수해야 합니다. + + is not in correct format to represent a TimeSpan value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 해당 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 이름인지 확인합니다. + 이름입니다. 단, 이름이 올바른 XML 이름인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is not a valid XML name. + + is null or String.Empty. + + + 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 NCName인지 확인합니다.NCName은 콜론이 포함될 수 없는 이름입니다. + 이름입니다. 단, 이름이 올바른 NCName인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C XML Schema Part2: Datatypes 권장 사항을 기준으로 문자열이 올바른 NMTOKEN인지 확인합니다. + 이름 토큰입니다. 단, 문자열이 올바른 NMTOKEN인 경우에 한합니다. + 확인할 문자열입니다. + The string is not a valid name token. + + is null. + + + 문자열 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열 인스턴스를 반환합니다. + 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열을 반환합니다. + 유효성을 검사할 ID가 포함된 입니다. + + + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환합니다. + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환하고, 그렇지 않으면 null을 반환합니다. + 확인할 입니다. + + + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 확인할 문자가 포함된 입니다. + + + 문자열과 사이에 변환할 때 시간 값을 처리하는 방법을 지정합니다. + + + 현지 시간으로 처리합니다. 개체가 UTC(Coordinated Universal Time)를 나타내면 값을 현지 시간으로 변환합니다. + + + 변환할 때 표준 시간대 정보를 유지합니다. + + + + 을 문자열로 변환하는 경우 값을 현지 시간으로 처리합니다. + + + UTC로 처리합니다. 개체가 현지 시간을 나타내면 값을 UTC로 변환합니다. + + + 마지막 예외에 대한 자세한 정보를 반환합니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 오류 메시지를 사용하여 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 조건에 대한 설명입니다. + XmlException을 throw한 입니다.이 값은 null일 수 있습니다. + + + 지정된 메시지, 내부 예외, 줄 번호 및 줄 위치를 갖는 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + 현재 예외의 원인이 되는 예외입니다.이 값은 null일 수 있습니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 오류가 발생한 곳을 나타내는 줄 번호를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + + + 오류가 발생한 곳을 나타내는 줄 위치를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 현재 예외를 설명하는 메시지를 가져옵니다. + 예외에 대한 이유를 설명하는 오류 메시지입니다. + + + 컬렉션에 대한 네임스페이스를 확인, 추가 및 제거하고 이 네임스페이스에 대한 범위 관리를 제공합니다. + + + 지정된 을 사용하여 클래스의 새 인스턴스를 초기화합니다. + 사용할 입니다. + null is passed to the constructor + + + 지정된 네임스페이스를 컬렉션에 추가합니다. + 추가할 네임스페이스와 관련된 접두사입니다.기본 네임스페이스를 추가하려면 String.Empty를 사용합니다.참고XPath(XML Path Language) 식에서 네임스페이스를 확인하는 데 를 사용할 경우에는 접두사를 지정해야 합니다.XPath 식에 접두사가 없으면 네임스페이스 URI(Uniform Resource Identifier)를 빈 네임스페이스로 간주합니다.XPath 식 및 에 대한 자세한 내용은 메서드를 참조하세요. + 추가할 네임스페이스입니다. + The value for is "xml" or "xmlns". + The value for or is null. + + + 기본 네임스페이스의 네임스페이스 URI를 가져옵니다. + 기본 네임스페이스의 네임스페이스 URI를 반환하거나, 기본 네임스페이스가 없을 경우에는 String.Empty를 반환합니다. + + + + 에서 네임스페이스를 반복하는 데 사용할 열거자를 반환합니다. + + 가 저장하는 접두사가 포함된 입니다. + + + 현재 범위 내에 있는 네임스페이스를 열거하는 데 사용할 수 있는 접두사가 붙은 네임스페이스 이름 컬렉션을 가져옵니다. + 현재 범위 내에 있는 네임스페이스 및 접두사 쌍 컬렉션입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 열거형 값입니다. + + + 제공한 접두사에 현재 푸시된 범위에 정의한 네임스페이스가 있는지를 나타내는 값을 가져옵니다. + 정의된 네임스페이스가 있으면 true이고, 그렇지 않으면 false입니다. + 찾으려는 네임스페이스의 접두사입니다. + + + 지정된 접두사의 네임스페이스 URI를 가져옵니다. + + 의 네임스페이스 URI를 반환하거나, 매핑된 네임스페이스가 없을 경우에는 null을 반환합니다.반환되는 문자열은 원자화됩니다.원자화된 문자열에 대한 자세한 내용은 클래스를 참조하세요. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 String.Empty를 전달합니다. + + + 지정된 네임스페이스 URI에 대해 선언한 접두사를 찾습니다. + 일치하는 접두사입니다.매핑된 접두사가 없으면 메서드에서 String.Empty를 반환합니다.null 값이 제공되면 null이 반환됩니다. + 접두사에 대해 확인할 네임스페이스입니다. + + + 이 개체와 연결된 을 가져옵니다. + 이 개체에서 사용한 입니다. + + + 스택에서 네임스페이스 범위를 팝합니다. + 스택에 네임스페이스 범위가 남아 있으면 true이고, 팝할 네임스페이스가 없으면 false입니다. + + + 스택에 네임스페이스 범위를 푸시합니다. + + + 지정된 접두사의 지정된 네임스페이스를 제거합니다. + 네임스페이스의 접두사입니다. + 지정된 접두사의 제거할 네임스페이스입니다.네임스페이스는 현재 네임스페이스 범위에서 제거됩니다.현재 범위를 벗어난 네임스페이스는 무시됩니다. + The value of or is null. + + + 네임스페이스 범위를 정의합니다. + + + 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.여기에는 항상 암시적으로 선언되는 xmlns:xml 네임스페이스가 포함됩니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 항상 암시적으로 선언되는 xmlns:xml 네임스페이스를 제외하고 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 현재 노드에서 로컬로 정의된 모든 네임스페이스입니다. + + + 원자화된 문자열 개체의 테이블입니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다.길이가 0이면 String.Empty가 반환됩니다. + 추가할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 인덱스이며 배열에서 0부터 시작합니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다. + 추가할 이름입니다. + + 가 null입니다. + + + 파생 클래스에서 재정의할 경우 지정된 배열에 있는 지정된 범위의 문자와 같은 문자를 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.가 0이면 String.Empty가 반환됩니다. + 검색할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정된 문자열과 같은 값을 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다. + 검색할 이름입니다. + + 가 null입니다. + + + 노드 형식을 지정합니다. + + + 특성입니다(예를 들어, id='123'). + + + CDATA 섹션입니다(예를 들어, <![CDATA[my escaped text]]>). + + + 주석입니다(예를 들어, <!-- my comment -->). + + + 문서 트리의 루트인 문서 개체를 사용하여 전체 XML 문서에 액세스할 수 있습니다. + + + 문서 단편입니다. + + + 다음 태그를 사용한 문서 형식 선언입니다(예를 들어, <!DOCTYPE...>). + + + 요소입니다(예를 들어, <item>). + + + 끝 요소 태그입니다(예를 들어, </item>). + + + + 의 호출 결과 XmlReader가 대체 엔터티 끝에 도달했을 때 반환됩니다. + + + 엔터티 선업입니다(예를 들어, <!ENTITY...>). + + + 엔터티 참조입니다(예를 들어, &num;). + + + Read 메서드가 호출되지 않은 경우 에 의해 반환됩니다. + + + 문서 형식 선언 표기법입니다(예를 들어, <!NOTATION...>). + + + 처리 명령입니다(예를 들어, <?pi test?>). + + + 복합 콘텐츠 모델에서 태그들 사이의 공백 또는 xml:space="preserve" 범위 내의 공백입니다. + + + 노드의 텍스트 내용입니다. + + + 태그들 사이의 공백입니다. + + + XML 선언입니다(예를 들어, <?xml version='1.0'?>). + + + + 에서 XML 조각을 구문 분석할 때 필요한 모든 컨텍스트 정보를 제공합니다. + + + 지정된 , , 기본 URI, xml:lang, xml:space 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD 하위 집합은 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , 기본 URI, xml:lang, xml:space, 인코딩 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD는 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang 및 xml:space 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang, xml:space 및 인코딩을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 기본URI를 가져오거나 설정합니다. + DTD 파일 확인에 사용할 기본 URI입니다. + + + 문서 형식 선언의 이름을 가져오거나 설정합니다. + 문서 형식 선언의 이름입니다. + + + 인코딩 형식을 가져오거나 설정합니다. + 인코딩 형식을 나타내는 개체입니다. + + + 내부 DTD 하위 집합을 가져오거나 설정합니다. + 내부 DTD 하위집합입니다.예를 들어, 이 속성은 대괄호 <!DOCTYPE doc [...]> 사이에 있는 모든 것을 반환합니다. + + + + 를 가져오거나 설정합니다. + XmlNamespaceManager + + + 문자열을 원자화할 때 사용하는 을 가져옵니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + XmlNameTable + + + public 식별자를 가져오거나 설정합니다. + public 식별자입니다. + + + 시스템 식별자를 가져오거나 설정합니다. + 시스템 식별자입니다. + + + 현재 xml:lang 범위를 가져오거나 설정합니다. + 현재 xml:lang 범위입니다.범위에 xml:lang이 없으면 String.Empty가 반환됩니다. + + + 현재 xml:space 범위를 가져오거나 설정합니다. + xml:space 범위를 나타내는 값입니다. + + + 정규화된 XML 이름을 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 이름을 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + + 지정된 이름과 네임스페이스를 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + 개체의 네임스페이스입니다. + + + 을 제공합니다. + + + 지정된 개체가 현재 개체와 같은지 여부를 확인합니다. + 두 개체가 같은 인스턴스 개체이면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + + + + 에 대한 해시 코드를 반환합니다. + 이 개체에 대한 해시 코드입니다. + + + + 가 비어 있는지 여부를 나타내는 값을 가져옵니다. + 이름과 네임스페이스가 빈 문자열이면 true이고, 그렇지 않으면 false입니다. + + + + 의 정규화된 이름에 대한 문자열 표현을 가져옵니다. + 정규화된 이름의 문자열 표현이거나, 개체에 정의된 이름이 없는 경우 String.Empty입니다. + + + + 의 네임스페이스에 대한 문자열 표현을 가져옵니다. + 네임스페이스의 문자열 표현이거나, 개체에 정의된 네임스페이스가 없는 경우 String.Empty입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 같으면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 다르면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + 개체의 이름입니다. + 개체의 네임스페이스입니다. + + + 빠르고, 캐시되지 않으며 앞으로만 이동 가능한 XML 데이터 액세스를 제공하는 판독기를 나타냅니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 참조 원본. + + + XmlReader 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의되면 현재 노드에 포함된 특성 수를 가져옵니다. + 현재 노드에 포함된 특성의 수입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 기본 URI를 가져옵니다. + 현재 노드의 기본 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 가 이진 콘텐츠 읽기 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + 이진 콘텐츠 읽기 메서드를 구현하면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + true if the implements the method; otherwise false. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 판독기가 엔터티를 구문 분석하고 확인할 수 있는지를 나타내는 값을 가져옵니다. + 판독기가 엔터티를 구문 분석하고 확인할 수 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 새로 만듭니다 인스턴스에서 지정 된 스트림에 사용 하 여 기본 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + + + 새로 만듭니다 인스턴스에 지정 된 스트림 및 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 인스턴스에서 지정된 된 스트림, 설정 및 컨텍스트 정보를 사용 하 여 구문 분석 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다. 는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + + 값이 null인 경우 + + + 새로 만듭니다 설정과 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 .이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 구문 분석에 대 한 지정한 텍스트 판독기, 설정 및 컨텍스트 정보를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + 속성 모두에 값이 포함된 경우.이러한 NameTable 속성 중 하나만 설정하여 사용할 수 있습니다. + + + 지정된 URI를 사용하여 새 인스턴스를 만듭니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 클래스는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + URI가 나타내는 파일이 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 지정 된 URI 및 설정을 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 개체에 지정된 개체는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다.가 null이면 새 개체가 사용됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + URI로 지정된 파일을 찾을 수 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 설정과 지정 된 XML 판독기를 사용 하 여 인스턴스. + 래핑된 개체 주위 지정 된 개체입니다. + 내부 XML 판독기로 사용할 개체입니다. + 새 설정을 인스턴스. 개체의 규칙 수준은 내부 판독기의 규칙 수준과 일치하거나 로 설정되어야 합니다. + + 값이 null인 경우 + + 개체에 지정된 규칙 수준이 내부 판독기의 규칙 수준과 일치하지 않는 경우또는내부 의 상태가 또는 인 경우 + + + 파생 클래스에서 재정의되면 XML 문서에서 현재 노드의 수준을 가져옵니다. + XML 문서의 현재 노드 수준입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 스트림의 끝에 배치되었는지를 나타내는 값을 가져옵니다. + 판독기가 스트림의 맨 끝에 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 인덱스입니다.인덱스는 0부터 시작합니다.첫 번째 특성의 인덱스는 0입니다. + + 이 범위에서 벗어난 경우.음수가 아니어야 하며 특성 컬렉션의 크기보다 작아야합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 값을 비동기적으로 가져옵니다. + 현재 노드의 값입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드에 특성이 있는지를 나타내는 값을 얻습니다. + 현재 노드에 특성이 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드에 가 있는지 여부를 나타내는 값을 가져옵니다. + 현재 판독기가 위치한 노드에 Value가 있으면 true이고, 그렇지 않으면 false입니다.false인 경우 노드의 값은 String.Empty입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성인지를 나타내는 값을 가져옵니다. + 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성이면 true이고, 특성 값이 명시적으로 설정되었으면 false 입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 <MyElement/>와 같은 빈 요소인지 여부를 나타내는 값을 가져옵니다. + 현재 노드가 />로 끝나는 요소(이 XmlNodeType.Element인 경우)이면 true이고, 그렇지 않으면false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 문자열 인수가 유효한 XML 이름인지를 나타내는 값을 반환합니다. + 유효한 이름이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름입니다. + + 값이 null인 경우 + + + 문자열 인수가 유효한 XML 이름 토큰인지를 나타내는 값을 반환합니다. + 유효한 이름 토큰이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름 토큰입니다. + + 값이 null인 경우 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 테스트합니다. + + 가 시작 태그나 빈 요소 태그를 찾으면 true이고, XmlNodeType.Element 이외의 노드 형식을 찾으면 false입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이고 Name 속성이 지정된 문자열과 일치하면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소 Name 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 Name 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소의 LocalName 및 NamespaceURI 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 LocalName 속성과 일치하는 문자열입니다. + 찾은 요소의 NamespaceURI 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 로컬 이름을 가져옵니다. + 접두사를 제거한 현재 노드의 이름입니다.예를 들어, LocalName은 <bk:book> 요소에 대한 book입니다.이름이 없는 노드 형식(예: Text, Comment 등)의 경우 이 속성은 String.Empty를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 요소의 범위에서 네임스페이스 접두사를 확인합니다. + 접두사가 매핑되는 네임스페이스 URI이거나 일치하는 접두사가 없는 경우 null입니다. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 빈 문자열을 전달합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성으로 이동합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수에 음수 값이 있습니다. + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 현재 노드가 콘텐츠 노드(공백 없는 텍스트, CDATA, Element, EndElement, EntityReference 또는 EndEntity)인지 여부를 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다.판독기는 ProcessingInstruction, DocumentType, Comment, Whitespace 또는 SignificantWhitespace 같은 형식의 노드를 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드가 콘텐츠 노드인지를 비동기적으로 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 특성 노드를 포함하는 요소로 이동합니다. + 판독기가 특성에 있으면(특성이 있는 요소로 판독기가 이동하면) true이고, 판독기가 특성에 없으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 첫 번째 특성으로 이동합니다. + 특성이 있으면(판독기가 첫 번째 특성으로 이동하면) true이고, 그렇지 않으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 다음 특성으로 이동합니다. + 다음 특성이 있으면 true이고, 더 이상 특성이 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 정규화된 이름을 가져옵니다. + 현재 노드의 정규화된 이름입니다.예를 들어, Name은 <bk:book> 요소에 대한 bk:book입니다.반환되는 이름은 노드의 에 따라 달라집니다.다음 노드 형식은 나열된 값을 반환합니다.기타 모든 노드 형식은 빈 문자열을 반환합니다.노드 형식 이름 Attribute특성의 이름입니다. DocumentType문서 형식 이름입니다. Element태그 이름입니다. EntityReference참조된 엔터티의 이름입니다. ProcessingInstruction처리 명령의 대상입니다. XmlDeclaration리터럴 문자열 xml입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 배치된 노드의 네임스페이스 URI를 W3C 네임스페이스 사양에 정의된 대로 가져옵니다. + 현재 노드의 네임스페이스 URI이거나 빈 문자열입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 이 구현과 관련된 을 가져옵니다. + 노드 내에 있는 문자열의 원자화된 버전을 가져올 수 있도록 하는 XmlNameTable입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 형식을 가져옵니다. + 현재 노드의 형식을 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드와 관련된 네임스페이스 접두사를 가져옵니다. + 현재 노드와 관련된 네임스페이스 접두사입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 스트림에서 다음 노드를 읽습니다. + true다음 노드를 읽었으면 하는 경우 그렇지 않은 경우 false. + XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 스트림에서 다음 노드를 비동기적으로 읽습니다. + 다음 노드를 읽었으면 true이고, 더 이상 읽을 노드가 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 하나 이상의 Text, EntityReference 또는 EndEntity 노드로 특성 값을 구문 분석합니다. + 반환할 노드가 있으면 true입니다.처음 호출할 때 판독기가 Attribute 노드에 있거나 모든 특성 값을 읽었으면 false입니다.misc=""와 같은 빈 특성은 true를 반환하며 이것은 단일 노드가 String.Empty의 값을 갖는 것을 의미합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다.예를 들어, 개체를 xs:string으로 변환할 때 이 개체를 사용할 수 있습니다.이 값은 null일 수 있습니다. + 콘텐츠가 대상 형식에 맞지 않는 형식인 경우 + 시도된 캐스팅이 잘못된 경우 + + 값이 null인 경우 + 현재 노드가 지원되는 노드 형식이 아닌 경우.자세한 내용은 아래 표를 참조하십시오. + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 비동기적으로 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 Boolean으로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 배정밀도 부동 소수점 숫자로 읽습니다. + 텍스트 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 단정밀도 부동 소수점 숫자로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 32비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 64비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 비동기적으로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소 콘텐츠를 요청된 형식으로 비동기적으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 배정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 32비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 32비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 64비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 64비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 콘텐츠 노드가 끝 태그인지 확인하고 판독기를 다음 노드로 이동합니다. + 현재 노드가 끝 태그가 아니거나 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 태그를 포함한 모든 콘텐츠를 문자열로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다.현재 노드가 요소나 특성이 아니면 빈 문자열이 반환됩니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 태그를 포함한 모든 콘텐츠를 문자열로 비동기적으로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 태그를 포함하여 이 노드 및 모든 자식 노드를 나타내는 콘텐츠를 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 노드 및 이 노드의 모든 자식을 나타내는 태그를 포함한 콘텐츠를 비동기적으로 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드가 요소인지 확인하고 판독기를 다음 노드로 진행합니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 을 가진 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 정규화된 이름입니다. + 입력 스트림에 잘못된 XML이 있는 경우 또는 이 요소의 는 주어진 에 매치되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 가 있는 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 입력 스트림에 잘못된 XML이 있는 경우또는검색된 요소의 속성은 주어진 인수와 일치하지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기의 상태를 가져옵니다. + 판독기 상태를 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드와 해당 하위 노드 전체를 읽는 데 사용되는 새 XmlReader 인스턴스를 반환합니다. + 로 설정 된 새 XML 판독기 인스턴스 .호출 된 메서드를 호출 하기 전에 현재 노드 였던 노드에 새 판독기가 배치는 메서드. + 이 메서드가 호출 될 때 XML 판독기 요소에 배치 되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 정규화 이름을 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.를 호출했을 때 가 요소에 배치되어 있지 않으면 이 메서드가 false를 반환하고 의 위치는 변경되지 않습니다. + 판독기를 이동할 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 판독기를 이동할 요소의 로컬 이름입니다. + 판독기를 이동할 하위 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화된 이름의 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름 및 네임스페이스 URI를 사용하는 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화 이름을 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 로컬 이름입니다. + 판독기를 이동할 형제 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + XML 문서에 포함된 큰 텍스트 스트림을 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 현재 노드에 값이 없는 경우, 즉 가 false인 경우 + + 값이 null인 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + XML 데이터가 올바른 형식이 아닌 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + XML 문서에 포함된 큰 텍스트 스트림을 비동기적으로 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 EntityReference 노드에 대한 엔터티 참조를 확인합니다. + 판독기가 EntityReference 노드에 배치되지 않고 판독기의 이 구현에서 엔터티를 확인할 수 없는 경우(가 false를 반환하는 경우) + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + Gets the object used to create this instance. + 이 판독기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 판독기를 만들지 않은 경우 이 속성은 null을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 건너뜁니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 비동기적으로 건너뜁니다. + 현재 노드입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 노드의 텍스트 값을 가져옵니다. + 반환되는 값은 노드의 에 따라 달라집니다.다음 표에서는 반환할 값이 있는 노드 형식을 보여 줍니다.다른 모든 노드 형식은 String.Empty를 반환합니다.노드 형식 값 Attribute특성 값입니다. CDATACDATA 섹션의 콘텐츠입니다. Comment주석의 콘텐츠입니다. DocumentType내부 하위 집합입니다. ProcessingInstruction대상을 제외한 전체 콘텐츠입니다. SignificantWhitespace혼합된 콘텐츠 모델의 태그 간 공백입니다. Text텍스트 노드의 내용입니다. Whitespace태그 사이의 공백입니다. XmlDeclaration선언의 내용입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 CLR(공용 언어 런타임) 형식을 가져옵니다. + 노드의 형식화된 값에 해당하는 CLR 형식입니다.기본값은 System.String입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 가져옵니다. + + 값 중 하나입니다.xml:space 범위가 존재하지 않으면 이 속성은 기본적으로 XmlSpace.None으로 설정됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지 여부를 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 문자 검사를 수행할지를 나타내는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다.참고텍스트 데이터를 처리할 경우 는 이 속성의 설정에 상관없이 XML 이름 및 텍스트 콘텐츠의 유효성을 항상 검사합니다.를 false로 설정하면 문자 엔터티 참조에 대해 문자 검사가 수행되지 않습니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫을지 여부를 나타내는 값을 가져오거나 설정합니다. + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫으면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 에 적용할 규칙 수준을 가져오거나 설정합니다. + XML 판독기를 적용할 규칙 수준을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + DTD 처리를 결정하는 값을 가져오거나 설정합니다. + DTD 처리를 결정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 주석을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 주석을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 처리 명령을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 처리 명령을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 유효하지 않은 공백을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 공백을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 개체의 줄 번호 오프셋을 가져오거나 설정합니다. + 줄 번호 오프셋입니다.기본값은 0입니다. + + + + 개체의 줄 위치 오프셋을 가져오거나 설정합니다. + 선 위치 오프셋입니다.기본값은 0입니다. + + + 문서에서 엔터티 확장 후의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다. + 확장된 엔터티의 최대 허용 문자 수입니다.기본값은 0입니다. + + + XML 문서의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다.값 0은 XML 문서 크기에 제한이 없음을 의미합니다.0이 아닌 값은 최대 크기(문자 수)를 지정합니다. + XML 문서의 최대 허용 문자 수입니다.기본값은 0입니다. + + + 원자화된 문자열을 비교하는 데 사용할 을 가져오거나 설정합니다. + 개체를 사용하여 만든 모든 인스턴스에서 사용하는 원자화된 문자열 전체가 저장되는 입니다.기본값은 null입니다.이 값이 null이면 인스턴스는 비어 있는 새 을 사용합니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + 현재 xml:space 범위를 지정합니다. + + + xml:space 범위가 default입니다. + + + xml:space 범위가 없습니다. + + + xml:space 범위가 preserve입니다. + + + XML 데이터가 포함된 스트림 또는 파일을 생성할 수 있도록 빠르고, 앞으로만 이동 가능하며, 캐시되지 않은 방법을 제공하는 작성기를 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 스트림을 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + The value is null. + + + 스트림과 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + The value is null. + + + + 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버퍼에 있는 항목을 내부 스트림으로 플러시하고 내부 스트림도 플러시합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버퍼에 있는 모든 내용을 내부 스트림으로 비동기적으로 플러시하고 내부 스트림도 플러시합니다. + 비동기 Flush 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스 URI의 현재 네임스페이스 범위에 정의된 가장 비슷한 접두사를 반환합니다. + 일치하는 접두사이거나 현재 범위에 일치하는 네임스페이스 URI가 없는 경우 null입니다. + 찾으려는 접두사를 가진 네임스페이스 URI입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 인스턴스를 만드는 데 사용되는 개체를 가져옵니다. + 이 작성기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 작성기를 만들지 않은 경우 이 속성은 null을 반환합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 의 현재 위치에 있는 모든 특성을 작성합니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 의 현재 위치에서 찾은 모든 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributes 작업을 나타내는 작업입니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름 및 값이 있는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성에 연결할 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributeString 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 Base64로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 Base64로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBase64 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 BinHex로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 BinHex로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBinHex 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 <![CDATA[...]]> 블록을 작성합니다. + CDATA 블록 내부에 배치할 텍스트입니다. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 <![CDATA[...]]> 블록을 비동기적으로 작성합니다. + 비동기 WriteCData 작업을 나타내는 작업입니다. + CDATA 블록 내부에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 유니코드 문자 값의 문자 엔터티를 생성하게 합니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 유니코드 문자 값에 대한 문자 엔터티가 비동기적으로 생성되도록 합니다. + 비동기 WriteCharEntity 작업을 나타내는 작업입니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 번에 한 버퍼씩 텍스트를 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 번에 한 버퍼씩 텍스트를 비동기적으로 씁니다. + 비동기 WriteChars 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 주석(<!--...-->)을 작성합니다. + 주석 내에 배치할 텍스트입니다. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 주석<!--...-->을 비동기적으로 작성합니다. + 비동기 WriteComment 작업을 나타내는 작업입니다. + 주석 내에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이름 및 선택적 특성이 있는 DOCTYPE 선언을 작성합니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 이름과 선택적 특성을 사용하여 DOCTYPE 선언을 비동기적으로 작성합니다. + 비동기 WriteDocType 작업을 나타내는 작업입니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 씁니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 비동기적으로 작성합니다. + 비동기 WriteElementString 작업을 나타내는 작업입니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 이전 호출을 닫습니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이전 호출을 비동기적으로 닫습니다. + 비동기 WriteEndAttribute 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 열려 있는 모든 요소나 특성을 닫고 작성기를 다시 시작 상태로 설정합니다. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 열려 있는 모든 요소나 특성을 비동기적으로 닫고 작성기를 시작 상태로 설정합니다. + 비동기 WriteEndDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 &name; 같이 엔터티 참조를 작성합니다. + 엔터티 참조의 이름입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 엔터티 참조를 &name;으로 비동기적으로 작성합니다. + 비동기 WriteEntityRef 작업을 나타내는 작업입니다. + 엔터티 참조의 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteFullEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteName 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 NmToken이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 NmToken이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteNmToken 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 비동기적으로 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 비동기 WriteNode 작업을 나타내는 작업입니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 <?name text?> 같이 이름과 텍스트 사이에 공백이 있는 처리 명령을 작성합니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이름과 텍스트 사이의 공백을 사용하여 처리 명령을 비동기적으로 씁니다(예: <?name text?>). + 비동기 WriteProcessingInstruction 작업을 나타내는 작업입니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스로 한정된 이름을 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 네임스페이스로 한정된 이름을 비동기적으로 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 비동기 WriteQualifiedName 작업을 나타내는 작업입니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 문자 버퍼에서 원시 태그를 직접 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 문자열에서 원시 태그를 직접 작성합니다. + 작성할 텍스트를 포함하는 문자열입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 문자 버퍼에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 문자열에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 작성할 텍스트를 포함하는 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름을 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 비동기적으로 작성합니다. + 비동기 WriteStartAttribute 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"인 XML 선언을 작성합니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"이고 독립형 특성이 포함된 XML 선언을 작성합니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버전 "1.0"을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 버전 "1.0"과 독립형 특성을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름을 사용하여 시작 태그를 작성합니다. + 요소의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스에 연결합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다.이 네임스페이스가 이미 범위에 있고 관련된 접두사가 있는 경우 작성기는 해당 접두사도 자동으로 작성합니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스 및 접두사에 연결합니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 시작 태그를 비동기적으로 작성하고 주어진 네임스페이스 및 접두사와 연결합니다. + 비동기 WriteStartElement 작업을 나타내는 작업입니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 작성기의 상태를 가져옵니다. + + 값 중 하나입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되는 경우 지정된 텍스트 콘텐츠를 작성합니다. + 쓸 텍스트입니다. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 텍스트 콘텐츠를 비동기적으로 작성합니다. + 비동기 WriteString 작업을 나타내는 작업입니다. + 쓸 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 생성하고 작성합니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 비동기적으로 생성하고 작성합니다. + 비동기 WriteSurrogateCharEntity 작업을 나타내는 작업입니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 개체 값을 씁니다. + 쓸 개체 값입니다.참고   .NET Framework 3.5 릴리스에서 이 메서드는 을 매개 변수로 받습니다. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 단정밀도 부동 소수점 숫자를 씁니다. + 쓸 단정밀도 부동 소수점 숫자입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 공백을 작성합니다. + 공백 문자의 문자열입니다. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 공백을 비동기적으로 작성합니다. + 비동기 WriteWhitespace 작업을 나타내는 작업입니다. + 공백 문자의 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 나타내는 를 가져옵니다. + 현재 xml:space 범위를 나타내는 XmlSpace입니다.값 의미 Nonexml:space 범위가 없는 경우 기본값입니다.Default현재 범위가 xml:space="default"입니다.Preserve현재 범위가 xml:space="preserve"입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지를 나타내는 값을 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + XML 작성기가 문서의 모든 문자가 W3C XML 1.0 권장 사항의 "2.2 문자"를 따르는지 확인해야 하는 경우 표시하는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + + 메서드를 호출한 경우 가 내부 스트림 또는 도 함께 닫을지를 나타내는 값을 가져오거나 설정합니다. + 내부 스트림 또는 를 함께 닫으려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + XML 작성기가 XML 출력을 확인하는 규칙 수준을 가져오거나 설정합니다. + 규칙 수준(문서, 조각 또는 자동 검색)을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 사용할 텍스트 인코딩의 형식을 가져오거나 설정합니다. + 사용할 텍스트 인코딩입니다.기본값은 Encoding.UTF8입니다. + + + 요소의 들여쓰기 여부를 나타내는 값을 가져오거나 설정합니다. + 새 줄에 개별 요소를 들여 쓰면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 들여쓰기에 사용할 문자열을 가져오거나 설정합니다.이 설정은 속성이 true로 설정된 경우에 사용됩니다. + 들여쓰기에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 공백 두 개입니다. + The value assigned to the is null. + + + XML 콘텐츠를 쓸 때 에서 중복된 네임스페이스 선언을 제거할지를 표시하는 값을 가져오거나 설정합니다.기본 동작은 작성기에서 작성기의 네임스페이스 확인자에 있는 모든 네임스페이스 선언을 출력하는 것입니다. + + 에서 중복된 네임스페이스 선언을 제거할지를 지정하는 데 사용되는 열거형입니다. + + + 줄 바꿈에 사용할 문자열을 가져오거나 설정합니다. + 줄 바꿈에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 \r\n(캐리지 리턴, 줄 바꿈)입니다. + The value assigned to the is null. + + + 줄 바꿈을 출력에 정규화할지를 나타내는 값을 가져오거나 설정합니다. + + 값 중 하나입니다.기본값은 입니다. + + + 특성을 새 줄에 쓸지를 나타내는 값을 가져오거나 설정합니다. + 특성을 개별 줄에 쓰려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다.참고 속성 값이 false인 경우에는 이 설정을 적용해도 효과가 없습니다.를 true로 설정하면 각 특성 앞에 줄 바꿈과 한 수준 들여쓰기가 추가됩니다. + + + XML 선언을 생략할지를 나타내는 값을 가져오거나 설정합니다. + XML 선언을 생략하려면 true이고, 그렇지 않으면 false입니다.기본값은 false로, XML 선언이 작성됩니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + + 메서드가 호출될 때 가 닫히지 않은 모든 요소 태그에 닫는 태그를 추가할지를 나타내는 값을 가져오거나 설정합니다. + 닫히지 않은 모든 요소 태그가 닫히면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + XML 스키마의 메모리 내 표현으로 W3C(World Wide Web Consortium)XML 스키마 파트 1: 구조 및 XML 스키나 파트 2: 데이터 형식 사양을 참조하세요. + + + 특성이나 요소를 네임스페이스 접두사로 한정해야 하는지 여부를 나타냅니다. + + + 스키마에 요소 및 특성 형식을 지정하지 않습니다. + + + 요소와 특성을 네임스페이스 접두사로 한정해야 합니다. + + + 요소와 특성을 네임스페이스 접두사로 한정할 필요는 없습니다. + + + XML serialization 및 deserialization을 위한 사용자 지정 서식을 제공합니다. + + + 이 메서드는 예약되어 있으므로 사용해서는 안 됩니다.IXmlSerializable 인터페이스를 구현할 때 이 메서드에서 null(Visual Basic에서는 Nothing)을 반환해야 하지만 사용자 지정 스키마를 지정해야 하는 경우에는 를 클래스에 적용합니다. + + 메서드에 의해 생성되고 메서드가 사용하는 개체의 XML 표현을 설명하는 입니다. + + + 개체의 XML 표현에서 개체를 생성합니다. + 개체가 deserialize되는 스트림입니다. + + + 개체를 XML 표현으로 변환합니다. + 개체가 serialize되는 스트림입니다. + + + 형식에 적용되는 경우 XML 스키마를 반환하는 형식의 정적 메서드 이름과 형식의 serialization을 제어하는 (익명 형식의 경우 )을 저장합니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드 이름을 가져와서 클래스의 새 인스턴스를 초기화합니다. + 구현되어야 하는 정적 메서드의 이름입니다. + + + 대상 클래스가 와일드카드이거나 클래스의 스키마에 xs:any 요소만 포함되어 있는지 여부를 확인하는 값을 가져오거나 설정합니다. + 클래스가 와일드카드이거나 스키마에 xs:any 요소만 있으면 true이고, 그렇지 않으면 false입니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드의 이름과 해당 XML 스키마 데이터 형식의 이름을 가져옵니다. + XML 스키마를 반환하기 위해 XML 인프라에서 호출하는 메서드의 이름입니다. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..800bf63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml @@ -0,0 +1,2600 @@ + + + + System.Xml.ReaderWriter + + + + Задает количество проверок ввода-вывода, которые выполняют объекты и . + + + Объект или автоматически определяет, проверять ли весь документ или фрагмент документа, и выполняет соответствующую проверку.В случае использования программы-оболочки для другого объекта или внешний объект не выполняет никаких дополнительных проверок на соответствие.Проверка на соответствие выполняется базовым объектом.Сведения об определении уровня соответствия см. в описании свойств и . + + + Данные XML соответствуют правилам для XML-документов версии 1.0 с правильным форматом в соответствии с определением консорциума W3C. + + + Данные XML являются XML-фрагментом с правильным форматом в соответствии с определением консорциума W3C. + + + Задает параметры обработки DTD.Перечисление используется классом . + + + Элемент DOCTYPE будет проигнорирован.Обработка DTD выполнена не будет. + + + Указывает, что при обнаружении DTD будет создано исключение с сообщением о том, что DTD запрещены.Это поведение установлено по умолчанию. + + + Предоставляет интерфейс, позволяющий классу возвращать информацию о строке и положении в ней. + + + Возвращает значение, определяющее возможность возвращения классом сведений о строке. + Значение true, если могут быть предоставлены свойства и , в противном случае — false. + + + Получает текущий номер строки. + Номер текущей строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Получает текущее положение строки. + Текущее положение строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Предоставляет доступ только для чтения к набору сопоставлений префиксов и пространств имен. + + + Получает коллекцию определенных соответствий префиксов и пространств имен, которые в настоящий момент находятся в области. + Объект , содержащий все текущие пространства имен в области. + С помощью значения указывается тип узлов пространства имен, которые следует возвратить. + + + Получает универсальный код ресурса (URI) пространства имен, соответствующий заданному префиксу. + URI пространства имен, сопоставленное с префиксом; null, если префикс не сопоставлен с URI пространства имен. + Префикс, URI пространства имен которого нужно найти. + + + Получает префикс, соответствующий заданному универсальному коду ресурса (URI) пространства имен. + Префикс, сопоставленный URI пространства имен; null если URI пространства имен не сопоставлено с префиксом. + URI пространства имен, префикс которого нужно найти. + + + Указывает, нужно ли удалять дубликаты объявлений в объекте . + + + Указывает, что удалять дубликаты объявлений не будут удалены. + + + Указывает, что дубликаты объявлений будут удалены.Чтобы дубликат пространства имен был удален, должны совпадать префиксы пространств имен. + + + Реализует однопотоковый объект . + + + Инициализирует новый экземпляр класса NameTable. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий добавляемую строку. + Отсчитываемый от нуля индекс в массиве, задающий первый символ строки. + Количество знаков в строке. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable. + Строка для добавления. + Параметр имеет значение null. + + + Получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в данном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Получает атомизированную строку с заданным значением. + Объект атомизированной строки или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает способ обработки разрывов строк. + + + Символы новой строки преобразовываются.Благодаря этому параметру сохраняются все символы, когда результат читается нормализующим считывателем . + + + Символы новой строки не меняются.Выходные данные совпадают со входными. + + + Знаки новой строки заменяются для обеспечения соответствия со знаком, указанным в свойстве . + + + Задает состояние читателя. + + + Вызван метод . + + + Конец файла успешно достигнут. + + + Произошла ошибка, препятствующая продолжению операции чтения. + + + Метод Read не был вызван. + + + Вызван метод Read.Для читателя можно вызвать дополнительные методы. + + + Задает состояние объекта . + + + Указывает, что значение атрибута записывается. + + + Указывает, что был вызван метод . + + + Указывает, что содержимое элемента записывается. + + + Указывает, что открывающий тег элемента записывается. + + + Было сгенерировано исключение, которое оставило объект в недопустимом состоянии.Можно вызвать метод , чтобы перевести объект в состояние .Вызов любого другого метода приведет к созданию исключения . + + + Указывает, что пролог записывается. + + + Указывает, что метод Write еще не вызван. + + + Кодирует и декодирует имена XML и предоставляет методы для преобразования между типами общеязыковой среды выполнения и типами языков определения схем XML (XSD).При преобразовании типов данных возвращаемые значения не зависят от языкового стандарта. + + + Декодирует имя.Этот метод изменяет действие методов и на обратное. + Декодированное имя. + Преобразуемое имя. + + + Преобразует имя в допустимое локальное имя XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует имя в допустимое имя XML. + Возвращает имя с любыми недопустимыми знаками, замещенными escape-строкой. + Преобразуемое имя. + + + Проверяет допустимость имени на соответствие со спецификацией XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует в эквивалент . + Значение Boolean равно true или false. + Преобразуемая строка. + + is null. + + does not represent a Boolean value. + + + Преобразует в эквивалент . + Эквивалент строки Byte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Значение Char, представляющее отдельный знак. + Строка, содержащая отдельный преобразуемый знак. + The value of the parameter is null. + The parameter contains more than one character. + + + Преобразует в с помощью указанного + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, следует ли преобразовывать данные в локальное время или сохранять их во времени в формате UTC, если дата в формате UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка.Примечание.   Строка должна соответствовать подмножеству в соответствии с рекомендацией W3C для типа XML dateTime.Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Формат, из которого преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по этому формату. + + is null. + + or is an empty string or is not in the specified format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Массив форматов, из которого можно преобразовать параметр .Каждый формат в параметре может быть любым подмножеством в соответствии с рекомендациями консорциума W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по одному из этих форматов. + + + Преобразует в эквивалент . + Эквивалент строки Decimal. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Double. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Guid. + Преобразуемая строка. + + + Преобразует в эквивалент . + Эквивалент строки Int16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки SByte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Single. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует объект в значение типа . + Строковое представление Boolean, то есть true или false. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Byte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Char. + Преобразуемое значение. + + + Преобразует объект в объект с помощью заданного значения . + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, как следует обрабатывать значение . + The value is not valid. + The or value is null. + + + Преобразует предоставленную структуру в объект . + Представление для предоставленной структуры . + Преобразуемая структура . + + + Преобразует предоставленную структуру в объект в указанном формате. + Представление в указанном формате предоставленной структуры . + Преобразуемая структура . + Формат, в который преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Преобразует объект в значение типа . + Строковое представление объекта Decimal. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Double. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Guid. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int64. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта SByte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Single. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта TimeSpan. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt64. + Преобразуемое значение. + + + Преобразует в эквивалент . + Эквивалент строки TimeSpan. + Преобразуемая строка.Формат строки должен соответствовать рекомендации по продолжительности в зависимости от типа данных W3C XML-схемы (часть 2). + + is not in correct format to represent a TimeSpan value. + + + Преобразует в эквивалент . + Эквивалент строки UInt16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Проверяет допустимость имени в соответствии с рекомендацией W3C XML. + Имя, если это допустимое имя XML. + Имя для проверки. + + is not a valid XML name. + + is null or String.Empty. + + + Проверяет, что имя является допустимым именем NCName в соответствии с рекомендациями по XML консорциума W3C.NCName — это имя, которое не может содержать двоеточия. + Указанное имя не является допустимым именем NCName. + Имя для проверки. + + is null or String.Empty. + + is not a valid non-colon name. + + + Проверяет, является ли строка допустимым NMTOKEN, в соответствии с рекомендацией по типам данных W3C XML-схемы (часть 2). + Токен имени, если это допустимый NMTOKEN. + Строка, которую следует проверить. + The string is not a valid name token. + + is null. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками открытых идентификаторов. + Возвращает переданную строку, если все знаки в аргументе являются допустимыми знаками открытых идентификаторов. + Объект , содержащий идентификатор для проверки. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями. + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями; в противном случае возвращает значение null. + Объект для проверки. + + + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Объект , содержащий знаки для проверки. + + + Определяет способ обработки значения времени при преобразовании между строками и объектами . + + + Обрабатывать как местное время.Если объект представляет время в формате UTC, оно будет преобразовано в местное время. + + + Данные о часовом поясе необходимо сохранять при преобразовании. + + + Обрабатывать как местное время, если объект преобразовывается в строку. + + + Обрабатывать как время в формате UTC.Если объект представляет местное время, оно будет преобразовано во время в формате UTC. + + + Подробные сведения о последнем исключении. + + + Инициализирует новый экземпляр класса XmlException. + + + Инициализирует новый экземпляр класса XmlException, используя указанное сообщение об ошибке. + Описание ошибки. + + + Инициализирует новый экземпляр класса XmlException. + Описание условий возникновения ошибки. + + , породивший XmlException (при наличии).Это значение может быть равно null. + + + Инициализирует новый экземпляр класса XmlException, используя заданное сообщение, внутреннее исключение, номер строки и позицию в строке. + Описание ошибки. + Исключение, которое вызвало текущее исключение.Это значение может быть равно null. + Номер строки, показывающий, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает номер строки, показывающий, где произошла ошибка. + Номер строки, показывающий, где произошла ошибка. + + + Получает размещение строки, показывающее, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает сообщение, которое описывает текущее исключение. + Сообщение об ошибке с объяснением причин исключения. + + + Разрешает, добавляет и удаляет пространства имен из коллекции и обеспечивает управление областью для этих пространств имен. + + + Выполняет инициализацию нового экземпляра класса с заданным объектом . + Используемый . + null is passed to the constructor + + + Добавляет заданное пространство имен в коллекцию. + Префикс, который требуется связать с добавляемым пространством имен.Используйте String.Empty для добавления пространства имен по умолчанию.Примечание.Если объект будет использоваться для разрешения пространств имен в выражении языка XPath, необходимо указать префикс.Если выражение XPath не содержит префикс, предполагается, что универсальным кодом ресурса (URI) для пространства имен является пустое пространство имен.Дополнительные сведения о выражениях языка XPath и см. в разделах с описанием методов и . + Добавляемое пространство имен. + The value for is "xml" or "xmlns". + The value for or is null. + + + Возвращает универсальный код ресурса (URI) для пространства имен по умолчанию. + Возвращает URI для пространства имен по умолчанию или String.Empty, если пространство имен по умолчанию отсутствует. + + + Возвращает перечислитель для выполнения итерации по пространствам имен в объекте . + Перечислитель , содержащий префиксы, которые хранятся объектом . + + + Возвращает коллекцию пространств имен, уникальными идентификаторами которых являются префиксы, используемые для перечисления пространств имен в текущей области видимости. + Коллекция пар префикс-пространство имен в текущей области видимости. + Значение перечисления, указывающее тип узлов пространств имен, которые требуется возвратить. + + + Возвращает значение, указывающее, определено ли пространство имен для указанного префикса в текущей области видимости, занесенной в стек. + Значение true, если пространство имен определено; в противном случае — значение false. + Префикс пространства имен, которое нужно найти. + + + Возвращает URI пространства имен для указанного префикса. + Возвращает универсальный код ресурса (URI) пространства имен для префикса или значение null, если нет сопоставленного пространства имен.Возвращаемая строка является атомизированной.Дополнительные сведения об атомизированных строках см. в описании класса . + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать String.Empty. + + + Находит префикс, объявленный для заданного URI пространства имен. + Соответствующий префикс.Если нет сопоставленного префикса, данный метод возвращает String.Empty.Если предоставляется значение NULL, возвращается то же значение null. + Пространство имен, которое необходимо разрешить для получения префикса. + + + Получает , связанную с данным объектом. + + , используемая данным объектом. + + + Извлекает из стека область видимости пространства имен. + Значение true, если в стеке остались области пространств имен; значение false, если больше нет пространств имен, которые требуется извлечь. + + + Заносит область видимости пространства имен в стек. + + + Удаляет заданное пространство имен с указанным префиксом. + Префикс пространства имен. + Пространство имен, которое требуется удалить по указанному префиксу.Пространство имен удаляется из текущей области видимости пространств имен.Пространства имен вне текущей области видимости игнорируются. + The value of or is null. + + + Определяет область пространства имен. + + + Все пространства имен, определенные в области текущего узла.Сюда входит пространство xmlns:xml, всегда объявляемое неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные в области текущего узла, кроме пространства xmlns:xml, всегда объявляемого неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные локально для текущего узла. + + + Таблица атомизированных объектов строки. + + + Инициализирует новый экземпляр класса . + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется.Если параметр length имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий добавляемое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется. + Добавляемое имя. + Параметр имеет значение null. + + + При переопределении в производном классе получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в заданном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если параметр имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе получает атомизированную строку, содержащую то же значение, что и заданная строка. + Атомизированная строка или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает типа узла. + + + Атрибут (например, id='123' ). + + + Раздел CDATA (например, <![CDATA[my escaped text]]>). + + + Комментарий (например, <!-- my comment --> ). + + + Объект документа, являющийся корневым элементом дерева документов, предоставляет доступ ко всему XML-документу. + + + Фрагмент документа. + + + Объявление типа документа, обозначенное следующим тегом (например, <!DOCTYPE...>). + + + Элемент (например, <item>). + + + Тег конечного элемента (например, </item>). + + + Возвращается, когда объект XmlReader доходит до конца замены сущности в результате вызова . + + + Объявление сущности (например, <!ENTITY...>). + + + Ссылка на сущность (например, &num;). + + + Возвращается объектом , если не был вызван метод Read. + + + Нотация в объявлении типа документа (например, <!NOTATION...>). + + + Инструкция по обработке (например, <?pi test?>). + + + Пробел между элементами разметки в смешанной модели содержимого или пробел в области xml:space="preserve". + + + Текстовое содержимое узла. + + + Пробел между разметкой. + + + Объявление XML (например, <?xml version='1.0'?>). + + + Предоставляет все контекстные данные, необходимые для анализа фрагмента XML. + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.Набор DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang, кодировки и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью заданных значений , , xml:lang и xml:space. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , xml:lang, xml:space и кодировки. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Получает или задает базовый URI. + Базовый URI, используемый для разрешения файла DTD. + + + Получает или задает имя объявления типа документа. + Имя объявления типа документа. + + + Получает или задает тип кодировки. + Объект , показывающий тип кодировки. + + + Получает или задает внутренний набор DTD. + Внутренний набор DTD.Например, данное свойство возвращает содержимое между квадратными скобками <!DOCTYPE doc [...]>. + + + Получает или задает объект . + XmlNamespaceManager. + + + Получает класс , используемый для разъединения строк.Дополнительные сведения о разъединенных строках см. в разделе . + XmlNameTable. + + + Получает или задает открытый идентификатор. + Открытый идентификатор. + + + Получает или задает идентификатор системы. + Идентификатор системы. + + + Получает или задает текущую область xml:lang. + Текущая ограниченная область действия xml:lang.Если в области отсутствует xml:lang, возвращается значение String.Empty. + + + Получает или задает текущую область xml:space. + Значение , показывающее область xml:space. + + + Представляет полное имя XML. + + + Инициализирует новый экземпляр класса . + + + Инициализирует новый экземпляр класса с указанным именем. + Локальное имя, используемое в качестве имени объекта . + + + Инициализирует новый экземпляр класса с заданными именем и пространством имен. + Локальное имя, используемое в качестве имени объекта . + Пространство имен для объекта . + + + Предоставляет пустое полное имя . + + + Определяет, равен ли заданный объект текущему объекту . + Значение true, если оба объекта являются одним и тем же объектом экземпляра; в противном случае — значение false. + Объект для сравнения. + + + Возвращает хэш-код для . + Хэш-код объекта. + + + Получает значение, определяющее, пуст ли объект . + Значение true, если имя и пространство имен представляют собой пустые строки; в противном случае — значение false. + + + Получает строковое представление полного имени объекта . + Строковое представление полного имени или String.Empty, если для объекта не определено имя. + + + Получает строковое представление пространства имен для объекта . + Строковое представление пространства имен или String.Empty, если для объекта не определено пространство имен. + + + Сравнивает два объекта . + Значение true, если у двух объектов совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Сравнивает два объекта . + Значение true, если у двух объектов не совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + Имя объекта. + Пространство имен объекта. + + + Предоставляет средство чтения, обеспечивающее быстрый прямой доступ (без кэширования) к данным XML.Чтобы просмотреть исходный код .NET Framework для этого типа, см. ссылки на источник. + + + Инициализирует новый экземпляр класса XmlReader. + + + Когда переопределено в производном классе, возвращает количество атрибутов текущего узла. + Количество атрибутов текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает базовый URI текущего узла. + Базовый URI текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает значение, указывающее, реализует ли объект методы чтения двоичного содержимого. + Значение true, если реализуются методы чтения двоичного содержимого; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, указывающее, реализует ли объект метод . + Значение true, если объект реализует метод ; в противном случае false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, способно ли данное средство чтения выполнять синтаксический анализ и разрешение сущностей. + Значение true, если средство чтения позволяет анализировать и разрешать объекты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Создает новый с помощью указанного потока с параметрами по умолчанию. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + + + Создает новый экземпляра с параметрами и указанного потока. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанные сведения о потоке, параметры и контекст для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра с помощью модуля чтения указанного текста. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средство чтения XML для декодирования потока данных. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения и параметры. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового .Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения, параметры и контекст сведения для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + Значения присвоены как свойству , так и свойству .(Только одно из этих свойств NameTable можно установить и использовать). + + + Создает новый экземпляр с указанным URI. + Объект, используемый для чтения XML-данных в потоке. + URI для файла, содержащего XML-данные.Класс используется для преобразования пути к классическому формату данных. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + Файл, указанный URI, не существует. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанный URI и параметры. + Объект, используемый для чтения XML-данных в потоке. + URI файла с XML-данными.Объект в объекте используется для преобразования пути в стандартный формат данных.Если равно null, используется объект . + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + Не удается найти файл, заданный URI. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанное средство чтения XML и параметры. + Объект, который заключается в оболочку вокруг указанного объекта. + Объект, который требуется использовать в качестве базового средства чтения XML. + Параметры для нового экземпляра.Уровень соответствия объекта должен или быть равным уровню соответствия базового средства чтения, или иметь значение . + Значение параметра — null. + Если объект задает уровень соответствия, который не согласован с уровнем соответствия базового средства чтения.-или-Базовый объект находится в состоянии или . + + + Когда переопределено в производном классе, возвращает глубину текущего узла в XML-документе. + Глубина текущего узла в XML-документе. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + trueЧтобы освободить управляемые и неуправляемые ресурсы; false чтобы освободить только неуправляемые ресурсы. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, показывающее, позиционировано ли средство чтения в конец потока. + Значение true, если средство чтения установлено в конец потока; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута.Этот метод не изменяет позицию средства чтения. + Индекс атрибута.Индексация начинается с нуля.(Индекс первого атрибута равен нулю.) + + выходит за пределы допустимого диапазона.Оно должно быть неотрицательным и меньшим, чем размер коллекции атрибутов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null. + Полное имя атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null.Этот метод не изменяет позицию средства чтения. + Локальное имя атрибута. + URI пространства имен атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно возвращает значение текущего узла. + Значение текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Возвращает значение, показывающее, имеются ли атрибуты у текущего узла. + Значение true, если текущий узел содержит атрибуты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, показывающее, имеет ли текущий узел свойство . + Значение true, если узел, на котором расположено средство чтения, может иметь значение Value; в противном случае — false.Если значение равно false, узел принимает значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, определяющее, является ли текущий узел атрибутом, созданным из значения по умолчанию, определенного в DTD или схеме. + Значение true, если текущий узел является атрибутом, значение которого было создано из значения по умолчанию, определенного в DTD или схеме; значение false, если значение атрибута было задано явно. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, определяющее, является ли текущий узел пустым элементом (например, <MyElement/>). + Значение true, если текущий узел является элементом (свойство имеет значение XmlNodeType.Element), который заканчивается на />; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым именем XML. + Значение true, если имя является допустимым; в противном случае — false. + Имя для проверки. + Значение параметра — null. + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым токеном имени XML. + Значение true, если аргумент является допустимой лексемой имени; в противном случае — false. + Токен имени для проверки. + Значение параметра — null. + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента. + Значение true, если метод находит открывающий тег или пустой тег элемента; значение false, если тип найденного узла отличается от XmlNodeType.Element. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствует ли значение свойства элемента заданному аргументу. + Значение true, если полученный в результате узел является элементом, а свойство Name совпадает с указанной строкой.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойство Name элемента не совпадает с указанной строкой. + Строка противопоставляется значению свойства Name найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствуют ли значения свойств и элемента заданным строкам. + Значение true, если полученный в результате узел является элементом.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойства LocalName и NamespaceURI элемента не совпадают с указанными строками. + Строка, которая противопоставляется значению свойства LocalName найденного элемента. + Строка, которая противопоставляется значению свойства NamespaceURI найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает локальное имя текущего узла. + Имя текущего узла с удаленным префиксом.Например, LocalName имеет значение book для элемента <bk:book>.Для безымянных типов узлов (например, Text, Comment и т. д.) данное свойство возвращает String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, разрешает префикс пространства имен в области видимости текущего элемента. + URI пространства имен, которое отображает префикс, или значение null, если соответствующий префикс не найден. + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать пустую строку. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к атрибуту с указанным индексом. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр имеет отрицательное значение. + + + При переопределении в производном классе перемещает к атрибуту с указанным . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + При переопределении в производном классе перемещает к атрибуту с указанными и . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Проверяет, является ли текущий узел узлом содержимого (текст без пустого пространства, CDATA, Element, EndElement, EntityReference или EndEntity).Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла.Пропускаются узлы следующих типов: ProcessingInstruction, DocumentType, Comment, Whitespace и SignificantWhitespace. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + В асинхронном режиме проверяет, является ли текущий узел узлом содержимого.Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, переходит к элементу, содержащему текущий узел атрибута. + Значение true, если средство чтения находится на атрибуте (средство чтения перемещается к элементу с этим атрибутом); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к первому атрибуту. + Значение true, если атрибут существует (средство чтения перемещается к первому атрибуту); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к следующему атрибуту. + Значение true, если присутствует следующий атрибут; значение false, если другие атрибуты отсутствуют. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает полное имя текущего узла. + Полное имя текущего узла.Например, Name имеет значение bk:book для элемента <bk:book>.Возвращаемое имя зависит от значения свойства узла.Значения возвращаются для представленных ниже типов узлов.Для других типов узлов возвращается пустая строка.Тип узла Имя AttributeИмя атрибута. DocumentTypeИмя типа документа. ElementИмя тега. EntityReferenceИмя сущности, на которую существует ссылка. ProcessingInstructionКонечное приложение инструкции обработки. XmlDeclarationСтрока символов xml. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает URI пространства имен (определенное в спецификации W3C Namespace) узла, на котором расположено средство чтения. + Пространство имен URI текущего узла; в противном случае — пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает класс , связанный с данной реализацией. + Класс XmlNameTable, позволяющий получать в узле разделенную версию строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает тип текущего узла. + Одно из значений перечисления, которые задают тип текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает префикс пространства имен, связанный с текущим узлом. + Префикс пространства имен, связанный с текущим узлом. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе считывает следующий узел из потока. + trueЕсли чтение прошло успешно. в противном случае — false. + При синтаксическом анализе XML возникла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает следующий узел из потока. + Значение true, если чтение прошло успешно; значение false, если отсутствуют узлы для чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разбирает значение атрибута в один или более узлов Text, EntityReference или EndEntity. + Значение true, если присутствуют возвращаемые узлы.Значение false, если средство чтения не расположено на узле атрибута при первом вызове или все значения атрибута считаны.Пустой атрибут (например, misc="") возвращает значение true с отдельным узлом, имеющим значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое объекта указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов.Например, этот объект можно использовать при преобразовании объекта в xs:string.Данное значение может быть null. + Содержимое имеет неверный формат для типа целевого объекта. + Недопустимая попытка приведения. + Значение параметра — null. + Текущий узел не принадлежит к поддерживаемому типу узлов.Дополнительные сведения приведены в таблице ниже. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое как объект указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает декодированные из кодировки Base64 двоичные байты. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущей позиции как значение Boolean. + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Содержимое текста в текущей позиции как объект . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как число с плавающей запятой двойной точности. + Текстовое содержимое в виде числа с плавающей запятой двойной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 32-разрядное целое число со знаком. + Содержимое как 32-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 64-разрядное целое число со знаком. + Содержимое как 64-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как значение . + Текстовое содержимое как самый подходящий объект CLR. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое как самый подходящий объект CLR. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое элемента в качестве требуемого типа. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает содержимое элемента как требуемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое элемента как запрашиваемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой двойной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 32-разрядного целого числа со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 32-разрядное целое число со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 64-разрядного целого числа со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 64-разрядное целое число со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Прочитывает текущий элемент и возвращает содержимое в качестве объекта . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента невозможно преобразовать в запрошенный тип. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел содержимого закрывающим тегом, и позиционирует средство чтения на следующий узел. + Текущий узел не является закрывающим тегом или если во входном потоке обнаружен неверный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, считывает как строку все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка.Если текущий узел не является элементом или атрибутом, возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает в виде строки все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, считывает содержимое, включая разметку, представляющую этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое, включая разметку, представляющее этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел элементом и перемещает модуль чтения к следующему узлу. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным , и перемещает средство чтения на следующий узел. + Полное имя элемента. + В входном потоке обнаружен неправильный XML. -или- элемента не соответствует заданному . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным и , и перемещает средство чтения на следующий узел. + Локальное имя элемента. + Пространство имен URI элемента. + В входном потоке обнаружен неправильный XML.-или-Свойства и найденного элемента не совпадают с предоставленными аргументами. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает состояние средства чтения. + Одно из значений перечисления, указывающее состояние модуля чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает новый экземпляр XmlReader, который может использоваться для считывания текущего узла и всех его потомков. + Установить новый экземпляр средства чтения XML .Вызов метод помещает новый модуль чтения на узел, который был текущим перед вызовом метод. + XML чтения не позиционировано на элементе при вызове этого метода. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Переводит к следующему сопоставленному элементу-потомку с указанным проверенным именем. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Полное имя элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит к следующему элементу-потомку с указанным локальным именем и URI пространства имен. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Локальное имя элемента, на который следует переместиться. + URI пространства имен элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Выполняет чтение до обнаружения элемента с указанным полным именем. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Полное имя элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Выполняет чтение до обнаружения указанных локального имени и URI пространства имен. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Локальное имя элемента. + Пространство имен URI элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Переводит XmlReader к следующему сопоставленному родственному элементу с указанным проверенным именем. + true, если найден сопоставленный родственный элемент; в противном случае — false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Полное имя элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит XmlReader к следующему родственному элементу с указанным локальным именем и URI пространства имен. + Значение true, если найден сопоставленный родственный элемент; в противном случае — значение false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Локальное имя элемента того же уровня, на который следует переместиться. + Универсальный код ресурса (URI) пространства имен элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + У текущего узла нет значения (значение свойства — false). + Значение параметра — null. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Данные XML имеют неправильный формат. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разрешает ссылки для сущностей для узлов EntityReference. + Средство чтения не расположено на узле EntityReference; эта реализация средства чтения не может разрешить сущности (свойство возвращает значение false). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает объект , используемый для создания данного экземпляра . + Объект , использованный для создания этого экземпляра средства чтения.Если это средство чтения не было создано с помощью метода , это свойство возвращает null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Пропускает дочерний узел текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно пропускает дочерние узлы текущего узла. + Текущий узел. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, возвращает текстовое значение текущего узла. + Возвращаемое значение зависит от значения свойства узла.В следующей таблице представлен список возвращаемых типов узлов со значениями.Все прочие типы узлов возвращают значение String.Empty.Тип узла Значение AttributeЗначение атрибута. CDATAСодержимое раздела CDATA. CommentСодержимое комментария. DocumentTypeВнутреннее подмножество. ProcessingInstructionПолное содержимое, исключая конечное приложение. SignificantWhitespaceПустое пространство в разметке модели со смешанным содержимым. TextСодержимое текстового узла. WhitespaceПустое пространство между разметкой. XmlDeclarationСодержимое объявления. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает тип CLR текущего узла. + Тип CLR, соответствующий типизированному значению узла.Значение по умолчанию — System.String. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:space. + Одно из значений .Если ограниченная область действия xml:space отсутствует, данное свойство принимает значение XmlSpace.None. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Задает набор функций, которые должны поддерживаться объектом , создаваемым с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если могут использоваться асинхронные методы; в противном случае — значение false. + + + Возвращает или задает значение, показывающее, осуществляется ли проверка символов. + Значение true — проверка осуществляется; в противном случае — false.Значение по умолчанию — true.ПримечаниеЕсли средство чтения обрабатывает текстовые данные, всегда происходит проверка допустимости XML-имен и текстового содержимого независимо от значения этого свойства.Задание свойству значения false отключает проверку символов для ссылок на сущности символов. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли закрыть основной поток или при закрытии средства чтения. + Значение true — закрыть основной поток или при закрытии средства чтения; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия для . + Одно из значений перечисления, указывающее уровень совместимости, который будет обеспечивать средства чтения XML.Значение по умолчанию — . + + + Получает или задает значение, определяющее обработку определений DTD. + Одно из значений перечисления, которое определяет обработку DTD.Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли игнорировать комментарии. + true — игнорировать комментарии; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, указывающее, следует ли игнорировать инструкции по обработке. + true — игнорировать инструкции обработки; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, определяющее, будут ли игнорироваться незначимые символы-разделители. + Значение true, если пустое пространство будет игнорироваться; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает смещение номера строки объекта . + Смещение номера строки.Значение по умолчанию — 0. + + + Возвращает или задает смещение позиции строки объекта . + Смещение позиции строки.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое количество символов в документе, которые возникают вследствие расширения сущностей. + Наибольшее количество символов вследствие расширения сущностей.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое число символов в XML-документе.Нуль (0) означает отсутствие ограничений на размер XML-документа.Значение, не равное нулю, указывает максимальное количество символов. + Максимально допустимое количество символов в XML-документе.Значение по умолчанию — 0. + + + Возвращает или задает таблицу , используемую для разделенных сравнений строк. + Таблица , в которой хранятся все разделенные строки, используемые экземплярами , созданными с помощью объекта .Значение по умолчанию — null.Созданный экземпляр будет использовать новую пустую таблицу , если это значение будет равно null. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Задает текущую область xml:space. + + + Область xml:space соответствует значению default. + + + Нет области xml:space. + + + Область xml:space соответствует значению preserve. + + + Представляет средство записи, обеспечивающее быстрый прямой способ (без кэширования) создания потоков или файлов, содержащих XML-данные. + + + Инициализирует новый экземпляр класса . + + + Создает новый экземпляр с использованием указанного потока. + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + The value is null. + + + Создает новый экземпляр с помощью потока и объекта . + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + + , в которое необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + + , в который необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного объекта . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + The value is null. + + + Создает новый экземпляр с использованием указанных объектов и . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + Значение true позволяет освободить управляемые и неуправляемые ресурсы; значение false позволяет освободить только неуправляемые ресурсы. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, сохраняет в базовый поток содержимое буфера, а также сохраняет основной поток. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает в базовый поток содержимое буфера и сохраняет базовый поток. + Задача, представляющая асинхронную операцию Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает ближайший префикс, определенный в области видимости текущего пространства имен для URI пространства имен. + Соответствующий префикс или значение null, если в текущей области отсутствует соответствующий URI пространства имен. + URI пространства имен, префикс которого нужно найти. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Получает объект , используемый для создания данного экземпляра . + Объект , используемый для создания этого экземпляра модуля записи.Если это средство записи не было создано с помощью метода , это свойство возвращает null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе записывает все атрибуты, найденные в текущей позиции в объекте . + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает все атрибуты, найденные в текущей позиции в объекте . + Задача, представляющая асинхронную операцию WriteAttributes. + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем и значением. + Локальное имя атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем, URI пространства имен и значением. + Локальное имя атрибута. + URI пространства имен, который связывается с атрибутом. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным префиксом, локальным именем, URI пространства имен и значением. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает атрибут с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteAttributeString. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Задача, представляющая асинхронную операцию WriteBase64. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе преобразует указанный набор двоичных байтов как BinHex и выводит получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно кодирует указанные двоичные байты как BinHex и выводит получившийся текст. + Задача, представляющая асинхронную операцию WriteBinHex. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает блок <![CDATA[...]]>, содержащий заданный текст. + Текст, записываемый в блок CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает блок <![CDATA[...]]>, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteCData. + Текст, записываемый в блок CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вызывает создание сущности знака для указанного значения знака Юникода. + Знак Юникода, для которого создается сущность знака. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно инициирует создание сущности знака для указанного значения знака Юникода. + Задача, представляющая асинхронную операцию WriteCharEntity. + Знак Юникода, для которого создается сущность знака. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает содержимое текстового буфера. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает содержимое текстового буфера. + Задача, представляющая асинхронную операцию WriteChars. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает примечание <!--...-->, содержащее заданный текст. + Текст, записываемый в примечание. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает комментарий <!--...-->, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteComment. + Текст, записываемый в примечание. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Задача, представляющая асинхронную операцию WriteDocType. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает элемент с заданным локальным именем и значением. + Локальное имя элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным локальным именем, URI пространства имен и значением. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным префиксом, локальным именем, универсальный кодом ресурса (URI) пространства имен и значением. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает элемент с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteElementString. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе закрывает предыдущий вызов . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает предыдущий вызов . + Задача, представляющая асинхронную операцию WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + Задача, представляющая асинхронную операцию WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе записывает ссылку на сущность в виде &name;. + Имя ссылки на сущность. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает ссылку на сущность в виде &name;. + Задача, представляющая асинхронную операцию WriteEntityRef. + Имя ссылки на сущность. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteName. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя допустимость NmToken согласно рекомендациям W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя, что это допустимый NmToken, согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteNmToken. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Задача, представляющая асинхронную операцию WriteNode. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Задача, представляющая асинхронную операцию WriteProcessingInstruction. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Локальное имя для записи. + URI пространства имен для имени. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Задача, представляющая асинхронную операцию WriteQualifiedName. + Локальное имя для записи. + URI пространства имен для имени. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вручную записывает из буфера символов необработанные данные для разметки . + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, вручную записывает из строки необработанные данные для разметки. + Строка, содержащая текст для записи. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно, вручную записывает для разметки необработанные данные из буфера символов. + Задача, представляющая асинхронную операцию WriteRaw. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно, вручную записывает необработанные данные для разметки. + Задача, представляющая асинхронную операцию WriteRaw. + Строка, содержащая текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает начало атрибута с заданным локальным именем. + Локальное имя атрибута. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает начало атрибута с заданным локальным именем и URI пространства имен. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает начало атрибута с указанным префиксом, локальным именем и URI пространства имен. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает начало атрибута с заданным префиксом, локальным именем и универсальным кодом ресурса (URI) пространства имен. + Задача, представляющая асинхронную операцию WriteStartAttribute. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0" и отдельным атрибутом. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление XML с номером версии "1.0". + Задача, представляющая асинхронную операцию WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно записывает объявление XML с номером версии "1.0". и отдельным атрибутом. + Задача, представляющая асинхронную операцию WriteStartDocument. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает открывающий тег с указанным локальным именем. + Локальное имя элемента. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен. + Локальное имя элемента. + URI пространства имен, связываемый с элементом.Если пространство имен уже находится в области видимости и с ним связан префикс, средство записи автоматически запишет этот префикс. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Задача, представляющая асинхронную операцию WriteStartElement. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает состояние средства записи. + Одно из значений . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает заданное текстовое содержимое при переопределении в производном классе. + Текст для записи. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает заданное текстовое содержимое. + Задача, представляющая асинхронную операцию WriteString. + Текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, создает и записывает сущность символа-заместителя для пары символов-заместителей. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно создает и записывает сущность символа-заместителя для пары символов-заместителей. + Задача, представляющая асинхронную операцию WriteSurrogateCharEntity. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение объекта. + Значение объекта для записи.Примечание.   С выпуском платформы .NET Framework 3.5 этот метод принимает в качестве параметра. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает число с плавающей запятой одиночной точности. + Число с плавающей запятой одиночной точности для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный символ-разделитель. + Строка символов-разделителей. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный символ-разделитель. + Задача, представляющая асинхронную операцию WriteWhitespace. + Строка символов-разделителей. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе возвращает класс , предоставляющий текущую область xml:space. + Объект XmlSpace, представляющий текущую область xml:space.Значение Значение NoneЗначение, задаваемое по умолчанию, если область xml:space отсутствует.DefaultТекущая область — xml:space=default.PreserveТекущая область — xml:space=preserve. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Задает набор функций, которые должны поддерживаться объектом , созданным с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если асинхронные методы можно использовать; в противном случае — значение false. + + + Получает или задает значение, указывающее, должно ли средство записи XML выполнять проверку на предмет соответствия всех в документе разделу "2.2 Символы" документа W3C Рекомендации по XML 1.0. + Значение true для выполнения проверки символов; в противном случае — значение false.Значение по умолчанию — true. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли объекту закрывать также и базовый поток или при вызове метода . + Значение true, если следует закрыть базовый поток или ; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия, на предмет которого средство записи XML проверяет выходные данные XML. + Одно из значений перечисления, указывающее уровень соответствия (документ, фрагмент или автоматическое обнаружение).Значение по умолчанию — . + + + Возвращает или задает тип используемой кодировки текста. + Используемая кодировка текста.Значение по умолчанию — Encoding.UTF8. + + + Возвращает или задает значение, указывающее, следует ли использовать отступ для элементов. + Значение true, если необходимо записывать отдельные элементы в новых строках с отступом; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает строку символов, используемую для отступов.Этот параметр используется, если значение свойства равно true. + Строка символов, используемая для отступов.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.По умолчанию - два пробела. + The value assigned to the is null. + + + Получает или задает значение, указывающие, должен ли объект при записи содержимого XML удалять дубликаты объявлений пространств имен.По умолчанию средство записи выводит все объявления пространства имен, присутствующие в его сопоставителе пространства имен. + Перечисление , которое указывает, нужно ли удалять дубликаты объявлений пространств имен в объекте . + + + Возвращает или задает строку символов, используемую для разрыва строк. + Строка символов, используемая для разрыва строк.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.Значение по умолчанию — \r\n (возврат каретки, новая строка). + The value assigned to the is null. + + + Возвращает или задает значение, указывающее, следует ли осуществлять нормализацию разрывов строк в выходных данных. + Одно из значений .Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли записывать атрибуты на новой строке. + Значение true, если необходимо записывать атрибуты в отдельные строки; в противном случае — значение false.Значение по умолчанию — false.ПримечаниеЭтот параметр ни на что не влияет, если значение свойства равно false.Если значение объекта равно true, каждому атрибуту предшествует новая строка и дополнительный уровень отступа. + + + Возвращает или задает значение, определяющее, следует ли опустить XML-объявление. + Значение true, если необходимо пропустить XML-объявление; в противном случае — значение false.Значением по умолчанию является false; XML-объявление записывается. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Получает или задает значение, указывающее, добавляет ли закрывающие теги ко всем незакрытым тегам элементов при вызове метода . + Значение true, если все незакрытые теги элементов будут закрыты; в противном случае — значение false.Значение по умолчанию — true. + + + Встроенное представление схемы XML, как указано в спецификациях консорциума W3C Схема XML. Часть 1: структуры и Схема XML. Часть 2: типы данных. + + + Указывает, требуется ли префикс пространства имен для атрибутов или элементов. + + + Форма элемента и атрибута не указана в схеме. + + + Для элементов и атрибутов необходим префикс пространства имен. + + + Префикс пространства имен для элементов и атрибутов не требуется. + + + Предоставляет пользовательский формат для сериализации и десериализации XML. + + + Этот метод является зарезервированным, и его не следует использовать.При реализации интерфейса IXmlSerializable этот метод должен возвращать значение null (Nothing в Visual Basic), а если необходимо указать пользовательскую схему, то вместо использования метода следует применить к классу. + + , описывающая представление XML объекта, полученного из метода и включенного в метод . + + + Создает объект из представления XML. + Поток , из которого выполняется десериализация объекта. + + + Преобразует объект в представление XML. + Поток , в который выполняется сериализация объекта. + + + При применении к типу сохраняет имя статического метода типа, возвращающего схему XML и (или для анонимных типов), управляющих сериализацией типа. + + + Инициализация нового экземпляра класса , принимая имя статического метода, предоставляющего схему XML типа. + Имя статического метода, который должен быть реализован. + + + Получает или задает значение, определяющее, является ли целевой класс подстановочным классом, или содержит ли схема для класса только элемент xs:any. + true, если класс является подстановочным знаком, или схема содержит только элемент xs:any, в противном случае false. + + + Получает имя статического метода, предоставляющего схему XML типа, и имя его типа данных схемы XML. + Имя метода, вызываемого инфраструктурой XML, для возврата схемы XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..107c2d4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml @@ -0,0 +1,2665 @@ + + + + System.Xml.ReaderWriter + + + + 指定 对象执行的输入或输出检查的量。 + + + + 对象自动检测是否应该执行文档级别或片段级别检查,并执行相应的检查。如果你正在包装另一个 对象,外层对象不进行任何附加一致性检查。一致性检查只针对基础对象。有关如何确定符合性级别,请参见 属性。 + + + 按 W3C 定义,XML 数据符合格式良好的 XML 1.0 文档 的规则。 + + + 按 W3C 定义,XML 数据为 格式良好的 XML 片段。 + + + 指定用于处理 DTD 的选项。 枚举由 类使用。 + + + 将导致忽略 DOCTYPE 元素。将不发生任何 DTD 处理。 + + + 指定在遇到 DTD 时将引发 ,同时有消息指示禁用 DTD。这是默认行为。 + + + 提供一个接口,使类可以返回行和位置信息。 + + + 获取一个值,该值指示该类是否可返回行信息。 + 如果可以提供 ,则为 true;否则为 false。 + + + 获取当前行号。 + 当前行号;如果没有行信息可用(例如 返回 false),则为 0。 + + + 获取当前行位置。 + 当前行位置;如果没有行信息可用(例如 返回 false),则为 0。 + + + 提供对一组前缀和命名空间映射的只读访问。 + + + 获取当前在范围内的已定义前缀/命名空间映射的集合。 + 一个 ,包含当前在范围内的命名空间。 + 一个 值,指定要返回的命名空间节点的类型。 + + + 获取映射到指定前缀的命名空间 URI。 + 映射到前缀的命名空间 URI;如果前缀未映射到命名空间 URI,则为 null。 + 要查找其命名空间 URI 的前缀。 + + + 获取映射到指定命名空间 URI 的前缀。 + 映射到命名空间 URI 的前缀;如果命名空间 URI 未映射到前缀,则为 null。 + 要查找其前缀的命名空间 URI。 + + + 指定是否在 中移除重复的命名空间声明。 + + + 指定将不移除重复的命名空间声明。 + + + 指定将移除重复的命名空间声明。对于要移除的重复命名空间,前缀和命名空间必须匹配。 + + + 实现单线程 + + + 初始化 NameTable 类的新实例。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。如果 为零,则返回 String.Empty。 + 包含要添加字符串的字符数组。 + 数组中指定字符串第一个字符的从零开始的索引。 + 字符串中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。 + 要添加的字符串。 + + 为 null。 + + + 获取包含相同字符(与给定数组中指定范围的字符相同)的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 获取具有指定值的原子化字符串。 + 原子化字符串对象;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定如何处理分行符。 + + + 新行字符已实体化。当通过某个正常化 来读取输出时,此设置将保留所有字符。 + + + 新行字符未更改。输出与输入一样。 + + + 替换新行字符才能与 属性中指定的字符匹配。 + + + 指定读取器的状态。 + + + 已调用 方法。 + + + 已成功到达文件结尾。 + + + 出现错误,阻止读取操作继续进行。 + + + 未调用 Read 方法。 + + + 已调用 Read 方法。可能对读取器调用了其他方法。 + + + 指定 的状态。 + + + 指示正在写入特性值。 + + + 指示已调用 方法。 + + + 指示正在写入元素内容。 + + + 指示正在写入元素开始标记。 + + + 已引发异常,使 仍处于无效状态。可以调用 方法来将 置于 状态。任何其他 方法调用都将导致 + + + 指示正在写入 Prolog。 + + + 指示尚未调用 Write 方法。 + + + 对 XML 名称进行编码和解码,并提供方法在公共语言运行时类型和 XML 架构定义语言 (XSD) 类型之间进行转换。转换数据类型时,返回的值是独立于区域设置的。 + + + 对名称进行解码。该方法完成 方法的反向操作。 + 解码的名称。 + 要转换的名称。 + + + 将名称转换为有效的 XML 本地名称。 + 已编码的名称。 + 要编码的名称。 + + + 将名称转换为有效的 XML 名称。 + 返回名称,任何无效的字符都由转义字符串替换。 + 要转换的名称。 + + + 根据 XML 规范验证该名称是否有效。 + 已编码的名称。 + 要编码的名称。 + + + 转换为等效的 + 一个 Boolean 值,即 true 或 false。 + 要转换的字符串。 + + is null. + + does not represent a Boolean value. + + + 转换为等效的 + 与该字符串等效的 Byte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 代表单个字符的 Char。 + 包含所要转换的单个字符的字符串。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定日期是应该转换为本地时间,还是应该保留为协调通用时间 (UTC)(如果它为 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。“注意”   该字符串必须符合 XML DateTime 类型的 W3C 建议的子集。更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 从中转换 的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 根据此格式验证字符串 。 + + is null. + + or is an empty string or is not in the specified format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 可以转换 的格式数组。 中的每个格式均可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 将根据这些格式中的一个格式验证字符串 。 + + + 转换为等效的 + 与该字符串等效的 Decimal。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Double。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Guid。 + 要转换的字符串。 + + + 转换为等效的 + 与该字符串等效的 Int16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 SByte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Single。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为 + Boolean 的字符串表示形式,即“true”或“false”。 + 要转换的值。 + + + 转换为 + Byte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Char 的字符串表示形式。 + 要转换的值。 + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定如何处理 值。 + The value is not valid. + The or value is null. + + + 将提供的 转换为 + 提供的 表示形式。 + 要转换的 。 + + + 将提供的 转换为指定格式的 + 提供的 的指定格式的 表示形式。 + 要转换的 。 + + 转换为的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) + + + 转换为 + Decimal 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Double 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Guid 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int64 的字符串表示形式。 + 要转换的值。 + + + 转换为 + SByte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Single 的字符串表示形式。 + 要转换的值。 + + + 转换为 + TimeSpan 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt64 的字符串表示形式。 + 要转换的值。 + + + 转换为等效的 + 与该字符串等效的 TimeSpan。 + 要转换的字符串。字符串格式必须符合 W3C XML 架构第 2 部分:持续时间数据类型建议。 + + is not in correct format to represent a TimeSpan value. + + + 转换为等效的 + 与该字符串等效的 UInt16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根据 W3C 可扩展标记语言建议验证该名称是否是有效的名称。 + 该名称(如果它是有效的 XML 名称)。 + 要验证的名称。 + + is not a valid XML name. + + is null or String.Empty. + + + 根据 W3C 可扩展标记语言建议,验证名称是否是有效的 NCName。NCName 是不能包含冒号的名称。 + 该名称(如果它是有效的 NCName)。 + 要验证的名称。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根据 W3C 的 XML 架构第 2 部分“数据类型建议”,验证字符串是否为有效 NMTOKEN + 名称标记(如果它是有效的 NMTOKEN)。 + 要验证的字符串。 + The string is not a valid name token. + + is null. + + + 如果字符串参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串实例。 + 如果参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串。 + 包含要验证的 ID 的 。 + + + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例。 + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例;否则返回 null。 + 要验证的 。 + + + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 包含要验证的字符的 。 + + + 指定在字符串与 之间转换时,如何处理时间值。 + + + 作为本地时间处理。如果 对象表示协调通用时间 (UTC),它将转换为本地时间。 + + + 转换时应保留时区信息。 + + + 如果 要转换为字符串,将作为本地时间处理。 + + + 作为 UTC 处理。如果 对象表示本地时间,它将转换为 UTC。 + + + 返回有关上一个异常的详细信息。 + + + 初始化 XmlException 类的新实例。 + + + 使用指定的错误信息初始化 XmlException 类的新实例。 + 错误说明。 + + + 初始化 XmlException 类的新实例。 + 错误条件的说明。 + 引发 XmlException 的 (如果有的话)。此值可为 null。 + + + 用指定的消息、内部异常、行号和行位置初始化 XmlException 类的新实例。 + 错误说明。 + 导致当前异常的异常。此值可为 null。 + 指示错误发生位置的行号。 + 指示错误发生位置的行位置。 + + + 获取指示错误发生位置的行号。 + 指示错误发生位置的行号。 + + + 获取指示错误发生位置的行位置。 + 指示错误发生位置的行位置。 + + + 获取描述当前异常的消息。 + 解释异常原因的错误信息。 + + + 解析集合的命名空间、向集合添加命名空间和从集合中移除命名空间,以及提供对这些命名空间的范围管理。 + + + 用指定的 初始化 类的新实例。 + 要使用的 。 + null is passed to the constructor + + + 将给定的命名空间添加到集合。 + 与要添加的命名空间关联的前缀。使用 String.Empty 来添加默认命名空间。注意如果 将用于解析 XML 路径语言 (XPath) 表达式中的命名空间,则必须指定前缀。如果 XPath 表达式不包含前缀,则假定命名空间统一资源标识符 (URI) 为空命名空间。有关 XPath 表达式和 的更多信息,请参考 方法。 + 要添加的命名空间。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 获取默认命名空间的命名空间 URI。 + 返回默认命名空间的命名空间 URI;如果没有默认命名空间,则返回 String.Empty。 + + + 返回一个枚举数以用于循环访问 中的命名空间。 + 一个包含 存储的前缀的 + + + 获取被可用于枚举当前范围内的命名空间的前缀键控的命名空间名称的集合。 + 当前范围中的命名空间和前缀对的集合。 + 一个指定要返回的命名空间节点的类型的枚举值。 + + + 获取一个值,该值指示所提供的前缀是否具有为当前推送的范围定义的命名空间。 + 如果定义有命名空间,则为 true;否则为 false。 + 要查找的命名空间的前缀。 + + + 获取指定前缀的命名空间 URI。 + 返回 的命名空间 URI;如果没有映射的命名空间,则返回 null。返回的字符串是原子化的。有关原子化字符串的更多信息,请参见 类。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递 String.Empty。 + + + 查找为给定的命名空间 URI 声明的前缀。 + 匹配的前缀。如果没有映射的前缀,则方法返回 String.Empty。如果提供 null 值,则返回 null。 + 要为前缀解析的命名空间。 + + + 获取与此对象关联的 + 此对象使用的 + + + 将命名空间范围弹出堆栈。 + 如果堆栈上留有命名空间范围,则为 true;如果不再有要弹出的命名空间,则为 false。 + + + 将命名空间范围推送到堆栈上。 + + + 为给定的前缀移除给定的命名空间。 + 命名空间的前缀 + 要为给定的前缀移除的命名空间。所移除的命名空间来自当前的命名空间范围。忽略当前范围以外的命名空间。 + The value of or is null. + + + 定义命名空间范围。 + + + 在当前节点范围内定义的所有命名空间。这包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点范围内定义的所有命名空间,但不包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点本地定义的所有命名空间。 + + + 原子化字符串对象表。 + + + 初始化 类的新实例。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。如果 length 为零,则返回 String.Empty。 + 包含要添加的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。 + 要添加的名称。 + + 为 null。 + + + 当在派生类中被重写时,获取与给定数组中指定范围的字符包含相同字符的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,获取与指定的字符串包含相同值的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定节点的类型。 + + + 特性(例如,id='123')。 + + + CDATA 节(例如,<![CDATA[my escaped text]]>)。 + + + 注释(例如,<!-- my comment -->)。 + + + 作为文档树的根的文档对象提供对整个 XML 文档的访问。 + + + 文档片段。 + + + 由以下标记指示的文档类型声明(例如,<!DOCTYPE...>)。 + + + 元素(例如,<item>)。 + + + 末尾元素标记(例如,</item>)。 + + + 由于调用 而使 XmlReader 到达实体替换的末尾时返回。 + + + 实体声明(例如,<!ENTITY...>)。 + + + 实体引用(例如,&num;)。 + + + 如果未调用 Read 方法,则由 返回。 + + + 文档类型声明中的表示法(例如,<!NOTATION...>)。 + + + 处理指令(例如,<?pi test?>)。 + + + 混合内容模型中标记间的空白或 xml:space="preserve" 范围内的空白。 + + + 节点的文本内容。 + + + 标记间的空白。 + + + XML 声明(例如,<?xml version='1.0'?>)。 + + + 提供 分析 XML 片段所需的所有上下文信息。 + + + 用指定的 、基 URI、xml:lang、xml:space 和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 子集用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、基 URI、xml:lang、xml:space、编码和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang 和 xml:space 值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang、xml:space 和编码初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 获取或设置基 URI。 + 用于解析 DTD 文件的基 URI。 + + + 获取或设置文档类型声明的名称。 + 文档类型声明的名称。 + + + 获取或设置编码类型。 + 一个 对象,指示编码类型。 + + + 获取或设置内部 DTD 子集。 + 内部 DTD 子集。例如,此属性返回方括号 <!DOCTYPE doc [...]> 之间的所有内容。 + + + 获取或设置 + XmlNamespaceManager。 + + + 获取用于原子化字符串的 。有关原子化字符串的更多信息,请参见 + XmlNameTable。 + + + 获取或设置公共标识符。 + public 标识符。 + + + 获取或设置系统标识符。 + 系统标识符。 + + + 获取或设置当前 xml:lang 范围。 + 当前的 xml:lang 范围。如果范围中没有 xml:lang,则返回 String.Empty。 + + + 获取或设置当前 xml:space 范围。 + 一个 值,指示 xml:space 范围。 + + + 表示 XML 限定名。 + + + 初始化 类的新实例。 + + + 用指定的名称初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + + 用指定的名称和命名空间初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + 对象的命名空间。 + + + 提供空 + + + 确定指定的 对象是否等同于当前的 + 如果它们两个是相同的实例对象,则为 true;否则为 false。 + 要比较的 。 + + + 返回 的哈希代码。 + 该对象的哈希代码。 + + + 获取一个值,该值指示 是否为空。 + 如果名称和命名空间为空字符串,则为 true;否则为 false。 + + + 获取 的限定名的字符串表示形式。 + 限定名的字符串表示形式,或者如果没有为对象定义名称,则为 String.Empty。 + + + 获取 的命名空间的字符串表示形式。 + 命名空间的字符串表示形式,或者如果没有为对象定义命名空间,则为 String.Empty。 + + + 比较两个 对象。 + 如果两个对象具有相同的名称和命名空间值,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 比较两个 对象。 + 如果两个对象的名称和命名空间值不同,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + 对象的名称。 + 对象的命名空间。 + + + 表示提供对 XML 数据进行快速、非缓存、只进访问的读取器。若要浏览此类型的.NET Framework 源代码,请参阅参考源。 + + + 初始化 XmlReader 类的新实例。 + + + 当在派生类中被重写时,获取当前节点上的属性数。 + 当前节点上的属性数目。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的基 URI。 + 当前节点的基 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现二进制内容读取方法。 + 如果实现二进制内容读取方法,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现 方法。 + true if the implements the method; otherwise false. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示此读取器是否可以分析和解析实体。 + 如果此读取器可以分析和解析实体,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 创建一个新实例使用默认设置使用指定的流。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + + + 创建一个新具有指定的流和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + + 值为 null。 + + + 创建一个新实例使用指定的流、 设置和上下文信息用于分析。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器、 设置和上下文信息用于分析的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + 属性都包含值。(只可以设置并使用这两个 NameTable 属性之中的一个。) + + + 使用指定的 URI 创建一个新的 实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 类用于将路径转换为规范化数据表示形式。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + 由 URI 标识的文件不存在。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 URI 和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 对象上的 对象用于将路径转换为规范化数据表示形式。如果 为 null,则使用新的 对象。 + 新的设置实例。此值可为 null。 + + 值为 null。 + 无法找到由该 URI 指定的文件。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 XML 读取器和设置的实例。 + 包装的对象周围指定对象。 + 要用作基础 XML 编写器的对象。 + 新的设置实例。 对象的一致性级别要么必须与基础读取器的一致性级别匹配,要么必须设置为 。 + + 值为 null。 + + 对象指定的一致性级别与基础读取器的一致性级别不一致。- 或 -基础 处于 状态。 + + + 当在派生类中被重写时,获取 XML 文档中当前节点的深度。 + XML 文档中当前节点的深度。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 类的当前实例占用的所有资源。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true to release both managed and unmanaged resources; false to release only unmanaged resources. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示此读取器是否定位在流的结尾。 + 如果此读取器定位在流的结尾,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。此方法不移动读取器。 + 属性的索引。索引是从零开始的。(第一个属性的索引为 0。) + + 超出范围。它必须是非负数且小于特性集合的大小。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。 + 属性的限定名称。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。此方法不移动读取器。 + 属性的本地名称。 + 属性的命名空间 URI。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步获取当前节点的值。 + 当前节点的值。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 获取一个值,该值指示当前节点是否有任何属性。 + 如果当前节点具有属性,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否可以具有 + 如果读取器当前定位在的节点可以具有 Value,则为 true;否则为 false。如果为 false,则节点值为 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否是从 DTD 或架构中定义的默认值生成的特性。 + 如果当前节点是其值从 DTD 或架构中定义的默认值生成的特性,则为 true;如果特性值是显式设置的,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否为空元素(例如 <MyElement/>)。 + 如果当前节点是一个以 /> 结尾的元素( 等于 XmlNodeType.Element),则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回一个值,该值指示字符串参数是否是有效的 XML 名称。 + 如果该名称有效,则为 true;否则为 false。 + 要验证的名称。 + + 值为 null。 + + + 返回一个值,该值指示该字符串参数是否是有效的 XML 名称标记。 + 如果它是有效的名称标记,则为 true;否则为 false。 + 要验证的名称标记。 + + 值为 null。 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记。 + 如果 找到开始标记或空元素标记,则为 true;如果找到不同于 XmlNodeType.Element 的节点类型,则为 false。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的参数匹配。 + 如果生成的节点是一个元素,且 Name 属性与指定的字符串匹配,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 Name 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 Name 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的字符串匹配。 + 如果生成的节点是一个元素,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 LocalName 和 NamespaceURI 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 LocalName 属性匹配的字符串。 + 与找到的元素的 NamespaceURI 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的本地名称。 + 移除了前缀的当前节点的名称。例如,对于元素 <bk:book>,LocalName 为 book。对于没有名称的节点类型(如 Text、Comment 等),该属性返回 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,在当前元素的范围内解析命名空间前缀。 + 前缀映射到的命名空间 URI;如果未找到任何匹配的前缀,则为 null。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递一个空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到具有指定索引的属性。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数为负值。 + + + 当在派生类中被重写时,移动到具有指定 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 当在派生类中被重写时,移动到具有指定的 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 检查当前节点是否是内容(非空白文本、CDATA、Element、EndElement、EntityReference 或 EndEntity)节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。它跳过以下类型的节点:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步检查当前节点是否为内容节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,移动到包含当前属性节点的元素。 + 如果读取器定位在属性上,则为 true(读取器移动到拥有该属性的元素);如果读取器不是定位在属性上,则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到第一个属性。 + 如果属性存在,则为 true(读取器移动到第一个属性);否则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到下一个属性。 + 如果存在下一个属性,则为 true;如果没有其他属性,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的限定名。 + 当前节点的限定名称。例如,对于元素 <bk:book>,Name 为 bk:book。返回的名称取决于节点的 。下列节点类型返回所列的值。所有其他节点类型返回空字符串。节点类型名称 Attribute属性名。 DocumentType文档类型名称。 Element标记名称。 EntityReference引用的实体的名称。 ProcessingInstruction处理指令的目标。 XmlDeclaration字符串 xml。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器定位在其上的节点的命名空间 URI(采用 W3C 命名空间规范中定义的形式)。 + 当前节点的命名空间 URI;否则为空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与该实现关联的 + XmlNameTable,它使您能够获取该节点内字符串的原子化版本。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的类型。 + 指定当前节点的类型的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与当前节点关联的命名空间前缀。 + 与当前节点关联的命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,从流中读取下一个节点。 + true如果成功,则读取下一个节点否则为false。 + 分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取该流的下一个节点。 + 如果成功读取了下一个节点,则为 true;如果没有其他节点可读取,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,将属性值解析为一个或多个 Text、EntityReference 或 EndEntity 节点。 + 如果有可返回的节点,则为 true。如果进行初始调用时读取器不是定位在属性节点上,或者如果已读取了所有属性值,则为 false。如果是空属性(如 misc=""),则返回 true,同时返回值为 String.Empty 的单个节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。例如,将 对象转换为 xs:string 时可以使用此对象。此值可为 null。 + 内容格式不是目标类型的正确格式。 + 试图进行的强制转换无效。 + + 值为 null。 + 当前节点不是所支持的节点类型。有关详细信息,请参见下表。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象异步读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 Boolean 读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为双精度浮点数读取。 + 作为双精度浮点数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为单精度浮点数读取。 + 作为单精度浮点数的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 32 位有符号整数读取。 + 作为 32 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 64 位有符号整数读取。 + 作为 64 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将元素内容作为请求类型异步读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为双精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前内容节点是否为结束标记并将读取器推进到下一个节点。 + 当前节点不是一个结束标记,或者如果在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,将所有内容(包括标记)当做字符串读取。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。如果当前节点既非元素,也非属性,则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取所有内容,包括作为字符串的标记。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,读取表示该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取包含该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前节点是否为元素并将读取器推进到下一个节点。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的限定名。 + 在输入流中遇到不正确的 XML。- 或 -元素的 不匹配给定的 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在输入流中遇到不正确的 XML。- 或 -所找到元素的 属性与给定的参数不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器的状态。 + 指定读取器的状态的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回新的 XmlReader 实例,此实例可用于读取当前节点及其所有子节点。 + 新的 XML 读取器实例设置为。调用方法将新的读取器定位在调用之前的当前节点上方法。 + XML 读取器不被定位在元素上,当调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 前进到下一个具有指定限定名的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。如果调用 时没有将 定位在某个元素上,则此方法返回 false 且 的位置保持不变。 + 要移动到的元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 前进到下一个具有指定的本地名称和命名空间 URI 的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 要移动到的元素的本地名称。 + 要移动到的元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 一直读取,直到找到具有指定限定名的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 一直读取,直到找到具有指定的本地名称和命名空间 URI 的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 让 XmlReader 前进到下一个具有指定限定名的同级元素。 + 如果找到匹配的同级元素,则为 true;否则为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 让 XmlReader 前进到下一个具有指定的本地名称和命名空间 URI 的同级元素。 + 如果找到匹配的同级元素,则为 true;否则,为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的本地名称。 + 你希望移动到的同级元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 当前节点没有值( 为 false)。 + + 值为 null。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + XML 数据不是格式良好的。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,解析 EntityReference 节点的实体引用。 + 读取器未定位在 EntityReference 节点上;该读取器的实现不能解析实体( 返回 false)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + Gets the object used to create this instance. + 用于创建此读取器实例的 对象。如果此读取器不是使用 方法创建的,则此属性返回 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 跳过当前节点的子级。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步跳过当前节点的子级。 + 当前节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,获取当前节点的文本值。 + 返回的值取决于节点的 。下表列出具有要返回的值的节点类型。所有其他节点类型返回 String.Empty。节点类型值 Attribute属性的值。 CDATACDATA 节的内容。 Comment注释的内容。 DocumentType内部子集。 ProcessingInstruction全部内容(不包括指令目标)。 SignificantWhitespace混合内容模型中标记之间的空白。 Text文本节点的内容。 Whitespace标记之间的空白。 XmlDeclaration声明的内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取当前节点的公共语言运行时 (CLR) 类型。 + 与节点的类型化值对应的 CLR 类型。默认值为 System.String。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:space 范围。 + + 值之一。如果不存在任何 xml:space 范围,则该属性默认值为 XmlSpace.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 指定在由 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置是否可对特定 实例使用异步 方法。 + 则可以使用异步方法,则为 true;否则,为 false。 + + + 获取或设置一个值,该值指示是否进行字符检查。 + 如果进行字符检查,则为 true;否则为 false。默认值为 true。说明如果 处理文本数据,则无论属性如何设置,读取器将总是检查 XML 名称和文本内容是否有效。将 设置为 false 会禁用对字符实体引用的字符检查。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示当读取器关闭时,是否应关闭基础流或 + 如果当读取器关闭时基础流或 也应关闭,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 将遵循的一致性级别。 + 指定一致性级别(XML 读取器将强制该级别)的枚举值之一。默认值为 + + + 获取或设置确定 DTD 的处理的值。 + 确定 DTD 的处理的枚举值之一。默认值为 + + + 获取或设置一个值,该值指示是否忽略注释。 + 如果忽略注释,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略处理指令。 + 如果忽略处理指令,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略无关紧要的空白区域。 + 如果忽略空白,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 对象的行号偏移量。 + 行号偏移量。默认值为 0。 + + + 获取或设置 对象的行位置偏移量。 + 行位置偏移量。默认值为 0。 + + + 获取或设置一个值,该值指示文档中允许扩展实体产生的最大字符数。 + 扩展实体中允许的最大字符数。默认值为 0。 + + + 获取或设置一个值,该值指明 XML 文档中所允许的最大字符数。零 (0) 值表示对 XML 文档的大小没有限制。非零值指定最大大小(以字符数计)。 + XML 文档中所允许的最大字符数。默认值为 0。 + + + 获取或设置用于原子化字符串比较的 + + ,它存储使用此 对象创建的所有 实例使用的所有原子化字符串。默认值为 null。如果该值为null,创建的 实例将使用新的空 + + + 将设置类的成员重置为各自的默认值。 + + + 指定当前 xml:space 范围。 + + + xml:space 范围等于 default。 + + + 没有 xml:space 范围。 + + + xml:space 范围等于 preserve。 + + + 表示一个写入器,该写入器提供一种快速、非缓存和只进方式以生成包含 XML 数据的流或文件。 + + + 初始化 类的新实例。 + + + 使用指定的流创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + The value is null. + + + 使用流和 对象创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + The value is null. + + + 使用 对象创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + The value is null. + + + 使用 对象创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 释放由 类的当前实例占用的所有资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true 表示释放托管资源和非托管资源;false 表示仅释放非托管资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,将缓冲区中的所有内容刷新到基础流,并同时刷新基础流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将缓冲区中的所有内容异步刷新到基础流,并同时刷新基础流。 + 表示 Flush 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,返回在当前命名空间范围中为该命名空间 URI 定义的最近的前缀。 + 匹配的前缀;如果未在当前范围内找到匹配的命名空间 URI,则为 null。 + 要查找其前缀的命名空间 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 获取用于创建此 实例的 对象。 + 用于创建此写入器实例的 对象。如果此写入器不是使用 方法创建的,则此属性返回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出在 的当前位置找到的所有属性。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在 的当前位置找到的所有属性。 + 表示 WriteAttributes 异步操作的任务。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称和值的属性。 + 属性的本地名称。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的本地名称、命名空间 URI 和值的属性。 + 属性的本地名称。 + 与属性关联的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出具有指定的前缀、本地名称、命名空间 URI 和值的属性。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出具有指定前缀、本地名称、命名空间 URI 和值的属性。 + 表示 WriteAttributeString 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 Base64 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 Base64 并写出结果文本。 + 表示 WriteBase64 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 BinHex 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 BinHex 并写出结果文本。 + 表示 WriteBinHex 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的 <![CDATA[...]]> 块。 + 要放置在 CDATA 块中的文本。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的 <![CDATA[...]]> 块。 + 表示 WriteCData 异步操作的任务。 + 要放置在 CDATA 块中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为指定的 Unicode 字符值强制生成字符实体。 + 为其生成字符实体的 Unicode 字符。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为指定的 Unicode 字符值异步强制生成字符实体。 + 表示 WriteCharEntity 异步操作的任务。 + 为其生成字符实体的 Unicode 字符。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,以每次一个缓冲区的方式写入文本。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以每次一个缓冲区的方式异步写入文本。 + 表示 WriteChars 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的注释 <!--...-->。 + 要放在注释内的文本。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的注释 <!--...-->。 + 表示 WriteComment 异步操作的任务。 + 要放在注释内的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定名称和可选属性的 DOCTYPE 声明。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定名称和可选属性的 DOCTYPE 声明。 + 表示 WriteDocType 异步操作的任务。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定的本地名称和值的元素。 + 元素的本地名称。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的本地名称、命名空间 URI 和值的元素。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 表示 WriteElementString 异步操作的任务。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭上一个 调用。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭前一个 调用。 + 表示 WriteEndAttribute 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + 表示 WriteEndDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,按 &name; 写出实体引用。 + 实体引用的名称。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 按 &name; 异步写出实体引用。 + 表示 WriteEntityRef 异步操作的任务。 + 实体引用的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteFullEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 要写入的名称。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 表示 WriteName 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 要写入的名称。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 表示 WriteNmToken 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将全部内容从读取器复制到写入器并将读取器移动到下一个同级的开始位置。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将所有内容从读取器异步复制到写入器并将读取器移动到下一个同级的开头。 + 表示 WriteNode 异步操作的任务。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出在名称和文本之间带有空格的处理指令,如下所示:<?name text?>。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在名称和文本之间有空格的处理指令,如下所示:<?name text?>。 + 表示 WriteProcessingInstruction 异步操作的任务。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 要写入的本地名称。 + 名称的命名空间 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 表示 WriteQualifiedName 异步操作的任务。 + 要写入的本地名称。 + 名称的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,从字符缓冲区手动写入原始标记。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,从字符串手动写入原始标记。 + 包含要写入的文本的字符串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 从字符缓冲区手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 从字符串手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定本地名称的属性的开头。 + 属性的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定本地名称和命名空间 URI 的属性的开头。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的前缀、本地名称和命名空间 URI 的属性的开头。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定前缀、本地名称和命名空间 URI 的属性的开头。 + 表示 WriteStartAttribute 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明和独立的属性。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入版本为“1.0”的 XML 声明。 + 表示 WriteStartDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 异步写入版本为“1.0”的 XML 声明和独立的属性。 + 表示 WriteStartDocument 异步操作的任务。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称的开始标记。 + 元素的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间关联起来。 + 元素的本地名称。 + 与元素关联的命名空间 URI。如果此命名空间已在范围中并具有关联的前缀,则写入器也将自动写入该前缀。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 表示 WriteStartElement 异步操作的任务。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取写入器的状态。 + + 值之一。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入给定的文本内容。 + 要写入的文本。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入给定的文本内容。 + 表示 WriteString 异步操作的任务。 + 要写入的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为代理项字符对生成并写入代理项字符实体。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为代理项字符对异步生成并写入代理项字符实体。 + 表示 WriteSurrogateCharEntity 异步操作的任务。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入对象值。 + 要写入的对象值。注意   随着 .NET Framework 3.5 的发布,该方法接受将 作为参数。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个单精度浮点数。 + 要写入的单精度浮点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出给定的空白区域。 + 空格字符的字符串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出给定的空白区域。 + 表示 WriteWhitespace 异步操作的任务。 + 空格字符的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,获取表示当前 xml:space 范围的 + 一个表示当前 xml:space 范围的 XmlSpace。值含义 None如果不存在 xml:space 范围,则此为默认值。Default当前范围为 xml:space="default"。Preserve当前范围为 xml:space=“preserve”。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定在 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置一个值,该值指示是否可对特定的 实例使用异步 方法。 + 如果可以使用异步方法,则为 true;否则为 false。 + + + 获取或设置一个值,该值指示是否应检查 XML 写入器以确保文档中的所有字符都符合 W3C XML 1.0 建议 中的“2.2 字符”部分。 + 如果要检查字符,则为 true,否则为 false。默认值为 true。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示调用 是否也应该关闭基础流或 + 如果要关闭基础流或 ,则为 true;否则为 false。默认值为 false。 + + + 获取或设置的 XML 写入器检查 XML 输出的一致性级别。 + 指定一致性级别(文档、片段或自动检测)的枚举值之一。默认值为 + + + 获取或设置要使用的文本编码的类型。 + 要使用的文本编码。默认值为 Encoding.UTF8。 + + + 获取或设置指示是否缩进元素的值。 + 如果在新行上写入单独的元素并将其缩进,则为 true;否则为 false。默认值为 false。 + + + 获取或设置缩进时要使用的字符串。在 属性设置为 true 时使用此设置。 + 缩进时要使用的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为两个空格。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示在写入 XML 内容时 是否应移除重复的命名空间声明。写入器的默认行为是输出写入器的命名空间解析程序中存在的所有命名空间声明。 + 用于指定是否移除 中重复的命名空间声明的 枚举。 + + + 获取或设置要用于换行符的字符串。 + 要用于换行符的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为 \r\n(回车符、新行)。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示是否将输出中的换行符规范化。 + + 值之一。默认值为 + + + 获取或设置一个值,该值指示是否在新行上写入属性。 + 如果要在单独的行上写入属性,则为 true;否则为 false。默认值为 false。说明 属性值为 false时此设置无效。 设置为 true时,每个属性都会预先挂起一个新行和一个额外的缩进级别。 + + + 获取或设置一个值,该值指示是否省略 XML 声明。 + 如果省略 XML 声明,则为 true;否则为 false。默认值为 false,即写入 XML 声明。 + + + 将设置类的成员重置为各自的默认值。 + + + 获取或设置一个值,该值指示在调用 方法时 是否会向所有未关闭的元素标记添加结束标记。 + 如果将结束所有未关闭元素标记,则为 true;否则为 false。默认值为 true。 + + + 一个 XML 架构的内存表示形式,它按照万维网联合会 (W3C) XML 架构第 1 部分进行指定:“结构” 和 XML 架构第 2 部分:“数据类型” 规范。 + + + 指示是否需要用命名空间前缀限定属性或元素。 + + + 架构中不指定元素和属性窗体。 + + + 必须用命名空间前缀限定元素和属性。 + + + 不要求用命名空间前缀限定元素和属性。 + + + 提供面向 XML 序列化和反序列化的自定义格式。 + + + 此方法是保留方法,请不要使用。在实现 IXmlSerializable 接口时,应从此方法返回 null(在 Visual Basic 中为 Nothing),如果需要指定自定义架构,应向该类应用 + + ,描述由 方法产生并由 方法使用的对象的 XML 表示形式。 + + + 从对象的 XML 表示形式生成该对象。 + 对象从中进行反序列化的 流。 + + + 将对象转换为其 XML 表示形式。 + 对象要序列化为的 流。 + + + 应用于某个类型时,存储返回 XML 架构的该类型静态方法的名称和控制该类型序列化的 (对于匿名类型,为 )。 + + + 采用提供类型的 XML 架构的静态方法的名称,初始化 类的新实例。 + 必须实现的静态方法的名称。 + + + 获取或设置一个值,该值确定目标类是通配符,还是该类的架构仅包含一个 xs:any 元素。 + 如果该类是通配符,或者该架构仅包含 xs:any 元素,则为 true;否则为 false。 + + + 获取提供类型的 XML 架构及其 XML 架构数据类型名称的静态方法的名称。 + XML 基础结构调用来返回 XML 架构的方法的名称。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..d7f0bf3 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml @@ -0,0 +1,2688 @@ + + + + System.Xml.ReaderWriter + + + + 指定 物件所執行的輸入或輸出檢查數量。 + + + + 物件會自動偵測是否應執行文件或片段檢查,並進行適當的檢查。如果您包裝其他 物件,則外部物件不會執行任何其他的一致性檢查。必須由基礎物件來進行一致性檢查。請參閱 屬性,以取得如何判定符合性層級的詳細資料。 + + + XML 資料使用格式正確的 XML 1.0 文件 編譯,如 W3C 所定義。 + + + XML 資料是格式正確的 XML 片段,如 W3C 所定義。 + + + 指定處理 DTD 的選項。 列舉型別是由 類別所使用。 + + + 導致 DOCTYPE 項目受到忽略。不會發生 DTD 處理。 + + + 指定在遇到 DTD 時擲回 並顯示訊息,說明禁止使用 DTD。這是預設行為。 + + + 提供讓類別能夠傳回行和位置資訊的介面。 + + + 取得值,這個值指出類別是否可以傳回行資訊。 + 如果可以提供 ,則為 true,否則為 false。 + + + 取得目前的行號。 + 目前的行號,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 取得的目前行位置。 + 目前的行位置,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 提供對一組前置詞和命名空間 (Namespace) 對應的唯讀存取。 + + + 取得定義之前置詞/命名空間對應的集合,目前位於範圍中。 + + ,包含目前範圍內的命名空間。 + + 值,指定要傳回之命名空間節點的型別。 + + + 取得命名空間 URI,對應至指定的前置詞。 + 對應至前置詞的命名空間 URI,如果前置詞未對應至命名空間 URI,則為 null。 + 您要尋找其命名空間 URI 的前置詞。 + + + 取得前置詞,對應至指定的命名空間 URI。 + 對應至命名空間 URI 的前置詞,如果命名空間 URI 未對應至前置詞,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + + 指定是否要移除 中的重複命名空間宣告。 + + + 指定不要移除重複的命名空間宣告。 + + + 指定要移除重複的命名空間宣告。若要移除重複的命名空間,前置詞和命名空間必須相符。 + + + 實作單一執行緒的 + + + 初始化 NameTable 類別的新執行個體。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。如果 為零,則會傳回 String.Empty。 + 包含要加入之字串的字元陣列。 + 陣列中以零起始的索引,指定字串的第一個字元。 + 字串中的字元數。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。 + 要加入的字串。 + + 為 null。 + + + 取得包含與指定陣列中指定字元範圍內的字元相同的字串。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 包含要尋找之名稱的字元陣列。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 取得具有指定值的原子化字串。 + 原子化字串物件;如果字串尚未原子化,則為 null。 + 要尋找的名稱。 + + 為 null。 + + + 指定如何處理分行符號。 + + + 實體化換行字元。當正規化 來讀取輸出時,這個設定會保留所有字元。 + + + 換行字元未變更。輸出與輸入相同。 + + + 取代換行字元,使其與 屬性中指定的字元相符。 + + + 指定讀取器 (Reader) 的狀態。 + + + 已經呼叫 方法。 + + + 已經順利到達檔案結尾。 + + + 發生錯誤,造成讀取作業無法繼續。 + + + 尚未呼叫 Read 方法。 + + + 已經呼叫 Read 方法。讀取器可能呼叫其他方法。 + + + 指定 的狀態。 + + + 指出正在寫入屬性值。 + + + 指出已呼叫 方法。 + + + 指出正在寫入項目內容。 + + + 指出正在寫入項目開始標記。 + + + 已經擲回例外狀況, 因此處於無效狀態。您可以呼叫 方法,將 置於 狀態下。任何其他 方法呼叫會導致 + + + 指出正在寫入初構 (Prolog)。 + + + 指出尚未呼叫 Write 方法。 + + + 編碼和解碼 XML 名稱,並且提供在 Common Language Runtime 類型和 XML 結構描述定義語言 (XSD) 類型之間轉換的方法。轉換資料類型時,傳回的值與地區設定無關。 + + + 將名稱解碼。這個方法反向執行 方法。 + 解碼的名稱。 + 要轉換的名稱。 + + + 將名稱轉換為有效的 XML 區域名稱。 + 編碼的名稱。 + 要編碼的名稱。 + + + 將名稱轉換為有效的 XML 名稱。 + 傳回以逸出字元取代任何無效字元的名稱。 + 要轉譯的名稱。 + + + 根據 XML 規格驗證確定名稱有效。 + 編碼的名稱。 + 要編碼的名稱。 + + + 轉換成對等的 + Boolean 值,為 true 或 false。 + 要轉換的字串。 + + is null. + + does not represent a Boolean value. + + + 轉換成對等的 + 字串的對等 Byte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + Char,表示單一字元。 + 字串,含有要轉換的單一字元。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定應將日期轉換為當地時間,或保留為國際標準時間 (UTC) (如果它是 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。注意   字串必須符合 XML dateTime 型別的 W3C Recommendation 子集。如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 的來源格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對這個格式進行驗證。 + + is null. + + or is an empty string or is not in the specified format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 之來源格式的陣列。 中的每個格式,可以是 XML dateTime 型別的 W3C Recommendation 子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對其中一種格式進行驗證。 + + + 轉換成對等的 + 字串的對等 Decimal。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Double。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Guid。 + 要轉換的字串。 + + + 轉換成對等的 + 字串的對等 Int16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 SByte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Single。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成 + Boolean 的字串表示,也就是 "true" 或 "false"。 + 要進行轉換的值。 + + + 轉換成 + Byte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Char 的字串表示。 + 要進行轉換的值。 + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定如何處理 值。 + The value is not valid. + The or value is null. + + + 將提供的 轉換成 + 所提供之 表示。 + 要轉換的 。 + + + 將提供的 轉換成指定格式的 + 以所提供之 指定格式的 表示。 + 要轉換的 。 + + 所要轉換成的格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 + + + 轉換成 + Decimal 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Double 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Guid 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int64 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + SByte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Single 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + TimeSpan 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt64 的字串表示。 + 要進行轉換的值。 + + + 轉換成對等的 + 字串的對等 TimeSpan。 + 要轉換的字串。字串格式必須符合<W3C XML 結構描述第 2 部分:資料型別>對持續期間的建議。 + + is not in correct format to represent a TimeSpan value. + + + 轉換成對等的 + 字串的對等 UInt16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的名稱。 + 名稱 (如果它是有效的 XML 名稱)。 + 要驗證的名稱。 + + is not a valid XML name. + + is null or String.Empty. + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的 NCName。NCName 是不能包含冒號的名稱。 + 名稱 (如果它是有效的 NCName)。 + 要驗證的名稱。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根據<W3C XML Schema Part2: Datatypes>建議,驗證字串是否為有效的 NMTOKEN。 + 名稱語彙基元 (如果它是有效的 NMTOKEN)。 + 您要驗證的字串。 + The string is not a valid name token. + + is null. + + + 如果字串引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串執行個體。 + 如果引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串。 + 包含要驗證之 ID 的 。 + + + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體。 + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體;否則傳回 null。 + 要驗證的 。 + + + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 包含要驗證之字元的 。 + + + 指定在字串和 之間轉換時如何處理時間值。 + + + 當做當地時間。如果 物件表示 Coordinated Universal Time (UTC),則將它轉換成當地時間。 + + + 時區資訊應在轉換時保存。 + + + 如果要將 轉換成字串,則當做當地時間。 + + + 當做 UTC。如果 物件表示當地時間,則將它轉換成 UTC。 + + + 傳回有關上次例外狀況的詳細資訊。 + + + 初始化 XmlException 類別的新執行個體。 + + + 使用指定的錯誤訊息,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + + + 初始化 XmlException 類別的新執行個體。 + 錯誤條件的描述。 + 擲回 XmlException 的 (如果有的話)。這個值可以是 null。 + + + 使用指定的訊息、內部例外狀況、行號和行位置,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + 導致目前例外狀況的例外。這個值可以是 null。 + 指示發生錯誤之位置的行號。 + 指示發生錯誤之位置的行位置。 + + + 取得行號,指出發生錯誤的位置。 + 指示發生錯誤之位置的行號。 + + + 取得行位置,指出發生錯誤的位置。 + 指示發生錯誤之位置的行位置。 + + + 取得描述目前例外狀況的訊息。 + 解釋例外狀況原因的錯誤訊息。 + + + 解析、加入並移除集合的命名空間,並且為這些命名空間提供範圍管理。 + + + 使用指定的 初始化 類別的新執行個體。 + 要使用的 。 + null is passed to the constructor + + + 將指定的命名空間加入集合中。 + 與要加入的命名空間關聯的前置詞。使用 String.Empty 來加入預設命名空間。附註:如果 將用於解析 XML 路徑語言 (XPath) 運算式中的命名空間,則必須指定前置詞。如果 XPath 運算式不包括前置詞,則會假設命名空間統一資源識別項 (URI) 為空命名空間。如需有關 XPath 運算式以及 的詳細資訊,請參考 方法。 + 要加入的命名空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 取得預設命名空間的命名空間 URI。 + 傳回預設命名空間的命名空間 URI,若無預設命名空間,則傳回 String.Empty。 + + + 傳回用於逐一查看 中命名空間的列舉值。 + + ,包含 儲存的前置詞。 + + + 取得命名空間名稱集合,會根據前置詞索引,可用於列舉目前在範圍中的命名空間。 + 目前在範圍中的命名空間和前置詞配對集合。 + 列舉值,指定要傳回之命名空間節點的類型。 + + + 取得值,表示提供的前置詞是否具有針對目前推送的範圍中定義的命名空間。 + 如果已經定義命名空間,則為 true,否則為 false。 + 您要尋找的命名空間的前置詞。 + + + 取得指定前置詞的命名空間 URI。 + 傳回 的命名空間 URI;如果無對應的命名空間,則傳回 null。已擷取傳回的字串。如需擷取字串的詳細資訊,請參閱 類別。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送 String.Empty。 + + + 尋找為指定命名空間 URI 宣告的前置詞。 + 符合的前置詞。如果沒有對應的前置詞,此方法會傳回 String.Empty。如果提供了 null 值,則會傳回 null。 + 用來解析前置詞的命名空間。 + + + 取得與這個物件相關的 + + ,由這個物件所使用。 + + + 將命名空間範圍自堆疊取出。 + 如果堆疊上留有命名空間範圍,則為 true,若未取出其他命名空間,則為 false。 + + + 將命名空間範圍推送至堆疊。 + + + 移除指定前置詞的指定命名空間。 + 命名空間的前置詞 + 指定的前置詞中要移除的命名空間。命名空間由目前的命名空間範圍移除。忽略目前範圍以外的命名空間。 + The value of or is null. + + + 定義命名空間範圍。 + + + 目前節點範圍中定義的所有命名空間。這包含 xmlns:xml 命名空間,這個命名空間一定是以隱含方式宣告。尚未定義命名空間傳回的順序。 + + + 目前節點範圍中定義的所有命名空間,但是 xmlns:xml 命名空間 (一定以隱含方式宣告) 除外。尚未定義命名空間傳回的順序。 + + + 目前節點上區域定義的所有命名空間。 + + + 原子化字串物件的資料表。 + + + 初始化 類別的新執行個體。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。如果長度為零,則傳回 String.Empty。 + 字元陣列,包含要加入的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。 + 要加入的名稱。 + + 為 null。 + + + 在衍生類別中覆寫時,取得包含相同字元的原子化字串做為指定陣列中的指定字元範圍。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 字元陣列,包含要查詢的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,取得包含相同值的原子化字串做為指定的字串。 + 原子化字串,如果字串尚未原子化,則為 null。 + 要查詢的名稱。 + + 為 null。 + + + 指定節點的類型。 + + + 屬性 (例如,id='123')。 + + + CDATA 區段 (例如,<![CDATA[my escaped text]]>)。 + + + 註解 (例如,<!-- my comment -->)。 + + + 做為文件樹狀結構的根的文件物件可存取整個 XML 文件。 + + + 文件片段。 + + + 文件類型宣告,以下列標記指示 (例如,<!DOCTYPE...>)。 + + + 項目 (例如,<item>)。 + + + 結尾項目標記 (例如,</item>)。 + + + 當 XmlReader 到達實體 (Entity) 結尾時傳回的資料,取代呼叫 的結果。 + + + 實體宣告 (例如,<!ENTITY...>)。 + + + 實體參考 (例如,&num;)。 + + + 如果尚未呼叫 Read 方法,則由 傳回此資料。 + + + 文件類型宣告中的標記法 (例如,<!NOTATION...>)。 + + + 處理指示 (例如,<?pi test?>)。 + + + 混合內容模型中標記之間的泛空白字元 (White Space),或 xml:space="preserve" 範圍 (Scope) 中的泛空白字元。 + + + 節點的文字內容。 + + + 標記之間的泛空白字元。 + + + XML 宣告 (例如,<?xml version='1.0'?>)。 + + + 提供 剖析 XML 片段所需的所有內容資訊。 + + + 使用指定的 、基底 URI、xml:lang、xml:space 和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 子集用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、基底 URI、xml:lang、xml:space、編碼方式和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang 和 xml:space 的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang、xml:space 和編碼方式,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 取得或設定基底 URI。 + 用來解析 DTD 檔案的基底 URI。 + + + 取得或設定文件型別宣告的名稱。 + 文件型別宣告的名稱。 + + + 取得或設定編碼類型。 + 指示編碼類型的 物件。 + + + 取得或設定內部 DTD 子集。 + 內部 DTD 子集。例如,這個屬性會傳回介於方括弧 <!DOCTYPE doc [...]> 之間的所有內容。 + + + 取得或設定 + XmlNamespaceManager。 + + + 取得用來原子化字串的 。如需原子化字串的詳細資訊,請參閱 + XmlNameTable。 + + + 取得或設定公用識別項。 + 公用識別項。 + + + 取得或設定系統識別項。 + 系統識別項。 + + + 取得或設定目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。如果範圍內沒有 xml:lang,則會傳回 String.Empty。 + + + 取得或設定目前的 xml:space 範圍。 + + 值,指出 xml:space 的範圍。 + + + 表示 XML 限定名稱 (Qualified Name)。 + + + 初始化 類別的新執行個體。 + + + 使用指定的名稱,初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + + 使用指定的名稱和命名空間,來初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + 物件的命名空間。 + + + 提供空白的 + + + 判斷指定的 物件是否等於目前的 物件。 + 如果這兩個是相同的執行個體物件,則為 true,否則為 false。 + 要比較的 。 + + + 傳回 的雜湊程式碼。 + 這個物件的雜湊程式碼。 + + + 取得值,指出 是否為空白。 + 如果名稱和命名空間為空白字串,則為 true,否則為 false。 + + + 取得 限定名稱的字串表示。 + 限定名稱的字串表示,如果物件並未定義名稱,則為 String.Empty。 + + + 取得 命名空間的字串表示。 + 命名空間的字串表示,如果物件並未定義命名空間,則為 String.Empty。 + + + 比較兩個 物件。 + 如果這兩個物件具有相同的名稱和命名空間值,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 比較兩個 物件。 + 如果這兩個物件的名稱和命名空間值不同,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + 物件的名稱。 + 物件的命名空間。 + + + 表示提供快速、非快取、順向 (Forward-only) 存取 XML 資料的讀取器 (Reader)。若要瀏覽此類型的.NET Framework 原始碼,請參閱參考來源。 + + + 初始化 XmlReader 類別的新執行個體。 + + + 在衍生類別中覆寫時,取得目前節點上的屬性數目。 + 目前節點的屬性數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的基底 URI。 + 目前節點的基底 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,這個值表示 是否會實作二進位內容讀取方法。 + 如果實作二進位內容讀取方法,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出 是否會實作 方法。 + true if the implements the method; otherwise false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出這個讀取器是否可以剖析和解析實體。 + 如果讀取器可以剖析和解析實體,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 建立新執行個體使用指定的資料流,以預設設定。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + + + 建立新具有指定的資料流和設定執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + + + 建立新執行個體使用指定的資料流、 設定和內容資訊進行剖析。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + + 建立新使用指定的文字讀取器的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + + 值為 null。 + + + 建立新使用指定的文字讀取器和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定。這個值可以是 null。 + + 值為 null。 + + + 建立新剖析使用指定的文字讀取器、 設定和內容資訊的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + 屬性都包含值(這些 NameTable 屬性中只有一個可以設定和使用)。 + + + 使用指定的 URI,建立新的 執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 類別是用來將路徑轉換成正式的資料代表。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + URI 所識別的檔案不存在。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 URI 和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 物件上的 物件是用於將路徑轉換成標準資料表示。如果 為 null,則會使用新的 物件。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + 找不到由 URI 指定的檔案。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 XML 讀取器和設定的執行個體。 + 包裝的物件周圍指定物件。 + 您想要當做基礎 XML 讀取器使用的物件。 + 新的設定執行個體。 物件的一致性層級必須符合基礎讀取器的一致性層級,或是必須設為 。 + + 值為 null。 + 如果 物件指定的一致性層級與基礎讀取器的一致性層級不相符。-或-基礎 處於 狀態。 + + + 在衍生類別中覆寫時,取得 XML 文件中目前節點的深度。 + XML 文件中目前節點的深度。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 類別目前的執行個體所使用的資源全部釋出。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得指出讀取器是否在資料流結尾的值。 + 如果讀取器定位於資料流結尾,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。這個方法不會移動讀取器。 + 屬性的索引。索引以零為起始。(第一個屬性的索引為 0。) + + 超出範圍。它必須是非負值,而且小於屬性集合的大小。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。這個方法不會移動讀取器。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步取得目前節點的值。 + 目前節點的值。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 取得值,表示目前節點是否具有任何屬性。 + 如果目前節點擁有屬性,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否具有 + 如果讀取器目前所在節點具有 Value,則為 true,否則為 false。如果為 false,則節點的值為 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為從 DTD 或結構描述中定義的預設值產生的屬性。 + 如果目前節點是 DTD 或結構描述中定義的預設值所產生的屬性,則為 true,如果已經明確設定屬性值,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為空項目 (例如,<MyElement/>)。 + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱。 + 如果名稱有效,則為 true,否則為 false。 + 要驗證的名稱。 + + 值為 null。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱語彙基元。 + 如果它是有效的名稱語彙基元,則為 true,否則為 false。 + 要驗證的名稱語彙基元。 + + 值為 null。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記。 + 如果 找到開頭標記或空項目標記,則為 true,如果找到的節點型別並非 XmlNodeType.Element,則為 false。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,並且 Name 屬性符合指定的字串,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目 Name 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 Name 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目的 LocalName 和 NamespaceURI 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 LocalName 屬性。 + 字串符合所找到項目的 NamespaceURI 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的區域名稱。 + 目前節點名稱的前置詞被移除。例如,對 <bk:book> 項目而言,LocalName 為 book。對於沒有名稱的節點型別 (如 Text、Comment 等),這個屬性會傳回 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,解析目前項目範圍內的命名空間前置詞。 + 前置詞對應的命名空間 URI,如果找不到符合的前置詞,則為 null。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至具有指定索引的屬性。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數的值是負數。 + + + 在衍生類別中覆寫時,移至具有指定之 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在衍生類別中覆寫時,移至具有指定的 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 檢查目前節點是否為內容 (非空白區文字、CDATA、Element、EndElement、EntityReference 或 EndEntity) 節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。它會略過下列型別的節點:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步檢查目前節點是否為內容節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,移至包含目前屬性節點的項目上。 + 如果讀取器位於屬性 (讀取器移至擁有該屬性的項目) 上,則為 true,如果讀取器不在屬性 (不會變更讀取器的位置),則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至第一個屬性。 + 如果屬性存在 (讀取器移至第一個屬性),則為 true,否則為 false (不會變更讀取器的位置)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至下一個屬性。 + 如果有下一個屬性,則為 true,如果沒有其他屬性,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的限定名稱。 + 目前節點的限定名稱。例如,對 <bk:book> 項目而言,Name 為 bk:book。傳回的名稱需視節點的 而定。下列節點類型會傳回所列的值。其他所有節點類型都會傳回空字串。節點類型名稱 Attribute屬性的名稱。 DocumentType文件類型名稱。 Element標記名稱。 EntityReference所參考的實體名稱。 ProcessingInstruction處理指示的目標。 XmlDeclarationxml 常值 (Literal) 字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器所在節點的命名空間 URI (如 W3C 命名空間規格中所定義)。 + 目前節點的命名空間 URI,否則為空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與這個實作相關的 + XmlNameTable 可讓您取得節點中字串的原子化版本。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的類型。 + 其中一個列舉值,指定目前節點的類型。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與目前節點相關聯的命名空間前置詞。 + 與目前節點相關聯的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,從資料流讀取下一個節點。 + true如果已成功 ; 讀取下一個節點否則, false。 + 剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取資料流中的下一個節點。 + 如果成功讀取下一個節點,則為 true,如果沒有其他節點可讀取,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,將屬性值剖析成一個或多個 Text、EntityReference 或 EndEntity 節點。 + 如果傳回節點,則為 true。如果在初次呼叫時讀取器不在屬性節點,或者已經讀取全部屬性值,則為 false。空白的屬性 (例如 misc="") 會對含有 String.Empty 值的單一節點傳回 true。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以指定型别的物件形式讀取內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。例如,將 物件轉換為 xs:string 時,可以使用它。這個值可以是 null。 + 此內容的目標型別之格式不正確。 + 嘗試的轉換無效。 + + 值為 null。 + 目前節點不是受支援的節點型別。如需詳細資訊,請參閱下表。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取做為指定型别之物件的內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以 Boolean 的形式讀取目前位置上的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式讀取目前位置的文字內容。 + 雙精確度浮點數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式讀取目前位置的文字內容。 + 單精確度浮點數形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 32 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 64 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式,非同步讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以要求之類型的形式,非同步讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為雙精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 的形式,讀取目前的項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查目前節點為結尾標記,並使讀取器前進至下一個節點。 + 目前節點並非結尾標記,或在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,將所有的內容當做字串讀取,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。如果目前節點既不是項目也不是屬性,則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以字串形式非同步讀取所有內容,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,讀取代表這個節點及其所有子節點的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取表示這個節點及其所有子系的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查以確定目前節點為項目,然後使讀取器前進至下一個節點。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前節點為具有指定的 的項目,並使讀取器前進至下一個節點。 + 項目的限定名稱。 + 在輸入資料流中遇到錯誤的 XML。-或-項目的 不符合給指定的 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前內容節點為具有指定的 的項目,並使讀取器進至下一個節點。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 在輸入資料流中遇到錯誤的 XML。-或-找到的項目的 屬性不符合指定的引數。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器的狀態。 + 其中一個列舉值,這個值指定讀取器的狀態。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回新的 XmlReader 執行個體,可用於讀取目前的節點及其所有子代 (Descendant)。 + 新的 XML 讀取器執行個體設定為。呼叫方法會將新的讀取器置於呼叫之前為目前的節點方法。 + XML 讀取器未置於項目時呼叫這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 前進至下一個具有指定限定名稱的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。如果呼叫 時, 並未置於項目上,這個方法會傳回 false,而 的位置不變。 + 您要移至之項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 前進至下一個具有指定區域名稱和命名空間 URI 的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 您要移至之項目的本機名稱。 + 您要移至之項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 在找到具有指定限定名稱的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在找到具有指定區域名稱和命名空間 URI 的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 將 XmlReader 前進至下一個具有指定限定名稱的同層級項目。 + 如果已找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 將 XmlReader 前進至下一個具有指定區域名稱和命名空間 URI 的同層級項目。 + 如果找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的本機名稱。 + 您要移至之同層級項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 目前的節點沒有值 ( 為 false)。 + + 值為 null。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + XML 資料的語式不正確。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,解析 EntityReference 節點的實體參考。 + 讀取器並非位於 EntityReference 節點上;這個讀取器實作無法解析實體 ( 傳回 false)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得 物件,用於建立這個 執行個體。 + + 物件,用於建立這個讀取器執行個體。如果未使用 方法建立這個讀取器,則這個屬性會傳回 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 略過目前節點的子節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式略過目前節點的子節點。 + 目前節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,取得目前節點的文字值。 + 傳回值需視節點的 而定。下表列出具有傳回值的節點類型。所有其他節點型別都會傳回 String.Empty。節點類型值 Attribute屬性的值。 CDATACDATA 區段的內容。 Comment註解的內容。 DocumentType內部子集。 ProcessingInstruction除了目標之外的完整內容。 SignificantWhitespace在混合內容模型中標記間的泛空白字元。 Text文字節點的內容。 Whitespace標記間的泛空白字元。 XmlDeclaration宣告的內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得目前節點的 Common Language Runtime (CLR) 類型。 + CLR 類型,對應至節點的具類型值。預設值為 System.String。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:space 範圍。 + 其中一個 值。如果 xml:space 範圍不存在,這個屬性預設值為 XmlSpace.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為false。 + + + 取得或設定值,綁表示是否要執行字元檢查。 + true 表示執行字元檢查,否則為 false。預設值為 true。注意事項如果 正在處理文字資料,則它會始終檢查 XML 名稱和文字內容是否有效,而不論屬性設定。將 設為 false 會關閉字元實體參考的字元檢查。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出是否應在關閉讀取器時關閉基礎資料流或 + true 表示關閉讀取器時關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 將遵循的一致性層級。 + 其中一個列舉值,指定 XML 讀取器將強制執行的一致性層級。預設值為 + + + 取得或設定決定 DTD 處理的值。 + 其中一個列舉值,決定 DTD 處理方式。預設值為 + + + 取得或設定值,指出是否忽略註解。 + true 表示忽略註解,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略處理指示。 + true 表示忽略處理指示,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略不重要的空白字元。 + true 表示忽略泛空白字元,否則為 false。預設值為 false。 + + + 取得或設定 物件中的行號位移。 + 行號位移。預設值為 0。 + + + 取得或設定 物件中的行位置位移。 + 行位置位移。預設值為 0。 + + + 取得或設定值,指出文件中產生自展開實體的最大可允許字元數。 + 來自展開實體的最大可允許字元數。預設值為 0。 + + + 取得或設定值,指出 XML 文件中最大可允許字元數。零 (0) 的值表示對 XML 文件大小沒有限制。非零值指定大小上限,以字元為單位。 + XML 文件的最大可允許字元數。預設值為 0。 + + + 取得或設定用於原子化字串比較的 + + ,儲存使用這個 物件建立之所有 執行個體所使用的所有原子化字串。預設值為 null。如果這個值為 null,則建立的 執行個體會使用新的空 + + + 將設定類別的成員重設為其預設值。 + + + 取得目前的 xml:space 範圍。 + + + xml:space 範圍等於 default。 + + + 無 xml:space 範圍。 + + + xml:space 範圍等於 preserve。 + + + 表示寫入器,其可提供快速、非快取的順向方法來產生含有 XML 資料之資料流或檔案。 + + + 初始化 類別的新執行個體。 + + + 使用指定的資料流,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + The value is null. + + + 使用資料流和 物件,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + The value is null. + + + 使用指定的 物件,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 類別目前的執行個體所使用的資源全部釋出。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示會同時釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + 表示非同步 Flush 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,傳回最接近命名空間 URI 在目前命名空間範圍中定義的前置詞。 + 命名空間前置詞;如果在目前範圍中找不到符合的命名空間 URI,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 取得 物件,用於建立這個 執行個體。 + 用於建立這個寫入器執行個體的 物件。如果未使用 方法建立這個寫入器,則這個屬性會傳回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出在 的目前位置找到的所有屬性。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出在 中的目前位置找到的所有屬性。 + 表示非同步 WriteAttributes 作業的工作。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定的區域名稱與數值的屬性。 + 屬性的本機名稱。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定區域名稱、命名空間 URI 和值的屬性。 + 屬性的本機名稱。 + 與屬性相關聯的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出具有指定的前置詞、區域名稱、命名空間 URI 及其值的屬性。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出具有指定之前置詞、區域名稱、命名空間 URI 和值的屬性。 + 表示非同步 WriteAttributeString 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 Base64 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 base64 並寫出產生的文字。 + 表示非同步 WriteBase64 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 BinHex 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 BinHex 並寫出產生的文字。 + 表示非同步 WriteBinHex 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 要放在 CDATA 區塊中的文字。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 表示非同步 WriteCData 作業的工作。 + 要放在 CDATA 區塊中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,強制產生指定之 Unicode 字元值的字元實體。 + 要產生字元實體的 Unicode 字元。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式強制產生指定的 Unicode 字元值的字元實體。 + 表示非同步 WriteCharEntity 作業的工作。 + 要產生字元實體的 Unicode 字元。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,一次將文字寫入一個緩衝區。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式一次將文字寫入一個緩衝區。 + 表示非同步 WriteChars 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的註解 <!--...-->。 + 要放入註解中的文字。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定之文字的註解 <!--...-->。 + 表示非同步 WriteComment 作業的工作。 + 要放入註解中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + 表示非同步 WriteDocType 作業的工作。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱和值的項目。 + 項目的本機名稱。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱、命名空間 URI 和值的項目。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定的前置詞、區域名稱、命名空間 URI 和值的項目。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、區域名稱、命名空間 URI 和值的項目。 + 表示非同步 WriteElementString 作業的工作。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,會關閉先前的 呼叫。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉上一個 呼叫。 + 表示非同步 WriteEndAttribute 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + 表示非同步 WriteEndDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出如 &name; 的實體參考。 + 實體參考的名稱。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將實體參考寫出為 &name;。 + 表示非同步 WriteEntityRef 作業的工作。 + 實體參考的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteFullEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 要寫入的名稱。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 表示非同步 WriteName 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 要寫入的名稱。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 表示非同步 WriteNmToken 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 表示非同步 WriteNode 作業的工作。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步方式寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 表示非同步 WriteProcessingInstruction 作業的工作。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 表示非同步 WriteQualifiedName 作業的工作。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從字元緩衝區手動寫入未經處理的標記。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,從字串手動寫入未經處理的標記 (Raw Markup)。 + 包含要寫入之文字的字串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從字元緩衝區手動寫入未經處理的標記。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式從字串手動寫入未經處理的標記 (Raw Markup)。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱的屬性開頭。 + 屬性的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定的前置詞、區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、本機名稱和命名空間 URI 之屬性的開頭。 + 表示非同步 WriteStartAttribute 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告與獨立屬性。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告。 + 表示非同步 WriteStartDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告與獨立屬性。 + 表示非同步 WriteStartDocument 作業的工作。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定之區域名稱的開頭標記。 + 項目的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記並與指定的命名空間產生關聯。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。如果這個命名空間已經在範圍中並具有相關聯的前置詞,則寫入器也會自動寫入前置詞。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記,並與指定的命名空間與前置詞產生關聯。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的開頭標記,並將它與指定的命名空間與前置詞產生關聯。 + 表示非同步 WriteStartElement 作業的工作。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得寫入器的狀態。 + 其中一個 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的文字內容。 + 要寫入的文字。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的文字內容。 + 表示非同步 WriteString 作業的工作。 + 要寫入的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 表示非同步 WriteSurrogateCharEntity 作業的工作。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入物件值。 + 要寫入的物件值。附註:使用 .NET Framework 3.5 的版本時,這個方法會接受 做為參數。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入單精確度浮點數。 + 要寫入的單精確度浮點數。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出指定的空白字元。 + 空白字元的字串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的空白字元。 + 表示非同步 WriteWhitespace 作業的工作。 + 空白字元的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,取得表示目前 xml:space 範圍的 + XmlSpace,表示目前的 xml:space 範圍。值意義 None如果 xml:space 範圍不存在,這是預設值。Default目前的範圍為 xml:space="default"。Preserve目前的範圍為 xml:space="preserve"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定值,指出非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為 false。 + + + 取得或設定值,這個值表示 XML 寫入器是否應該檢查以確定文件中的所有字元都符合 W3C XML 1.0 建議事項中的<2.2 字元>一節。 + true 表示執行字元檢查,否則為 false。預設值為 true。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出呼叫 方法時, 是否也應該關閉基礎資料流或 + true 表示也關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 XML 寫入器檢查 XML 輸出的一致性層級。 + 其中一個指定一致性層級 (文件、片段或自動偵測) 的列舉值。預設值為 + + + 取得或設定要使用的文字編碼方式類型。 + 要使用的文字編碼方式。預設值為 Encoding.UTF8。 + + + 取得或設定值,指出是否要縮排項目。 + true 表示在新行和縮排上寫入個別項目,否則為 false。預設值為 false。 + + + 取得或設定縮排時使用的字元字串。當 屬性設為 true 時會使用這項設定。 + 縮排時使用的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設值為兩個空格。 + The value assigned to the is null. + + + 取得或設定值,這個值表示 是否應該在寫入 XML 內容時移除重複的命名空間宣告。預設行為是讓寫入器輸出寫入器命名空間解析程式中出現的所有命名空間宣告。 + + 列舉類型,用來指定是否要移除 中的重複命名空間宣告。 + + + 取得或設定用於分行符號的字元字串。 + 用於分行符號的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設為 \r\n (歸位字元、新行)。 + The value assigned to the is null. + + + 取得或設定值,指出是否要將輸出中的分行符號標準化。 + 其中一個 值。預設值為 + + + 取得或設定值,指出是否將屬性寫在新行上。 + true 表示將屬性寫在獨立的行上,否則為 false。預設值為 false。注意事項當 屬性值為 false 時,這項設定不會有任何作用。當 設為 true 時,會在每個屬性之前加上新行和一個額外的縮排層級。 + + + 取得或設定值,指出是否省略 XML 宣告。 + true 表示省略 XML 宣告,否則為 false。預設值為 false,表示會寫入 XML 宣告。 + + + 將設定類別的成員重設為其預設值。 + + + 取得或設定值,指出 是否會在呼叫 方法時,將結尾標記加入所有未封閉的項目標記。 + 如果將關閉所有未封閉的項目標記,則為 true,否則為 false。預設值是 true。 + + + 依全球資訊網協會 (W3C) XML 結構描述第 1 部分:結構及XML 結構描述第 2 部分:資料類型 所規定之 XML 結構描述的記憶體中表示。 + + + 指示屬性 (Attribute) 或項目是否需要以命名空間前置詞限定。 + + + 項目和屬性格式未在結構描述中指定。 + + + 項目和屬性必須以命名空間前置詞限定。 + + + 項目和屬性不需要以命名空間前置詞限定。 + + + 為 XML 序列化和還原序列化提供自訂格式化。 + + + 這個方法應保留且不應予以使用。實作 IXmlSerializable 介面時,您應該從這個方法傳回 null (在 Visual Basic 中為 Nothing),而且如果需要指定自訂結構描述,請改為將 套用至類別。 + + ,描述物件的 XML 表示,該物件由 方法產生,由 方法取用。 + + + 從物件的 XML 表示產生該物件。 + 還原序列化物件的 資料流。 + + + 將物件轉換成其 XML 表示。 + 序列化物件的 資料流。 + + + 套用至型別後,儲存傳回 XML 結構描述之型別的靜態方法名稱以及控制型別之序列化 (Serialization) 的 (或用於匿名型別的 )。 + + + 初始化 類別的新執行個體,並採用提供型別之 XML 結構描述的靜態方法名稱。 + 要實作之靜態方法的名稱。 + + + 取得或設定值,以便判斷目標類別是否為萬用字元,或者該類別的結構描述是否僅含有 xs:any 項目。 + 如果該類別為萬用字元,或者結構描述僅含有 xs:any 項目,則為 true,否則為 false。 + + + 取得提供型別之 XML 結構描述的靜態方法名稱以及其 XML 結構描述資料型別的名稱。 + 由 XML 基礎結構叫用以傳回 XML 結構描述之方法的名稱。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.dll b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..1987219 Binary files /dev/null and b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.dll differ diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..e2f9250 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/System.Xml.ReaderWriter.xml @@ -0,0 +1,2608 @@ + + + + System.Xml.ReaderWriter + + + + Specifies the amount of input or output checking that and objects perform. + + + The or object automatically detects whether document-level or fragment-level checking should be performed, and does the appropriate checking. If you're wrapping another or object, the outer object doesn't do any additional conformance checking. Conformance checking is left up to the underlying object.See the and properties for details on how the compliance level is determined. + + + The XML data complies with the rules for a well-formed XML 1.0 document, as defined by the W3C. + + + The XML data is a well-formed XML fragment, as defined by the W3C. + + + Specifies the options for processing DTDs. The enumeration is used by the class. + + + Causes the DOCTYPE element to be ignored. No DTD processing occurs. + + + Specifies that when a DTD is encountered, an is thrown with a message that states that DTDs are prohibited. This is the default behavior. + + + Provides an interface to enable a class to return line and position information. + + + Gets a value indicating whether the class can return line information. + true if and can be provided; otherwise, false. + + + Gets the current line number. + The current line number or 0 if no line information is available (for example, returns false). + + + Gets the current line position. + The current line position or 0 if no line information is available (for example, returns false). + + + Provides read-only access to a set of prefix and namespace mappings. + + + Gets a collection of defined prefix-namespace mappings that are currently in scope. + An that contains the current in-scope namespaces. + An value that specifies the type of namespace nodes to return. + + + Gets the namespace URI mapped to the specified prefix. + The namespace URI that is mapped to the prefix; null if the prefix is not mapped to a namespace URI. + The prefix whose namespace URI you wish to find. + + + Gets the prefix that is mapped to the specified namespace URI. + The prefix that is mapped to the namespace URI; null if the namespace URI is not mapped to a prefix. + The namespace URI whose prefix you wish to find. + + + Specifies whether to remove duplicate namespace declarations in the . + + + Specifies that duplicate namespace declarations will not be removed. + + + Specifies that duplicate namespace declarations will be removed. For the duplicate namespace to be removed, the prefix and the namespace must match. + + + Implements a single-threaded . + + + Initializes a new instance of the NameTable class. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if one already exists in the NameTable. If is zero, String.Empty is returned. + The character array containing the string to add. + The zero-based index into the array specifying the first character of the string. + The number of characters in the string. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Atomizes the specified string and adds it to the NameTable. + The atomized string or the existing string if it already exists in the NameTable. + The string to add. + + is null. + + + Gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to find. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- >= .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + Gets the atomized string with the specified value. + The atomized string object or null if the string has not already been atomized. + The name to find. + + is null. + + + Specifies how to handle line breaks. + + + New line characters are entitized. This setting preserves all characters when the output is read by a normalizing . + + + The new line characters are unchanged. The output is the same as the input. + + + New line characters are replaced to match the character specified in the property. + + + Specifies the state of the reader. + + + The method has been called. + + + The end of the file has been reached successfully. + + + An error occurred that prevents the read operation from continuing. + + + The Read method has not been called. + + + The Read method has been called. Additional methods may be called on the reader. + + + Specifies the state of the . + + + Indicates that an attribute value is being written. + + + Indicates that the method has been called. + + + Indicates that element content is being written. + + + Indicates that an element start tag is being written. + + + An exception has been thrown, which has left the in an invalid state. You can call the method to put the in the state. Any other method calls results in an . + + + Indicates that the prolog is being written. + + + Indicates that a Write method has not yet been called. + + + Encodes and decodes XML names, and provides methods for converting between common language runtime types and XML Schema definition language (XSD) types. When converting data types, the values returned are locale-independent. + + + Decodes a name. This method does the reverse of the and methods. + The decoded name. + The name to be transformed. + + + Converts the name to a valid XML local name. + The encoded name. + The name to be encoded. + + + Converts the name to a valid XML name. + Returns the name with any invalid characters replaced by an escape string. + A name to be translated. + + + Verifies the name is valid according to the XML specification. + The encoded name. + The name to be encoded. + + + Converts the to a equivalent. + A Boolean value, that is, true or false. + The string to convert. + + is null. + + does not represent a Boolean value. + + + Converts the to a equivalent. + A Byte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Char representing the single character. + The string containing a single character to convert. + The value of the parameter is null. + The parameter contains more than one character. + + + Converts the to a using the specified + A equivalent of the . + The value to convert. + One of the values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert.Note   The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values. For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type. For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + The format from which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against this format. + + is null. + + or is an empty string or is not in the specified format. + + + Converts the supplied to a equivalent. + The equivalent of the supplied string. + The string to convert. + An array of formats from which can be converted. Each format in can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) The string is validated against one of these formats. + + + Converts the to a equivalent. + A Decimal equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Double equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Guid equivalent of the string. + The string to convert. + + + Converts the to a equivalent. + An Int16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An Int64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + An SByte equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A Single equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a . + A string representation of the Boolean, that is, "true" or "false". + The value to convert. + + + Converts the to a . + A string representation of the Byte. + The value to convert. + + + Converts the to a . + A string representation of the Char. + The value to convert. + + + Converts the to a using the specified. + A equivalent of the . + The value to convert. + One of the values that specify how to treat the value. + The value is not valid. + The or value is null. + + + Converts the supplied to a . + A representation of the supplied . + The to be converted. + + + Converts the supplied to a in the specified format. + A representation in the specified format of the supplied . + The to be converted. + The format to which is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. (For more information see http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Converts the to a . + A string representation of the Decimal. + The value to convert. + + + Converts the to a . + A string representation of the Double. + The value to convert. + + + Converts the to a . + A string representation of the Guid. + The value to convert. + + + Converts the to a . + A string representation of the Int16. + The value to convert. + + + Converts the to a . + A string representation of the Int32. + The value to convert. + + + Converts the to a . + A string representation of the Int64. + The value to convert. + + + Converts the to a . + A string representation of the SByte. + The value to convert. + + + Converts the to a . + A string representation of the Single. + The value to convert. + + + Converts the to a . + A string representation of the TimeSpan. + The value to convert. + + + Converts the to a . + A string representation of the UInt16. + The value to convert. + + + Converts the to a . + A string representation of the UInt32. + The value to convert. + + + Converts the to a . + A string representation of the UInt64. + The value to convert. + + + Converts the to a equivalent. + A TimeSpan equivalent of the string. + The string to convert. The string format must conform to the W3C XML Schema Part 2: Datatypes recommendation for duration. + + is not in correct format to represent a TimeSpan value. + + + Converts the to a equivalent. + A UInt16 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt32 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converts the to a equivalent. + A UInt64 equivalent of the string. + The string to convert. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifies that the name is a valid name according to the W3C Extended Markup Language recommendation. + The name, if it is a valid XML name. + The name to verify. + + is not a valid XML name. + + is null or String.Empty. + + + Verifies that the name is a valid NCName according to the W3C Extended Markup Language recommendation. An NCName is a name that cannot contain a colon. + The name, if it is a valid NCName. + The name to verify. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifies that the string is a valid NMTOKEN according to the W3C XML Schema Part2: Datatypes recommendation + The name token, if it is a valid NMTOKEN. + The string you wish to verify. + The string is not a valid name token. + + is null. + + + Returns the passed in string instance if all the characters in the string argument are valid public id characters. + Returns the passed-in string if all the characters in the argument are valid public id characters. + + that contains the id to validate. + + + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters. + Returns the passed-in string instance if all the characters in the string argument are valid whitespace characters, otherwise null. + + to verify. + + + Returns the passed-in string if all the characters and surrogate pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + Returns the passed-in string if all the characters and surrogate-pair characters in the string argument are valid XML characters, otherwise an XmlException is thrown with information on the first invalid character encountered. + + that contains characters to verify. + + + Specifies how to treat the time value when converting between string and . + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + Time zone information should be preserved when converting. + + + Treat as a local time if a is being converted to a string. + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + Returns detailed information about the last exception. + + + Initializes a new instance of the XmlException class. + + + Initializes a new instance of the XmlException class with a specified error message. + The error description. + + + Initializes a new instance of the XmlException class. + The description of the error condition. + The that threw the XmlException, if any. This value can be null. + + + Initializes a new instance of the XmlException class with the specified message, inner exception, line number, and line position. + The error description. + The exception that is the cause of the current exception. This value can be null. + The line number indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets the line number indicating where the error occurred. + The line number indicating where the error occurred. + + + Gets the line position indicating where the error occurred. + The line position indicating where the error occurred. + + + Gets a message describing the current exception. + The error message that explains the reason for the exception. + + + Resolves, adds, and removes namespaces to a collection and provides scope management for these namespaces. + + + Initializes a new instance of the class with the specified . + The to use. + null is passed to the constructor + + + Adds the given namespace to the collection. + The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.NoteIf the will be used for resolving namespaces in an XML Path Language (XPath) expression, a prefix must be specified. If an XPath expression does not include a prefix, it is assumed that the namespace Uniform Resource Identifier (URI) is the empty namespace. For more information about XPath expressions and the , refer to the and methods. + The namespace to add. + The value for is "xml" or "xmlns". + The value for or is null. + + + Gets the namespace URI for the default namespace. + Returns the namespace URI for the default namespace, or String.Empty if there is no default namespace. + + + Returns an enumerator to use to iterate through the namespaces in the . + An containing the prefixes stored by the . + + + Gets a collection of namespace names keyed by prefix which can be used to enumerate the namespaces currently in scope. + A collection of namespace and prefix pairs currently in scope. + An enumeration value that specifies the type of namespace nodes to return. + + + Gets a value indicating whether the supplied prefix has a namespace defined for the current pushed scope. + true if there is a namespace defined; otherwise, false. + The prefix of the namespace you want to find. + + + Gets the namespace URI for the specified prefix. + Returns the namespace URI for or null if there is no mapped namespace. The returned string is atomized.For more information on atomized strings, see the class. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass String.Empty. + + + Finds the prefix declared for the given namespace URI. + The matching prefix. If there is no mapped prefix, the method returns String.Empty. If a null value is supplied, then null is returned. + The namespace to resolve for the prefix. + + + Gets the associated with this object. + The used by this object. + + + Pops a namespace scope off the stack. + true if there are namespace scopes left on the stack; false if there are no more namespaces to pop. + + + Pushes a namespace scope onto the stack. + + + Removes the given namespace for the given prefix. + The prefix for the namespace + The namespace to remove for the given prefix. The namespace removed is from the current namespace scope. Namespaces outside the current scope are ignored. + The value of or is null. + + + Defines the namespace scope. + + + All namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined. + + + All namespaces that are defined locally at the current node. + + + Table of atomized string objects. + + + Initializes a new instance of the class. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. If length is zero, String.Empty is returned. + The character array containing the name to add. + Zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, atomizes the specified string and adds it to the XmlNameTable. + The new atomized string or the existing one if it already exists. + The name to add. + + is null. + + + When overridden in a derived class, gets the atomized string containing the same characters as the specified range of characters in the given array. + The atomized string or null if the string has not already been atomized. If is zero, String.Empty is returned. + The character array containing the name to look up. + The zero-based index into the array specifying the first character of the name. + The number of characters in the name. + 0 > -or- >= .Length -or- > .Length The above conditions do not cause an exception to be thrown if =0. + + < 0. + + + When overridden in a derived class, gets the atomized string containing the same value as the specified string. + The atomized string or null if the string has not already been atomized. + The name to look up. + + is null. + + + Specifies the type of node. + + + An attribute (for example, id='123' ). + + + A CDATA section (for example, <![CDATA[my escaped text]]> ). + + + A comment (for example, <!-- my comment --> ). + + + A document object that, as the root of the document tree, provides access to the entire XML document. + + + A document fragment. + + + The document type declaration, indicated by the following tag (for example, <!DOCTYPE...> ). + + + An element (for example, <item> ). + + + An end element tag (for example, </item> ). + + + Returned when XmlReader gets to the end of the entity replacement as a result of a call to . + + + An entity declaration (for example, <!ENTITY...> ). + + + A reference to an entity (for example, &num; ). + + + This is returned by the if a Read method has not been called. + + + A notation in the document type declaration (for example, <!NOTATION...> ). + + + A processing instruction (for example, <?pi test?> ). + + + White space between markup in a mixed content model or white space within the xml:space="preserve" scope. + + + The text content of a node. + + + White space between markup. + + + The XML declaration (for example, <?xml version='1.0'?> ). + + + Provides all the context information required by the to parse an XML fragment. + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD subset is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , base URI, xml:lang, xml:space, encoding, and document type values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The name of the document type declaration. + The public identifier. + The system identifier. + The internal DTD subset. The DTD is used for entity resolution, not for document validation. + The base URI for the XML fragment (the location from which the fragment was loaded). + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, and xml:space values. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information about atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + + is not the same XmlNameTable used to construct . + + + Initializes a new instance of the XmlParserContext class with the specified , , xml:lang, xml:space, and encoding. + The to use to atomize strings. If this is null, the name table used to construct the is used instead. For more information on atomized strings, see . + The to use for looking up namespace information, or null. + The xml:lang scope. + An value indicating the xml:space scope. + An object indicating the encoding setting. + + is not the same XmlNameTable used to construct . + + + Gets or sets the base URI. + The base URI to use to resolve the DTD file. + + + Gets or sets the name of the document type declaration. + The name of the document type declaration. + + + Gets or sets the encoding type. + An object indicating the encoding type. + + + Gets or sets the internal DTD subset. + The internal DTD subset. For example, this property returns everything between the square brackets <!DOCTYPE doc [...]>. + + + Gets or sets the . + The XmlNamespaceManager. + + + Gets the used to atomize strings. For more information on atomized strings, see . + The XmlNameTable. + + + Gets or sets the public identifier. + The public identifier. + + + Gets or sets the system identifier. + The system identifier. + + + Gets or sets the current xml:lang scope. + The current xml:lang scope. If there is no xml:lang in scope, String.Empty is returned. + + + Gets or sets the current xml:space scope. + An value indicating the xml:space scope. + + + Represents an XML qualified name. + + + Initializes a new instance of the class. + + + Initializes a new instance of the class with the specified name. + The local name to use as the name of the object. + + + Initializes a new instance of the class with the specified name and namespace. + The local name to use as the name of the object. + The namespace for the object. + + + Provides an empty . + + + Determines whether the specified object is equal to the current object. + true if the two are the same instance object; otherwise, false. + The to compare. + + + Returns the hash code for the . + A hash code for this object. + + + Gets a value indicating whether the is empty. + true if name and namespace are empty strings; otherwise, false. + + + Gets a string representation of the qualified name of the . + A string representation of the qualified name or String.Empty if a name is not defined for the object. + + + Gets a string representation of the namespace of the . + A string representation of the namespace or String.Empty if a namespace is not defined for the object. + + + Compares two objects. + true if the two objects have the same name and namespace values; otherwise, false. + An to compare. + An to compare. + + + Compares two objects. + true if the name and namespace values for the two objects differ; otherwise, false. + An to compare. + An to compare. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + + + Returns the string value of the . + The string value of the in the format of namespace:localname. If the object does not have a namespace defined, this method returns just the local name. + The name of the object. + The namespace of the object. + + + Represents a reader that provides fast, noncached, forward-only access to XML data.To browse the .NET Framework source code for this type, see the Reference Source. + + + Initializes a new instance of the XmlReader class. + + + When overridden in a derived class, gets the number of attributes on the current node. + The number of attributes on the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the base URI of the current node. + The base URI of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the binary content read methods. + true if the binary content read methods are implemented; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether the implements the method. + true if the implements the method; otherwise false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets a value indicating whether this reader can parse and resolve entities. + true if the reader can parse and resolve entities; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Creates a new instance using the specified stream with default settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + + + Creates a new instance with the specified stream and settings. + An object that is used to read the XML data in the stream. + The stream that contains the XML data.The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The value is null. + + + Creates a new instance using the specified stream, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The stream that contains the XML data. The scans the first bytes of the stream looking for a byte order mark or other sign of encoding. When encoding is determined, the encoding is used to continue reading the stream, and processing continues parsing the input as a stream of (Unicode) characters. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition. This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration is not used by the XML reader to decode the data stream. + The value is null. + + + Creates a new instance by using the specified text reader and settings. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new . This value can be null. + The value is null. + + + Creates a new instance by using the specified text reader, settings, and context information for parsing. + An object that is used to read the XML data in the stream. + The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn't used by the XML reader to decode the data stream. + The settings for the new instance. This value can be null. + The context information required to parse the XML fragment. The context information can include the to use, encoding, namespace scope, the current xml:lang and xml:space scope, base URI, and document type definition.This value can be null. + The value is null. + The and properties both contain values. (Only one of these NameTable properties can be set and used). + + + Creates a new instance with specified URI. + An object that is used to read the XML data in the stream. + The URI for the file that contains the XML data. The class is used to convert the path to a canonical data representation. + The value is null. + The does not have sufficient permissions to access the location of the XML data. + The file identified by the URI does not exist. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified URI and settings. + An object that is used to read the XML data in the stream. + The URI for the file containing the XML data. The object on the object is used to convert the path to a canonical data representation. If is null, a new object is used. + The settings for the new instance. This value can be null. + The value is null. + The file specified by the URI cannot be found. + In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, , instead.The URI format is not correct. + + + Creates a new instance by using the specified XML reader and settings. + An object that is wrapped around the specified object. + The object that you want to use as the underlying XML reader. + The settings for the new instance.The conformance level of the object must either match the conformance level of the underlying reader, or it must be set to . + The value is null. + If the object specifies a conformance level that is not consistent with conformance level of the underlying reader.-or-The underlying is in an or state. + + + When overridden in a derived class, gets the depth of the current node in the XML document. + The depth of the current node in the XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the reader is positioned at the end of the stream. + true if the reader is positioned at the end of the stream; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. This method does not move the reader. + The index of the attribute. The index is zero-based. (The first attribute has index 0.) + + is out of range. It must be non-negative and less than the size of the attribute collection. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. + The qualified name of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found or the value is String.Empty, null is returned. This method does not move the reader. + The local name of the attribute. + The namespace URI of the attribute. + + is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously gets the value of the current node. + The value of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Gets a value indicating whether the current node has any attributes. + true if the current node has attributes; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node can have a . + true if the node on which the reader is currently positioned can have a Value; otherwise, false. If false, the node has a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema. + true if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; false if the attribute value was explicitly set. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets a value indicating whether the current node is an empty element (for example, <MyElement/>). + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a value indicating whether the string argument is a valid XML name. + true if the name is valid; otherwise, false. + The name to validate. + The value is null. + + + Returns a value indicating whether or not the string argument is a valid XML name token. + true if it is a valid name token; otherwise false. + The name token to validate. + The value is null. + + + Calls and tests if the current content node is a start tag or empty element tag. + true if finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the property of the element found matches the given argument. + true if the resulting node is an element and the Name property matches the specified string. false if a node type other than XmlNodeType.Element was found or if the element Name property does not match the specified string. + The string matched against the Name property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Calls and tests if the current content node is a start tag or empty element tag and if the and properties of the element found match the given strings. + true if the resulting node is an element. false if a node type other than XmlNodeType.Element was found or if the LocalName and NamespaceURI properties of the element do not match the specified strings. + The string to match against the LocalName property of the element found. + The string to match against the NamespaceURI property of the element found. + Incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified index. + The value of the specified attribute. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified . + The value of the specified attribute. If the attribute is not found, null is returned. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the value of the attribute with the specified and . + The value of the specified attribute. If the attribute is not found, null is returned. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the local name of the current node. + The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, resolves a namespace prefix in the current element's scope. + The namespace URI to which the prefix maps or null if no matching prefix is found. + The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the attribute with the specified index. + The index of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter has a negative value. + + + When overridden in a derived class, moves to the attribute with the specified . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The qualified name of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + When overridden in a derived class, moves to the attribute with the specified and . + true if the attribute is found; otherwise, false. If false, the reader's position does not change. + The local name of the attribute. + The namespace URI of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Checks whether the current node is a content (non-white space text, CDATA, Element, EndElement, EntityReference, or EndEntity) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: ProcessingInstruction, DocumentType, Comment, Whitespace, or SignificantWhitespace. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + Incorrect XML encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously checks whether the current node is a content node. If the node is not a content node, the reader skips ahead to the next content node or end of file. + The of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, moves to the element that contains the current attribute node. + true if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); false if the reader is not positioned on an attribute (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the first attribute. + true if an attribute exists (the reader moves to the first attribute); otherwise, false (the position of the reader does not change). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, moves to the next attribute. + true if there is a next attribute; false if there are no more attributes. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the qualified name of the current node. + The qualified name of the current node. For example, Name is bk:book for the element <bk:book>.The name returned is dependent on the of the node. The following node types return the listed values. All other node types return an empty string.Node type Name AttributeThe name of the attribute. DocumentTypeThe document type name. ElementThe tag name. EntityReferenceThe name of the entity referenced. ProcessingInstructionThe target of the processing instruction. XmlDeclarationThe literal string xml. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned. + The namespace URI of the current node; otherwise an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the associated with this implementation. + The XmlNameTable enabling you to get the atomized version of a string within the node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the type of the current node. + One of the enumeration values that specify the type of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the namespace prefix associated with the current node. + The namespace prefix associated with the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads the next node from the stream. + true if the next node was read successfully; otherwise, false. + An error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the next node from the stream. + true if the next node was read successfully; false if there are no more nodes to read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, parses the attribute value into one or more Text, EntityReference, or EndEntity nodes. + true if there are nodes to return.false if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.An empty attribute, such as, misc="", returns true with a single node with a value of String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. For example, this can be used when converting an object to an xs:string.This value can be null. + The content is not in the correct format for the target type. + The attempted cast is not valid. + The value is null. + The current node is not a supported node type. See the table below for details. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content as an object of the type specified. + The concatenated text content or attribute value converted to the requested type. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the Base64 decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + + is not supported on the current node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content and returns the BinHex decoded binary bytes. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a Boolean. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a object. + The text content at the current position as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a double-precision floating-point number. + The text content as a double-precision floating-point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a single-precision floating point number. + The text content at the current position as a single-precision floating point number. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 32-bit signed integer. + The text content as a 32-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as a 64-bit signed integer. + The text content as a 64-bit signed integer. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as an . + The text content as the most appropriate common language runtime (CLR) object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the text content at the current position as a object. + The text content as a object. + The attempted cast is not valid. + The string format is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the text content at the current position as a object. + The text content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned.Note   With the release of the .NET Framework 3.5, the value of the parameter can now be the type. + An object that is used to resolve any namespace prefixes related to type conversion. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + Read Decimal.MaxValue. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element content as the requested type. + The element content converted to the requested typed object. + The type of the value to be returned. + An object that is used to resolve any namespace prefixes related to type conversion. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the Base64 content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + The value is null. + The current node is not an element node. + The index into the buffer or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The element contains mixed-content. + The content cannot be converted to the requested type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the element and decodes the BinHex content. + The number of bytes written to the buffer. + The buffer into which to copy the resulting text. This value cannot be null. + The offset into the buffer where to start copying the result. + The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a . + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a double-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a double-precision floating-point number. + The element content as a double-precision floating-point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as single-precision floating-point number. + The element content as a single-precision floating point number. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a single-precision floating-point number. + The element content as a single-precision floating point number. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a single-precision floating-point number. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 32-bit signed integer. + The element content as a 32-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 32-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a 64-bit signed integer. + The element content as a 64-bit signed integer. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a 64-bit signed integer. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to the requested type. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as an . + A boxed common language runtime (CLR) object of the most appropriate type. The property determines the appropriate CLR type. If the content is typed as a list type, this method returns an array of boxed objects of the appropriate type. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Reads the current element and returns the contents as a object. + The element content as a object. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the specified local name and namespace URI matches that of the current element, then reads the current element and returns the contents as a object. + The element content as a object. + The local name of the element. + The namespace URI of the element. + The is not positioned on an element. + The current element contains child elements.-or-The element content cannot be converted to a object. + The method is called with null arguments. + The specified local name and namespace URI do not match that of the current element being read. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the current element and returns the contents as a object. + The element content as a object. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current content node is an end tag and advances the reader to the next node. + The current node is not an end tag or if incorrect XML is encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned.If the current node is neither an element nor attribute, an empty string is returned. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads all the content, including markup, as a string. + All the XML content, including markup, in the current node. If the current node has no children, an empty string is returned. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + The XML was not well-formed, or an error occurred while parsing the XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads the content, including markup, representing this node and all its children. + If the reader is positioned on an element or an attribute node, this method returns all the XML content, including markup, of the current node and all its children; otherwise, it returns an empty string. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + Checks that the current node is an element and advances the reader to the next node. + Incorrect XML was encountered in the input stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and advances the reader to the next node. + The qualified name of the element. + Incorrect XML was encountered in the input stream. -or- The of the element does not match the given . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Checks that the current content node is an element with the given and and advances the reader to the next node. + The local name of the element. + The namespace URI of the element. + Incorrect XML was encountered in the input stream.-or-The and properties of the element found do not match the given arguments. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the state of the reader. + One of the enumeration values that specifies the state of the reader. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Returns a new XmlReader instance that can be used to read the current node, and all its descendants. + A new XML reader instance set to . Calling the method positions the new reader on the node that was current before the call to the method. + The XML reader isn't positioned on an element when this method is called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Advances the to the next descendant element with the specified qualified name. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The qualified name of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the to the next descendant element with the specified local name and namespace URI. + true if a matching descendant element is found; otherwise false. If a matching child element is not found, the is positioned on the end tag ( is XmlNodeType.EndElement) of the element.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + The local name of the element you wish to move to. + The namespace URI of the element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads until an element with the specified qualified name is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The qualified name of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Reads until an element with the specified local name and namespace URI is found. + true if a matching element is found; otherwise false and the is in an end of file state. + The local name of the element. + The namespace URI of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Advances the XmlReader to the next sibling element with the specified qualified name. + true if a matching sibling element is found; otherwise false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The qualified name of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + The parameter is an empty string. + + + Advances the XmlReader to the next sibling element with the specified local name and namespace URI. + true if a matching sibling element is found; otherwise, false. If a matching sibling element is not found, the XmlReader is positioned on the end tag ( is XmlNodeType.EndElement) of the parent element. + The local name of the sibling element you wish to move to. + The namespace URI of the sibling element you wish to move to. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + Both parameter values are null. + + + Reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + The current node does not have a value ( is false). + The value is null. + The index into the buffer, or index + count is larger than the allocated buffer size. + The implementation does not support this method. + The XML data is not well-formed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously reads large streams of text embedded in an XML document. + The number of characters read into the buffer. The value zero is returned when there is no more text content. + The array of characters that serves as the buffer to which the text contents are written. This value cannot be null. + The offset within the buffer where the can start to copy the results. + The maximum number of characters to copy into the buffer. The actual number of characters copied is returned from this method. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, resolves the entity reference for EntityReference nodes. + The reader is not positioned on an EntityReference node; this implementation of the reader cannot resolve entities ( returns false). + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this reader instance. If this reader was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Skips the children of the current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously skips the children of the current node. + The current node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlReaderSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the text value of the current node. + The value returned depends on the of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space between markup in a mixed content model. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets The Common Language Runtime (CLR) type for the current node. + The CLR type that corresponds to the typed value of the node. The default is System.String. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets the current xml:space scope. + One of the values. If no xml:space scope exists, this property defaults to XmlSpace.None. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value indicating whether to do character checking. + true to do character checking; otherwise false. The default is true.NoteIf the is processing text data, it always checks that the XML names and text content are valid, regardless of the property setting. Setting to false turns off character checking for character entity references. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the underlying stream or should be closed when the reader is closed. + true to close the underlying stream or when the reader is closed; otherwise false. The default is false. + + + Gets or sets the level of conformance which the will comply. + One of the enumeration values that specifies the level of conformance that the XML reader will enforce. The default is . + + + Gets or sets a value that determines the processing of DTDs. + One of the enumeration values that determines the processing of DTDs. The default is . + + + Gets or sets a value indicating whether to ignore comments. + true to ignore comments; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore processing instructions. + true to ignore processing instructions; otherwise false. The default is false. + + + Gets or sets a value indicating whether to ignore insignificant white space. + true to ignore white space; otherwise false. The default is false. + + + Gets or sets line number offset of the object. + The line number offset. The default is 0. + + + Gets or sets line position offset of the object. + The line position offset. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in a document that result from expanding entities. + The maximum allowable number of characters from expanded entities. The default is 0. + + + Gets or sets a value indicating the maximum allowable number of characters in an XML document. A zero (0) value means no limits on the size of the XML document. A non-zero value specifies the maximum size, in characters. + The maximum allowable number of characters in an XML document. The default is 0. + + + Gets or sets the used for atomized string comparisons. + The that stores all the atomized strings used by all instances created using this object.The default is null. The created instance will use a new empty if this value is null. + + + Resets the members of the settings class to their default values. + + + Specifies the current xml:space scope. + + + The xml:space scope equals default. + + + No xml:space scope. + + + The xml:space scope equals preserve. + + + Represents a writer that provides a fast, non-cached, forward-only way to generate streams or files that contain XML data. + + + Initializes a new instance of the class. + + + Creates a new instance using the specified stream. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The value is null. + + + Creates a new instance using the stream and object. + An object. + The stream to which you want to write. The writes XML 1.0 text syntax and appends it to the specified stream. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which you want to write. The writes XML 1.0 text syntax and appends it to the specified . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified . + An object. + The to which to write to. Content written by the is appended to the . + The value is null. + + + Creates a new instance using the and objects. + An object. + The to which to write to. Content written by the is appended to the . + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Creates a new instance using the specified object. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The value is null. + + + Creates a new instance using the specified and objects. + An object that is wrapped around the specified object. + The object that you want to use as the underlying writer. + The object used to configure the new instance. If this is null, a with default settings is used.If the is being used with the method, you should use the property to obtain an object with the correct settings. This ensures that the created object has the correct output settings. + The value is null. + + + Releases all resources used by the current instance of the class. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + true to release both managed and unmanaged resources; false to release only unmanaged resources. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + The task that represents the asynchronous Flush operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, returns the closest prefix defined in the current namespace scope for the namespace URI. + The matching prefix or null if no matching namespace URI is found in the current scope. + The namespace URI whose prefix you want to find. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gets the object used to create this instance. + The object used to create this writer instance. If this writer was not created using the method, this property returns null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out all the attributes found at the current position in the . + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out all the attributes found at the current position in the . + The task that represents the asynchronous WriteAttributes operation. + The XmlReader from which to copy the attributes. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the attribute with the specified local name and value. + The local name of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes an attribute with the specified local name, namespace URI, and value. + The local name of the attribute. + The namespace URI to associate with the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the attribute with the specified prefix, local name, namespace URI, and value. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the attribute with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteAttributeString operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI of the attribute. + The value of the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as Base64 and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as Base64 and writes out the resulting text. + The task that represents the asynchronous WriteBase64 operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, encodes the specified binary bytes as BinHex and writes out the resulting text. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously encodes the specified binary bytes as BinHex and writes out the resulting text. + The task that represents the asynchronous WriteBinHex operation. + Byte array to encode. + The position in the buffer indicating the start of the bytes to write. + The number of bytes to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a <![CDATA[...]]> block containing the specified text. + The text to place inside the CDATA block. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a <![CDATA[...]]> block containing the specified text. + The task that represents the asynchronous WriteCData operation. + The text to place inside the CDATA block. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, forces the generation of a character entity for the specified Unicode character value. + The Unicode character for which to generate a character entity. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously forces the generation of a character entity for the specified Unicode character value. + The task that represents the asynchronous WriteCharEntity operation. + The Unicode character for which to generate a character entity. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes text one buffer at a time. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes text one buffer at a time. + The task that represents the asynchronous WriteChars operation. + Character array containing the text to write. + The position in the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a comment <!--...--> containing the specified text. + Text to place inside the comment. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a comment <!--...--> containing the specified text. + The task that represents the asynchronous WriteComment operation. + Text to place inside the comment. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the DOCTYPE declaration with the specified name and optional attributes. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the DOCTYPE declaration with the specified name and optional attributes. + The task that represents the asynchronous WriteDocType operation. + The name of the DOCTYPE. This must be non-empty. + If non-null it also writes PUBLIC "pubid" "sysid" where and are replaced with the value of the given arguments. + If is null and is non-null it writes SYSTEM "sysid" where is replaced with the value of this argument. + If non-null it writes [subset] where subset is replaced with the value of this argument. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes an element with the specified local name and value. + The local name of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified local name, namespace URI, and value. + The local name of the element. + The namespace URI to associate with the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes an element with the specified prefix, local name, namespace URI, and value. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes an element with the specified prefix, local name, namespace URI, and value. + The task that represents the asynchronous WriteElementString operation. + The prefix of the element. + The local name of the element. + The namespace URI of the element. + The value of the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes the previous call. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes the previous call. + The task that represents the asynchronous WriteEndAttribute operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes any open elements or attributes and puts the writer back in the Start state. + The XML document is invalid. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes any open elements or attributes and puts the writer back in the Start state. + The task that represents the asynchronous WriteEndDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out an entity reference as &name;. + The name of the entity reference. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out an entity reference as &name;. + The task that represents the asynchronous WriteEntityRef operation. + The name of the entity reference. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, closes one element and pops the corresponding namespace scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously closes one element and pops the corresponding namespace scope. + The task that represents the asynchronous WriteFullEndElement operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid name according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteName operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The name to write. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the specified name, ensuring it is a valid NmToken according to the W3C XML 1.0 recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + The task that represents the asynchronous WriteNmToken operation. + The name to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously copies everything from the reader to the writer and moves the reader to the start of the next sibling. + The task that represents the asynchronous WriteNode operation. + The to read from. + true to copy the default attributes from the XmlReader; otherwise, false. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The name of the processing instruction. + The text to include in the processing instruction. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out a processing instruction with a space between the name and text as follows: <?name text?>. + The task that represents the asynchronous WriteProcessingInstruction operation. + The name of the processing instruction. + The text to include in the processing instruction. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The local name to write. + The namespace URI for the name. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the namespace-qualified name. This method looks up the prefix that is in scope for the given namespace. + The task that represents the asynchronous WriteQualifiedName operation. + The local name to write. + The namespace URI for the name. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes raw markup manually from a character buffer. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes raw markup manually from a string. + String containing the text to write. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes raw markup manually from a character buffer. + The task that represents the asynchronous WriteRaw operation. + Character array containing the text to write. + The position within the buffer indicating the start of the text to write. + The number of characters to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes raw markup manually from a string. + The task that represents the asynchronous WriteRaw operation. + String containing the text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes the start of an attribute with the specified local name. + The local name of the attribute. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the start of an attribute with the specified local name and namespace URI. + The local name of the attribute. + The namespace URI of the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the start of an attribute with the specified prefix, local name, and namespace URI. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the start of an attribute with the specified prefix, local name, and namespace URI. + The task that represents the asynchronous WriteStartAttribute operation. + The namespace prefix of the attribute. + The local name of the attribute. + The namespace URI for the attribute. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the XML declaration with the version "1.0" and the standalone attribute. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the XML declaration with the version "1.0". + The task that represents the asynchronous WriteStartDocument operation. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Asynchronously writes the XML declaration with the version "1.0" and the standalone attribute. + The task that represents the asynchronous WriteStartDocument operation. + If true, it writes "standalone=yes"; if false, it writes "standalone=no". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, writes out a start tag with the specified local name. + The local name of the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace. + The local name of the element. + The namespace URI to associate with the element. If this namespace is already in scope and has an associated prefix, the writer automatically writes that prefix also. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the specified start tag and associates it with the given namespace and prefix. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding. For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names. The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer. Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values). However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the specified start tag and associates it with the given namespace and prefix. + The task that represents the asynchronous WriteStartElement operation. + The namespace prefix of the element. + The local name of the element. + The namespace URI to associate with the element. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the state of the writer. + One of the values. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes the given text content. + The text to write. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes the given text content. + The task that represents the asynchronous WriteString operation. + The text to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, generates and writes the surrogate character entity for the surrogate character pair. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously generates and writes the surrogate character entity for the surrogate character pair. + The task that represents the asynchronous WriteSurrogateCharEntity operation. + The low surrogate. This must be a value between 0xDC00 and 0xDFFF. + The high surrogate. This must be a value between 0xD800 and 0xDBFF. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes the object value. + The object value to write.Note   With the release of the .NET Framework 3.5, this method accepts as a parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a single-precision floating-point number. + The single-precision floating-point number to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Writes a value. + The value to write. + An invalid value was specified. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, writes out the given white space. + The string of white space characters. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Asynchronously writes out the given white space. + The task that represents the asynchronous WriteWhitespace operation. + The string of white space characters. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true. In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + When overridden in a derived class, gets the current xml:lang scope. + The current xml:lang scope. + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + When overridden in a derived class, gets an representing the current xml:space scope. + An XmlSpace representing the current xml:space scope.Value Meaning NoneThis is the default if no xml:space scope exists.DefaultThe current scope is xml:space="default".PreserveThe current scope is xml:space="preserve". + An method was called before a previous asynchronous operation finished. In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifies a set of features to support on the object created by the method. + + + Initializes a new instance of the class. + + + Gets or sets a value that indicates whether asynchronous methods can be used on a particular instance. + true if asynchronous methods can be used; otherwise, false. + + + Gets or sets a value that indicates whether the XML writer should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation. + true to do character checking; otherwise, false. The default is true. + + + Creates a copy of the instance. + The cloned object. + + + Gets or sets a value indicating whether the should also close the underlying stream or when the method is called. + true to also close the underlying stream or ; otherwise, false. The default is false. + + + Gets or sets the level of conformance that the XML writer checks the XML output for. + One of the enumeration values that specifies the level of conformance (document, fragment, or automatic detection). The default is . + + + Gets or sets the type of text encoding to use. + The text encoding to use. The default is Encoding.UTF8. + + + Gets or sets a value indicating whether to indent elements. + true to write individual elements on new lines and indent; otherwise, false. The default is false. + + + Gets or sets the character string to use when indenting. This setting is used when the property is set to true. + The character string to use when indenting. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is two spaces. + The value assigned to the is null. + + + Gets or sets a value that indicates whether the should remove duplicate namespace declarations when writing XML content. The default behavior is for the writer to output all namespace declarations that are present in the writer's namespace resolver. + The enumeration used to specify whether to remove duplicate namespace declarations in the . + + + Gets or sets the character string to use for line breaks. + The character string to use for line breaks. This can be set to any string value. However, to ensure valid XML, you should specify only valid white space characters, such as space characters, tabs, carriage returns, or line feeds. The default is \r\n (carriage return, new line). + The value assigned to the is null. + + + Gets or sets a value indicating whether to normalize line breaks in the output. + One of the values. The default is . + + + Gets or sets a value indicating whether to write attributes on a new line. + true to write attributes on individual lines; otherwise, false. The default is false.NoteThis setting has no effect when the property value is false.When is set to true, each attribute is pre-pended with a new line and one extra level of indentation. + + + Gets or sets a value indicating whether to omit an XML declaration. + true to omit the XML declaration; otherwise, false. The default is false, an XML declaration is written. + + + Resets the members of the settings class to their default values. + + + Gets or sets a value that indicates whether the will add closing tags to all unclosed element tags when the method is called. + true if all unclosed element tags will be closed out; otherwise, false. The default value is true. + + + An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML Schema Part 1: Structures and XML Schema Part 2: Datatypes specifications. + + + Indicates if attributes or elements need to be qualified with a namespace prefix. + + + Element and attribute form is not specified in the schema. + + + Elements and attributes must be qualified with a namespace prefix. + + + Elements and attributes are not required to be qualified with a namespace prefix. + + + Provides custom formatting for XML serialization and deserialization. + + + This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the to the class. + An that describes the XML representation of the object that is produced by the method and consumed by the method. + + + Generates an object from its XML representation. + The stream from which the object is deserialized. + + + Converts an object into its XML representation. + The stream to which the object is serialized. + + + When applied to a type, stores the name of a static method of the type that returns an XML schema and a (or for anonymous types) that controls the serialization of the type. + + + Initializes a new instance of the class, taking the name of the static method that supplies the type's XML schema. + The name of the static method that must be implemented. + + + Gets or sets a value that determines whether the target class is a wildcard, or that the schema for the class has contains only an xs:any element. + true, if the class is a wildcard, or if the schema contains only the xs:any element; otherwise, false. + + + Gets the name of the static method that supplies the type's XML schema and the name of its XML Schema data type. + The name of the method that is invoked by the XML infrastructure to return an XML schema. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/de/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/de/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..87bbef9 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/de/System.Xml.ReaderWriter.xml @@ -0,0 +1,2602 @@ + + + + System.Xml.ReaderWriter + + + + Gibt den Umfang der Eingabe- oder Ausgabeüberprüfung an, die von dem -Objekt und dem -Objekt ausgeführt wird. + + + Das -Objekt oder das -Objekt erkennen automatisch, ob eine Dokumentebenen- oder Fragmentebenenprüfung ausgeführt werden soll, und nehmen die entsprechende Prüfung vor.Wenn Sie ein weiteres - oder -Objekt umschließen, wird für das äußere Objekt keine zusätzliche Übereinstimmungsprüfung vorgenommen.Die Übereinstimmungsprüfung wird dem zugrunde liegenden Objekt überlassen.Weitere Details dahingehend, wie die Übereinstimmungsprüfung festgelegt wird, finden Sie unter den - und den -Eigenschaften. + + + Die XML-Daten entsprechen den Regeln für ein wohlgeformtes XML-Dokument, Version 1.0, wie diese vom World Wide Web Consortium (W3C) festgelegt sind. + + + Die XML-Daten stellen ein wohlgeformtes XML-Fragment dar, wie dies vom World Wide Web Consortium (W3C) festgelegt ist. + + + Gibt die Optionen zum Verarbeiten von DTDs an.Die -Enumeration wird von der -Klasse verwendet. + + + Führt dazu, dass das DOCTYPE-Element ignoriert wird.Keine DTD-Verarbeitung wird durchgeführt. + + + Gibt an, dass beim Auftreten einer DTD eine mit der Meldung ausgelöst wird, dass DTDs nicht zulässig sind.Dies ist das Standardverhalten. + + + Stellt eine Schnittstelle bereit, über die eine Klasse Zeilen- und Positionsinformationen zurückgeben kann. + + + Ruft einen Wert ab, der angibt, ob die Klasse Zeileninformationen zurückgeben kann. + true, wenn und angegeben werden können, andernfalls false. + + + Ruft die aktuelle Zeilennummer ab. + Die aktuelle Zeilennummer oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Ruft die aktuelle Zeilenposition ab. + Die aktuelle Zeilenposition oder 0, wenn keine Zeileninformationen vorliegen (z. B. gibt false zurück). + + + Stellt den schreibgeschützten Zugriff auf eine Gruppe von Präfix- und Namespacezuordnungen bereit. + + + Ruft eine Auflistung von definierten Präfix-Namespace-Zuordnungen ab, die sich derzeit im Gültigkeitsbereich befinden. + Ein , das die derzeit im Gültigkeitsbereich enthaltenen Namespaces enthält. + Ein -Wert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft den dem angegebenen Präfix zugeordneten Namespace-URI ab. + Der Namespace-URI, der dem Präfix zugeordnet ist. null, wenn das Präfix keinem Namespace-URI zugeordnet ist. + Das Präfix, dessen Namespace-URI gesucht werden soll. + + + Ruft das Präfix ab, das dem angegebenen Namespace-URI zugeordnet ist. + Das Präfix, das dem Namespace-URI zugeordnet ist; null, wenn der Namespace-URI keinem Präfix zugeordnet ist. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + + Gibt an, ob doppelte Namespacedeklarationen im entfernt werden sollen. + + + Gibt an, dass doppelte Namespacedeklarationen nicht entfernt werden. + + + Gibt an, dass doppelte Namespacedeklarationen entfernt werden.Voraussetzung für das Entfernen des doppelten Namespace ist, dass Präfix und Namespace übereinstimmen. + + + Implementiert eine Singlethread-. + + + Initialisiert eine neue Instanz der NameTable-Klasse. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit der hinzuzufügenden Zeichenfolge. + Der nullbasierte Index im Array, der das erste Zeichen der Zeichenfolge angibt. + Die Anzahl der Zeichen in der Zeichenfolge. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert die angegebene Zeichenfolge und fügt diese der NameTable hinzu. + Die atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits eine Zeichenfolge in der NameTable vorhanden ist. + Die hinzuzufügende Zeichenfolge. + + ist null. + + + Ruft die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem gesuchten Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – >= .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft die atomisierte Zeichenfolge mit dem angegebenen Wert ab. + Das atomisierte Zeichenfolgenobjekt oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der gesuchte Name. + + ist null. + + + Gibt an, wie Zeilenumbrüche behandelt werden. + + + Zeilenumbruchzeichen werden durch Entitätenzeichen ersetzt.Mit dieser Einstellung werden alle Zeichen beibehalten, wenn die Ausgabe von einem normalisierenden gelesen wird. + + + Die Zeilenumbruchzeichen sind unverändert.Die Ausgabe ist gleich der Eingabe. + + + Zeilenumbruchzeichen werden ersetzt, damit sie mit dem in der -Eigenschaft angegebenen Zeichen übereinstimmen. + + + Gibt den Zustand des Readers an. + + + Die -Methode wurde aufgerufen. + + + Das Ende der Datei wurde mit Erfolg erreicht. + + + Es ist ein Fehler aufgetreten, der verhindert, dass der Lesevorgang fortgeführt werden kann. + + + Die Read-Methode wurde nicht aufgerufen. + + + Die Read-Methode wurde aufgerufen.Für den Reader können zusätzliche Methoden aufgerufen werden. + + + Gibt den Zustand des an. + + + Gibt an, dass ein Attributwert geschrieben wird. + + + Gibt an, dass die -Methode aufgerufen wurde. + + + Gibt an, dass Elementinhalt geschrieben wird. + + + Gibt an, dass ein Elementstarttag geschrieben wird. + + + Eine Ausnahme wurde ausgelöst, die den in einem ungültigen Zustand versetzt hat.Sie können die -Methode aufrufen, um den in den -Zustand zu versetzen.Alle anderen -Methodenaufrufe führen zu einer . + + + Gibt an, dass der Prolog geschrieben wird. + + + Gibt an, dass eine Write-Methode noch nicht aufgerufen wurde. + + + Codiert und decodiert XML-Namen und stellt Methoden für das Konvertieren zwischen Typen der Common Language Runtime und XSD-Typen (XML Schema Definition) bereit.Bei der Konvertierung von Datentypen sind die zurückgegebenen Werte vom Gebietsschema unabhängig. + + + Decodiert einen Namen.Diese Methode ist die Umkehrung der -Methode und der -Methode. + Der decodierte Name. + Der umzuwandelnde Name. + + + Konvertiert den Namen in einen gültigen lokalen XML-Namen. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den Namen in einen gültigen XML-Namen. + Gibt den Namen zurück, wobei ungültige Zeichen durch eine Escapezeichenfolge ersetzt wurden. + Ein zu übersetzender Name. + + + Überprüft, ob der Name entsprechend der XML-Spezifikation gültig ist. + Der codierte Name. + Der zu codierende Name. + + + Konvertiert den in ein -Äquivalent. + Ein Boolean-Wert, d. h. true oder false. + Die zu konvertierende Zeichenfolge. + + is null. + + does not represent a Boolean value. + + + Konvertiert den in ein -Äquivalent. + Ein Byte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Char, das für das einzelne Zeichen steht. + Die Zeichenfolge, die ein einzelnes zu konvertierendes Zeichen enthält. + The value of the parameter is null. + The parameter contains more than one character. + + + Konvertiert den mithilfe von in eine -Struktur. + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, ob das Datum in die Ortszeit konvertiert oder als UTC-Zeit (Coordinated Universal Time) beibehalten werden soll, falls es sich um ein UTC-Datum handelt. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge.Hinweis   Die Zeichenfolge muss einer Teilmenge der W3C-Empfehlung für den XML-dateTime-Typ entsprechen.Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Das Format, aus dem konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird anhand dieses Formats überprüft. + + is null. + + or is an empty string or is not in the specified format. + + + Konvertiert den angegebenen in ein -Äquivalent. + Das -Äquivalent der angegebenen Zeichenfolge. + Die zu konvertierende Zeichenfolge. + Ein Array von Formaten, aus denen konvertiert werden kann.Jedes Format in kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) Die Gültigkeit der Zeichenfolge wird im Vergleich mit einem dieser Formate überprüft. + + + Konvertiert den in ein -Äquivalent. + Ein Decimal-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Double-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Guid-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + + Konvertiert den in ein -Äquivalent. + Ein Int16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Int64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein SByte-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein Single-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung von Boolean, d. h. „true“ oder „false“. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Byte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Char. + Der zu konvertierende Wert. + + + Konvertiert die -Struktur mithilfe von in eine . + Ein -Äquivalent von . + Der zu konvertierende -Wert. + Einer der -Werte, die angeben, wie der -Wert behandelt wird. + The value is not valid. + The or value is null. + + + Konvertiert den angegebenen in einen . + Eine -Darstellung des angegebenen . + Der zu konvertierende . + + + Konvertiert den angegebenen in einen im angegebenen Format. + Eine -Darstellung im angegebenen Format des bereitgestellten . + Der zu konvertierende . + Das Format, in das konvertiert wird.Der Formatparameter kann eine beliebige Teilmenge der W3C-Empfehlung für den XML-DateTime-Typ sein.(Weitere Informationen finden Sie unter „http://www.w3.org/TR/xmlschema-2/#dateTime“.) + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Decimal. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Double. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Guid. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Int64. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des SByte. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des Single. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des TimeSpan. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt16. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt32. + Der zu konvertierende Wert. + + + Konvertiert das -Element in eine . + Eine Zeichenfolgendarstellung des UInt64. + Der zu konvertierende Wert. + + + Konvertiert den in ein -Äquivalent. + Ein TimeSpan-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge.Das Zeichenfolgenformat muss dem W3C-XML-Schema Teil 2 entsprechen: Empfehlung für Datentypen für Dauer. + + is not in correct format to represent a TimeSpan value. + + + Konvertiert den in ein -Äquivalent. + Ein UInt16-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt32-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Konvertiert den in ein -Äquivalent. + Ein UInt64-Äquivalent der Zeichenfolge. + Die zu konvertierende Zeichenfolge. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Überprüft, ob der Name ein gültiger Name gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist. + Der Name, wenn dieser ein gültiger XML-Name ist. + Der zu überprüfende Name. + + is not a valid XML name. + + is null or String.Empty. + + + Überprüft, ob der Name ein gültiger NCName gemäß der W3C-Empfehlung für XML (Extended Markup Language) ist.Ein NCName darf keinen Doppelpunkt enthalten. + Der Name, wenn dieser ein gültiger NCName ist. + Der zu überprüfende Name. + + is null or String.Empty. + + is not a valid non-colon name. + + + Überprüft, ob die Zeichenfolge ein gültiges NMTOKEN gemäß der Empfehlung in W3C XML Schema, Teil 2: „Datentypen“, ist. + Das Namenstoken, wenn es sich um ein gültiges NMTOKEN handelt. + Die Zeichenfolge, die überprüft werden soll. + The string is not a valid name token. + + is null. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Zeichen für eine öffentliche ID sind. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen im Argument gültige Zeichen für eine öffentliche ID sind. + + , der die zu überprüfende ID enthält. + + + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind. + Gibt die übergebene Zeichenfolgeninstanz zurück, wenn alle Zeichen im Zeichenfolgenargument gültige Leerraumzeichen sind, andernfalls null. + Der zu überprüfende . + + + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Gibt die übergebene Zeichenfolge zurück, wenn alle Zeichen und Ersatzzeichenpaare im Zeichenfolgenargument gültige XML-Zeichen sind, andernfalls wird eine XmlException mit Informationen zum ersten ungültigen Zeichen ausgelöst. + Der mit den zu überprüfenden Zeichen. + + + Gibt an, wie der Wert für die Uhrzeit beim Konvertieren zwischen einer Zeichenfolge und behandelt werden soll. + + + Als lokale Zeit behandeln.Wenn das -Objekt eine UTC (Coordinated Universal Time, koordinierte Weltzeit) darstellt, wird es in die lokale Zeit konvertiert. + + + Zeitzoneninformationen sollten bei der Konvertierung beibehalten werden. + + + Als lokale Zeit behandeln, wenn eine -Struktur in eine Zeichenfolge konvertiert wird. + + + Als UTC behandeln.Wenn das -Objekt eine lokale Zeit darstellt, wird es in die koordinierte Weltzeit konvertiert. + + + Gibt ausführliche Informationen über die letzte Ausnahme zurück. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit einer angegebenen Fehlermeldung. + Die Fehlerbeschreibung. + + + Initialisiert eine neue Instanz der XmlException-Klasse. + Die Beschreibung des Fehlerzustands. + Die , die die XmlException ausgelöst hat (falls eine Ausnahme ausgelöst wurde).Dieser Wert kann null sein. + + + Initialisiert eine neue Instanz der XmlException-Klasse mit der angegebenen Meldung, inneren Ausnahme, Zeilennummer und Zeilenposition. + Die Fehlerbeschreibung. + Die Ausnahme, die die Ursache der aktuellen Ausnahme ist.Dieser Wert kann null sein. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft die Nummer der Zeile ab, in der der Fehler aufgetreten ist. + Die Nummer der Zeile, in der der Fehler aufgetreten ist. + + + Ruft die Position der Zeile ab, an der der Fehler aufgetreten ist. + Die Position der Zeile, an der der Fehler aufgetreten ist. + + + Ruft eine Meldung ab, die die aktuelle Ausnahme beschreibt. + Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird. + + + Löst Namespaces auf, fügt sie einer Auflistung hinzu bzw. entfernt sie daraus und ermöglicht die Verwaltung der Gültigkeitsbereiche dieser Namespaces. + + + Initialisiert eine neue Instanz der -Klasse mit der angegebenen . + Die zu verwendende . + null is passed to the constructor + + + Fügt der Auflistung den angegebenen Namespace hinzu. + Das Präfix, das dem hinzugefügten Namespace zugeordnet werden soll.Verwenden Sie String.Empty, um einen Standardnamespace hinzuzufügen.HinweisWenn der jedoch für das Auflösen von Namespaces in einem XPath (XML Path Language)-Ausdruck verwendet wird, muss ein Präfix angegeben werden.Wenn ein XPath-Ausdruck kein Präfix enthält, wird davon ausgegangen, dass der Namespace-URI (Uniform Resource Identifier) der leere Namespace ist.Weitere Informationen über XPath-Ausdrücke und den finden Sie in der -Methode und der -Methode. + Der hinzuzufügende Namespace. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ruft den Namespace-URI für den Standardnamespace ab. + Gibt den Namespace-URI für den Standardnamespace zurück oder String.Empty, wenn kein Standardnamespace vorhanden ist. + + + Gibt einen Enumerator für das Durchlaufen der Namespaces im zurück. + Ein , der die vom gespeicherten Präfixe enthält. + + + Ruft eine Auflistung von Namen sortiert nach Präfix ab, mit der die aktuell im Gültigkeitsbereich vorhanden Namespaces durchlaufen werden können. + Eine Auflistung der derzeit im Gültigkeitsbereich vorhandenen Paare aus Namespace und Präfix. + Ein Enumerationswert, der den Typ der Namespaceknoten angibt, die zurückgegeben werden sollen. + + + Ruft einen Wert ab, der angibt, ob für das angegebene Präfix ein Namespace für den aktuellen abgelegten Gültigkeitsbereich definiert ist. + true, wenn ein definierter Namespace vorhanden ist, andernfalls false. + Das Präfix des zu suchenden Namespaces. + + + Ruft den Namespace-URI für das angegebene Präfix ab. + Gibt den Namespace-URI für zurück oder null, wenn kein zugeordneter Namespace vorhanden ist.Die zurückgegebene Zeichenfolge ist atomisiert.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter der -Klasse. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu suchen, übergeben Sie String.Empty. + + + Sucht das für den angegebenen Namespace-URI deklarierte Präfix. + Das passende Präfix.Wenn es kein zugeordnetes Präfix gibt, gibt die Methode den Wert "String.Empty" zurück.Wenn ein Nullwert angegeben wird, dann wird null zurückgegeben. + Der für das Präfix aufzulösende Namespace. + + + Ruft den ab, der diesem Objekt zugeordnet ist. + Die von diesem Objekt verwendete . + + + Holt einen Namespacebereich vom Stapel. + true, wenn noch Namespacebereiche im Stapel vorhanden sind, false, wenn keine Namespaces mehr geholt werden können. + + + Legt einen Namespacebereich auf den Stapel. + + + Entfernt den angegebenen Namespace für das angegebene Präfix. + Das Präfix für den Namespace. + Der für das angegebene Präfix zu entfernende Namespace.Der entfernte Namespace stammt aus dem aktuellen Namespacebereich.Namespaces außerhalb des aktuellen Gültigkeitsbereichs werden ignoriert. + The value of or is null. + + + Definiert den Namespacebereich. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind.Dies beinhaltet den xmlns:xml-Namespace, der immer implizit deklariert wird.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die im Gültigkeitsbereich des aktuellen Knotens definiert sind. Davon ausgeschlossen ist der xmlns:xml-Namespace, der immer implizit deklariert ist.Die Reihenfolge der zurückgegebenen Namespaces ist nicht definiert. + + + Alle Namespaces, die am aktuellen Knoten lokal definiert sind. + + + Tabelle atomisierter Zeichenfolgenobjekte. + + + Initialisiert eine neue Instanz der -Klasse. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden.Wenn die Länge 0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem hinzuzufügenden Namen. + Nullbasierter Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Atomisiert beim Überschreiben in einer abgeleiteten Klasse die angegebene Zeichenfolge und fügt sie der XmlNameTable hinzu. + Die neue atomisierte Zeichenfolge bzw. die vorhandene, sofern bereits vorhanden. + Der hinzuzufügende Name. + + ist null. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die dieselben Zeichen wie der angegebene Zeichenbereich im angegebenen Array enthält. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde.Wenn  0 ist, wird String.Empty zurückgegeben. + Das Zeichenarray mit dem zu suchenden Namen. + Der nullbasierte Index im Array, der das erste Zeichen des Namens angibt. + Die Anzahl der Zeichen im Namen. + 0 > – oder – >= .Length – oder – > .Length Die oben genannten Bedingungen führen nicht zum Auslösen einer Ausnahme, wenn = 0 (null). + + < 0. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die atomisierte Zeichenfolge ab, die denselben Wert wie die angegebenen Zeichenfolge hat. + Die atomisierte Zeichenfolge oder null, wenn die Zeichenfolge noch nicht atomisiert wurde. + Der zu suchende Name. + + ist null. + + + Gibt den Typ des Knotens an. + + + Ein Attribut (z. B. id='123'). + + + Ein CDATA-Abschnitt (z. B. <![CDATA[my escaped text]]>). + + + Ein Kommentar (z. B. <!-- my comment -->). + + + Ein Dokumentobjekt, das als Stamm der Dokumentstruktur Zugriff auf das gesamte XML-Dokument gewährt. + + + Ein Dokumentfragment. + + + Die vom folgenden Tag angegebene Dokumenttypdeklaration (z. B. <!DOCTYPE...>). + + + Ein Element (z. B. <item>). + + + Ein Endelementtag (z. B. </item>). + + + Wird zurückgegeben, wenn XmlReader aufgrund eines Aufrufs von das Ende der Entitätsersetzung erreicht. + + + Eine Entitätsdeklaration (z. B. <!ENTITY...>). + + + Ein Verweis auf eine Entität (z. B. &num;). + + + Dies wird vom zurückgegeben, wenn keine Read-Methode aufgerufen wurde. + + + Eine Notation in der Dokumenttypdeklaration (z. B. <!NOTATION...>). + + + Eine Verarbeitungsanweisung (z. B. <?pi test?>). + + + Leerraum zwischen Markup in einem Modell für gemischten Inhalt oder Leerraum im xml:space="preserve"-Bereich. + + + Der Textinhalt eines Knotens. + + + Leerraum zwischen Markup. + + + Die XML-Deklaration (z. B. <?xml version='1.0'?>). + + + Stellt sämtliche Kontextinformationen bereit, die von für das Analysieren eines XML-Fragments benötigt werden. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD-Teilmenge wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , Basis-URI, xml:lang, xml:space, Codierung und Dokumenttyp. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der Name der Dokumenttypdeklaration. + Der öffentliche Bezeichner. + Der Systembezeichner. + Die Teilmenge der internen DTD.Die DTD wird für die Entitätsauflösung verwendet, nicht für die Dokumentvalidierung. + Der Basis-URI für das XML-Fragment (der Speicherort, aus dem das Fragment geladen wurde). + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang und xml:space. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Initialisiert eine neue Instanz der XmlParserContext-Klasse mit den angegebenen Werten für , , xml:lang, xml:space sowie Codierung. + Die zum Atomisieren von Zeichenfolgen zu verwendende .Wenn diese null ist, wird stattdessen die Namenstabelle zum Erstellen von verwendet.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + Der , der für die Suche nach Namespaceinformationen verwendet werden soll, oder null. + Der xml:lang-Bereich. + Ein -Wert, der den xml:space-Bereich angibt. + Ein -Objekt, das die Codierungseinstellung angibt. + Bei handelt es sich nicht um die gleiche XmlNameTable, die zum Erstellen von verwendet wird. + + + Ruft den Basis-URI ab oder legt diesen fest. + Der Basis-URI, der zum Auflösen der DTD-Datei verwendet werden soll. + + + Ruft den Namen der Dokumenttypdeklaration ab oder legt diesen fest. + Der Name der Dokumenttypdeklaration. + + + Ruft den Codierungstyp ab oder legt diesen fest. + Ein -Objekt, das den Codierungstyp angibt. + + + Ruft die Teilmenge der internen DTD ab oder legt diese fest. + Die Teilmenge der internen DTD.Diese Eigenschaft gibt z. B. den Inhalt zwischen den eckigen Klammern <!DOCTYPE doc [...]> zurück. + + + Ruft den ab oder legt diesen fest. + XmlNamespaceManager. + + + Ruft die zum Atomisieren von Zeichenfolgen verwendete ab.Weitere Informationen zu atomisierten Zeichenfolgen finden Sie unter . + XmlNameTable. + + + Ruft den öffentlichen Bezeichner ab oder legt diesen fest. + Der öffentliche Bezeichner. + + + Ruft den Systembezeichner ab oder legt diesen fest. + Der Systembezeichner. + + + Ruft den aktuellen xml:lang-Bereich ab oder legt diesen fest. + Der aktuelle xml:lang-Bereich.Wenn xml:lang im Gültigkeitsbereich nicht vorhanden ist, wird String.Empty zurückgegeben. + + + Ruft den aktuellen xml:space-Bereich ab oder legt diesen fest. + Ein -Wert, der den xml:space-Bereich angibt. + + + Stellt einen XML-gekennzeichneten Namen dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen. + Der als Name für das -Objekt zu verwendende lokale Name. + + + Initialisiert eine neue Instanz der -Klasse mit dem angegebenen Namen und Namespace. + Der als Name für das -Objekt zu verwendende lokale Name. + Der Namespace für das -Objekt. + + + Stellt einen leeren bereit. + + + Bestimmt, ob das angegebene -Objekt mit dem aktuellen -Objekt identisch ist. + true, wenn beide dieselbe Objektinstanz sind, andernfalls false. + Das , das verglichen werden soll. + + + Gibt den Hashcode für den zurück. + Ein Hashcode für dieses Objekt. + + + Ruft einen Wert ab, der angibt, ob leer ist. + true, wenn Name und Namespace leere Zeichenfolgen sind, andernfalls false. + + + Ruft eine Zeichenfolgendarstellung für den qualifizierten Namen des ab. + Eine Zeichenfolgendarstellung des gekennzeichneten Namens oder String.Empty, wenn kein Name für das Objekt definiert ist. + + + Ruft eine Zeichenfolgendarstellung für den Namespaces des ab. + Eine Zeichenfolgendarstellung für den Namespace oder String.Empty, wenn kein Namespace für das Objekt definiert ist. + + + Vergleicht zwei -Objekte. + true, wenn beide Objekte dieselben Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Vergleicht zwei -Objekte. + true, wenn die beiden Objekte unterschiedliche Werte für Name und Namespace aufweisen, andernfalls false. + Ein zu vergleichender . + Ein zu vergleichender . + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + + + Gibt den Zeichenfolgenwert von zurück. + Der Zeichenfolgenwert von im Format namespace:localname.Wenn für das Objekt kein Namespace definiert ist, gibt diese Methode nur den lokalen Namen zurück. + Der Name des Objekts. + Der Namespace des Objekts. + + + Stellt einen Reader dar, der einen schnellen Zugriff auf XML-Daten bietet, ohne Zwischenspeicher und welcher nur vorwärts möglich ist.Um den .NET Framework-Quellcode für diesen Typ zu durchsuchen, rufen Sie die Verweisquelle auf. + + + Initialisiert eine neue Instanz derXmlReader-Klasse. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Anzahl der Attribute für den aktuellen Knoten ab. + Die Anzahl der Attribute im aktuellen Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Basis-URI des aktuellen Knotens ab. + Der Basis-URI des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die Methoden für das Lesen von Inhalt im Binärformat implementiert. + true, wenn die Methoden für das Lesen von Inhalt im Binärformat implementiert werden, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob der die angegebene -Methode implementiert. + true, wenn der die -Methode implementiert, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft einen Wert ab, der angibt, ob dieser Reader Entitäten analysieren und auflösen kann. + true, wenn der Reader Entitäten analysieren und auflösen kann, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Erstellt mit dem angegebenen Stream mit den Standardeinstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + + + Erstellt eine neue -Instanz mit dem angegebenen Stream und den angegebenen Einstellungen. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält.Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Stream, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Stream, der die XML-Daten enthält. Der überprüft die ersten Bytes des Streams und durchsucht sie nach einer Bytereihenfolgemarkierung oder einem anderen Codierungszeichen.Nachdem die Codierung bestimmt wurde, wird sie zum weiteren Lesen des Streams verwendet, und die Eingabe wird weiterhin als Stream von (Unicode-)Zeichen analysiert. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für den neuen .Dieser Wert kann null sein. + Der -Wert ist null. + + + Erstellt mit dem angegebenen Text-Reader, den Einstellungen und den Kontextinformationen für Analysezwecke eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der Text-Reader, aus dem die XML-Daten gelesen werden sollen.Ein Text-Reader gibt einen Stream von Unicode-Zeichen zurück, sodass die in der XML-Deklaration angegebene Codierung nicht vom XML-Reader zum Decodieren des Datenstreams verwendet wird. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Die Kontextinformationen, die zum Analysieren des XML-Fragments erforderlich sind.Die Kontextinformationen können die zu verwendende , die Codierung, den Namespacebereich, den aktuellen xml:lang-Bereich, den aktuellen xml:space-Bereich, den Basis-URI und die Dokumenttypdefinition enthalten.Dieser Wert kann null sein. + Der -Wert ist null. + Die und die -Eigenschaften enthalten Werte.(Nur eine dieser NameTable-Eigenschaften kann festgelegt und verwendet werden). + + + Erstellt eine neue -Instanz mit angegebenem URI. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Mit der -Klasse wird der Pfad in eine kanonische Datendarstellung konvertiert. + Der -Wert ist null. + Der verfügt nicht über ausreichende Berechtigungen für den Zugriff auf den Speicherort der XML-Daten. + Die durch den URI angegebene Datei ist nicht vorhanden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen URI und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, mit dem die im Stream enthaltenen XML-Daten gelesen werden. + Der URI der Datei, die die XML-Daten enthält.Das -Objekt für das -Objekt wird zum Konvertieren des Pfads in eine kanonische Datendarstellung verwendet.Wenn null ist, wird ein neues -Objekt verwendet. + Die Einstellungen für die neue -Instanz.Dieser Wert kann null sein. + Der -Wert ist null. + Die durch den URI angegebene Datei kann nicht gefunden werden. + Unter .NET for Windows Store apps oder in der Portable Klassenbibliothek verwenden Sie stattdessen die Basisklassenausnahme .Das URI-Format ist nicht korrekt. + + + Erstellt mit dem angegebenen XML-Reader und den angegebenen Einstellungen eine neue -Instanz. + Ein Objekt, das das angegebene -Objekt umschließt. + Das Objekt, dass Sie als zugrunde liegenden XML-Reader verwenden möchten. + Die Einstellungen für die neue -Instanz.Der Konformitätsgrad des -Objekts muss mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmen oder auf festgelegt werden. + Der -Wert ist null. + Wenn das -Objekt einen Konformitätsgrad angibt, der nicht mit dem Konformitätsgrad des zugrunde liegenden Readers übereinstimmt.- oder - Der zugrunde liegende befindet sich in einem -Zustand oder einem -Zustand. + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die Tiefe des aktuellen Knotens im XML-Dokument ab. + Die Tiefe des aktuellen Knotens im XML-Dokument. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob sich der Reader am Ende des Streams befindet. + true, wenn der Reader am Ende des Streams positioniert ist, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs.Diese Methode verschiebt den Reader nicht. + Der Index des Attributs.Der Index ist nullbasiert.(Das erste Attribut hat den Index 0.) + + liegt außerhalb des Bereichs.Es darf nicht negativ sein und muss kleiner als die Größe der Attributauflistung sein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wird oder Wert String.Empty ist, wird null zurückgegeben.Diese Methode verschiebt den Reader nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + + ist null. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den Wert des aktuellen Knotens asynchron ab. + Der Wert des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft einen Wert ab, der angibt, ob der aktuelle Knoten über Attribute verfügt. + true, wenn der aktuelle Knoten über Attribute verfügt, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten einen aufweisen kann. + true, wenn der Knoten, auf dem der Reader derzeit positioniert ist, einen Value aufweisen darf, andernfalls false.Wenn false, weist der Knoten den Wert String.Empty auf. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein Attribut ist, das aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. + true, wenn der aktuelle Knoten ein Attribut ist, dessen Wert aus dem in der DTD oder dem Schema definierten Standardwert generiert wurde. false, wenn der Attributwert explizit festgelegt wurde. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen Wert ab, der angibt, ob der aktuelle Knoten ein leeres Element ist (z. B. <MyElement/>). + true, wenn der aktuelle Knoten ein Element ist ( ist gleich XmlNodeType.Element), das mit /> endet, andernfalls false. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiger XML-Name ist. + true, wenn der Name gültig ist, andernfalls false. + Der Name, dessen Gültigkeit validiert werden soll. + Der -Wert ist null. + + + Gibt einen Wert zurück, der angibt, ob das Zeichenfolgenargument ein gültiges XML-Namenstoken ist. + true, wenn es sich um ein gültiges Namenstoken handelt, andernfalls false. + Das zu validierende Namenstoken. + Der -Wert ist null. + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist. + true, wenn ein Starttag oder ein leeres Elementtag findet. false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und die -Eigenschaft des gefundenen Elements mit dem angegebenen Argument übereinstimmt. + true, wenn der resultierende Knoten ein Element ist und die Name-Eigenschaft mit der angegebenen Zeichenfolge übereinstimmt.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die Name-Elementeigenschaft nicht mit der angegebenen Zeichenfolge übereinstimmt. + Die mit der Name-Eigenschaft des gefundenen Elements verglichene Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft auf und überprüft, ob der aktuelle Inhaltsknoten ein Starttag oder ein leeres Elementtag ist und ob die -Eigenschaft und die -Eigenschaft des gefundenen Elements mit den angegebenen Zeichenfolgen übereinstimmen. + true, wenn der resultlierende Knoten ein Element ist.false, wenn ein anderer Knotentyp als XmlNodeType.Element gefunden wurde oder die LocalName-Eigenschaft und die NamespaceURI-Eigenschaft des Elements nicht mit den angegebenen Zeichenfolgen übereinstimmen. + Die mit der LocalName-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Die mit der NamespaceURI-Eigenschaft des gefundenen Elements zu vergleichende Zeichenfolge. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen Index ab. + Der Wert des angegebenen Attributs. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Wert des Attributs mit dem angegebenen und ab. + Der Wert des angegebenen Attributs.Wenn das Attribut nicht gefunden wurde, wird null zurückgegeben. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den lokalen Namen des aktuellen Knotens ab. + Der Name des aktuellen Knotens ohne das Präfix.Der LocalName für das <bk:book>-Element lautet z. B. book.Bei unbenannten Knotentypen wie Text, Comment usw. gibt diese Eigenschaft String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Löst beim Überschreiben in einer abgeleiteten Klasse ein Namespacepräfix im Gültigkeitsbereich des aktuellen Elements auf. + Der Namespace-URI, dem das Präfix zugeordnet ist, oder null, wenn kein entsprechendes Präfix gefunden wird. + Das Präfix, dessen Namespace-URI aufgelöst werden soll.Um eine Übereinstimmung mit dem Standardnamespace zu erhalten, übergeben Sie eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen Index. + Der Index des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter hat einen negativen Wert. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der qualifizierte Name des Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum Attribut mit dem angegebenen und dem angegebenen . + true, wenn das Attribut gefunden wurde, andernfalls false.Bei einem Wert von false ändert sich die Position des Readers nicht. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Überprüft, ob der aktuelle Knoten ein Inhaltsknoten (Textknoten ohne Leerraum, CDATA-, Element-, EndElement-, EntityReference- oder EndEntity-Knoten) ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei.Knoten folgender Typen werden übersprungen: ProcessingInstruction, DocumentType, Comment, Whitespace und SignificantWhitespace. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Asynchrone Überprüfungen, ob der aktuelle Knoten ein Inhaltsknoten ist.Wenn der Knoten kein Inhaltsknoten ist, springt der Reader zum nächsten Inhaltsknoten oder an das Ende der Datei. + Der des von der Methode gefundenen aktuellen Knotens oder XmlNodeType.None, wenn der Reader das Ende des Eingabestreams erreicht hat. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zu dem Element, das den aktuellen Attributknoten enthält. + true, wenn der Reader auf einem Attribut positioniert ist (der Reader wechselt zu dem Element, das das Attribut besitzt); false, wenn der Reader nicht auf einem Attribut positioniert ist (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum ersten Attribut. + true, wenn ein Attribut vorhanden ist (der Reader wechselt zum ersten Attribut), andernfalls false (die Position des Readers bleibt unverändert). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Wechselt beim Überschreiben in einer abgeleiteten Klasse zum nächsten Attribut. + true, wenn ein nächstes Attribut vorhanden ist; false, wenn keine weiteren Attribute vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den gekennzeichneten Namen des aktuellen Knotens ab. + Der gekennzeichnete Name des aktuellen Knotens.Der Name für das <bk:book>-Element lautet z. B. bk:book.Der zurückgegebene Name hängt vom des Knotens ab.Die folgenden Knotentypen geben die jeweils aufgeführten Werte zurück.Alle anderen Knotentypen geben eine leere Zeichenfolge zurück.Knotentyp Name AttributeDer Name des Attributs. DocumentTypeDer Name des Dokumenttyps. ElementDer Tagname. EntityReferenceDer Name der Entität, auf die verwiesen wird. ProcessingInstructionDas Ziel der Verarbeitungsanweisung. XmlDeclarationDas xml-Zeichenfolgenliteral. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Namespace-URI (entsprechend der Definition in der Namespacespezifikation des W3C) des Knotens ab, auf dem der Reader positioniert ist. + Der Namespace-URI des aktuellen Knotens, andernfalls eine leere Zeichenfolge. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse die ab, die dieser Implementierung zugeordnet ist. + Die XmlNameTable, die das Abrufen der atomisierten Version einer Zeichenfolge innerhalb des Knotens erlaubt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Typ des aktuellen Knotens ab. + Einer der Enumerationswerte, die den Typ des aktuellen Knotens angeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse das dem aktuellen Knoten zugeordnete Namespacepräfix ab. + Das dem aktuellen Knoten zugeordnete Namespacepräfix. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den nächsten Knoten aus dem Stream. + true, wenn der nächste Knoten erfolgreich gelesen wurde, andernfalls, false. + Beim Analysieren der XML-Daten ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den nächsten Knoten aus dem Stream asynchron. + true, wenn der nächste Knoten erfolgreich gelesen wurde, false, wenn keine weiteren zu lesenden Knoten vorhanden sind. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Attributwert in einen oder mehrere Knoten vom Typ Text, EntityReference oder EndEntity auf. + true, wenn zurückzugebende Knoten vorhanden sind.false, wenn der Reader beim ersten Aufruf nicht auf einem Attributknoten positioniert ist oder alle Attributwerte gelesen wurden.Ein leeres Attribut, z. B. misc="", gibt true mit einem einzelnen Knoten mit dem Wert String.Empty zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen.Dieses kann zum Beispiel beim Konvertieren eines -Objekts in eine xs:string verwendet werden.Dieser Wert kann null sein. + Der Inhalt weist nicht das richtige Format für den Zieltyp auf. + Die versuchte Typumwandlung ist ungültig. + Der -Wert ist null. + Der aktuelle Knoten ist kein unterstützter Knotentyp.Weitere Informationen finden Sie in der nachfolgenden Tabelle. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron als Objekt vom angegebenen Typ. + Der verkettete Textinhalt oder Attributwert, der in den angeforderten Typ konvertiert wurde. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die Base64-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Inhalt und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + + wird auf dem aktuellen Knoten nicht unterstützt. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt asynchron und gibt die BinHex-decodierten binären Bytes zurück. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als Boolean. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt an der aktuellen Position als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit doppelter Genauigkeit. + Der Textinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Der Textinhalt an der aktuellen Position als Gleitkommazahl mit einfacher Genauigkeit. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 32-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als 64-Bit-Ganzzahl mit Vorzeichen. + Der Textinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als . + Der Textinhalt als geeignetstes CLR-Objekt (Common Language Runtime). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Textinhalt an der aktuellen Position als -Objekt. + Der Textinhalt als -Objekt. + Die versuchte Typumwandlung ist ungültig. + Das Zeichenfolgenformat ist nicht gültig. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Textinhalt an der aktuellen Position asynchron als -Objekt. + Der Textinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, und liest dann den Elementinhalt als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 kann der Wert des -Parameters nun auch auf den -Typ festgelegt werden. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Lesen von Decimal.MaxValue. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Elementinhalt asynchron als angeforderten Typ. + Der in das angeforderte typisierte Objekt konvertierte Elementinhalt. + Der Typ des zurückzugebenden Werts. + Ein -Objekt, das für die Auflösung von Präfixen von Namespaces verwendet wird, die im Zusammenhang mit der Typkonvertierung stehen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den Base64-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das Element und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Der -Wert ist null. + Der aktuelle Knoten ist kein Elementknoten. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Das Element enthält gemischten Inhalt. + Der Inhalt kann nicht in den angeforderten Typ konvertiert werden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das Element asynchron und decodiert den BinHex-Inhalt. + Die Anzahl der in den Puffer geschriebenen Bytes. + Der Puffer, in den der resultierende Text kopiert werden soll.Dieser Wert darf nicht null sein. + Der Offset im Puffer, an dem mit dem Kopieren des Ergebnisses begonnen werden soll. + Die maximale Anzahl von Bytes, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl von kopierten Bytes zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit doppelter Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit doppelter Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit doppelter Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als Gleitkommazahl mit einfacher Genauigkeit zurück. + Der Elementinhalt als Gleitkommazahl mit einfacher Genauigkeit. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine Gleitkommazahl mit einfacher Genauigkeit konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 32-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 32-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 32-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als 64-Bit-Ganzzahl mit Vorzeichen zurück. + Der Elementinhalt als 64-Bit-Ganzzahl mit Vorzeichen. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in eine 64-Bit-Ganzzahl mit Vorzeichen konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in den angeforderten Typ konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als zurück. + Ein geschachteltes CLR-Objekt (Common Language Runtime) des geeignetsten Typs.Die -Eigenschaft bestimmt den geeigneten CLR-Typ.Wenn der Inhalt als Listentyp typisiert ist, gibt diese Methode ein Array der geschachtelten Objekte des geeigneten Typs zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der angegebene lokale Name und der angegebene Namespace-URI mit denen des aktuellen Elements übereinstimmen, liest dann das aktuelle Element und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Der wird nicht auf einem Element positioniert. + Das aktuelle Element enthält untergeordnete Elemente.- oder - Der Elementinhalt kann nicht in ein -Objekt konvertiert werden. + Die Methode wird mit null-Argumenten aufgerufen. + Der angegebene lokale Name und der Namespace-URI stimmen nicht mit dem Element überein, das gerade gelesen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest das aktuelle Element asynchron und gibt den Inhalt als -Objekt zurück. + Der Elementinhalt als -Objekt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Endtag ist, und verschiebt den Reader auf den nächsten Knoten. + Der aktuelle Knoten ist kein Endtag, oder im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt, einschließlich Markup, als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben.Wenn der aktuelle Knoten weder ein Element noch ein Attribut ist, wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron den gesamten Inhalt, einschließlich Markup als Zeichenfolge. + Der gesamte XML-Inhalt (einschließlich Markup) im aktuellen Knoten.Wenn der aktuelle Knoten keine untergeordneten Elemente besitzt, wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Liest beim Überschreiben in einer abgeleiteten Klasse den Inhalt (einschließlich Markup) ab, der diesen Knoten und alle untergeordneten Elemente darstellt. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Das XML war nicht wohlgeformt, oder bei der XML-Analyse ist ein Fehler aufgetreten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest den Inhalt, einschließlich Markup, das diesen Knoten und alle untergeordneten Elemente darstellt, asynchron. + Wenn der Reader auf einem Elementknoten oder einem Attributknoten positioniert ist, gibt diese Methode den gesamten XML-Inhalt (einschließlich Markup) des aktuellen Knotens sowie aller untergeordneten Elemente zurück. Andernfalls wird eine leere Zeichenfolge zurückgegeben. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Überprüft, ob der aktuelle Knoten ein Element ist, und rückt den Reader zum nächsten Knoten vor. + Im Eingabestream wurde unzulässiger XML-Code gefunden. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der qualifizierte Name des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden. - oder - Der des Elements entspricht nicht dem angegebenen . + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überprüft, ob der aktuelle Inhaltsknoten ein Element mit dem angegebenen und dem angegebenen ist, und verschiebt den Reader auf den nächsten Knoten. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Im Eingabestream wurde unzulässiger XML-Code gefunden.- oder - Die Eigenschaften und des gefundenen Elements stimmen nicht mit den angegebenen Argumenten überein. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Readers ab. + Einer der Enumerationswerte, der den Status des Readers angibt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine neue XmlReader-Instanz zurück, die zum Lesen des aktuellen Knotens und aller Nachfolgerknoten verwendet werden kann. + Eine neue auf festgelegte XML-Reader-Instanz.Durch den Aufruf der -Methode wird der neue Reader auf dem Knoten positioniert, der vor dem Aufruf der -Methode aktuell war. + Der XML-Reader ist nicht auf einem Element positioniert, wenn diese Methode aufgerufen wird. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der qualifizierte Name des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den auf das nächste Nachfolgerelement mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes Nachfolgerelement gefunden wurde, andernfalls false.Wenn kein übereinstimmendes untergeordnetes Element gefunden wurde, wird der auf dem Endtag ( ist XmlNodeType.EndElement) des Elements positioniert.Wenn der beim Aufruf von nicht in einem Element positioniert wird, gibt diese Methode false zurück, und die Position des wird nicht geändert. + Der lokale Name des Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest, bis ein Element mit dem angegebenen qualifizierten Namen gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der qualifizierte Name des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Liest, bis ein Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI gefunden wird. + true, wenn ein übereinstimmendes Element gefunden wird, andernfalls false, und der in einem Dateiendezustand. + Der lokale Name des Elements. + Der Namespace-URI des Elements. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen qualifizierten Namen. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der qualifizierte Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Der Parameter ist eine leere Zeichenfolge. + + + Verschiebt den XmlReader auf das nächste nebengeordnete Element mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + true, wenn ein übereinstimmendes nebengeordnetes Element gefunden wurde, andernfalls false.Wenn kein übereinstimmendes nebengeordnetes Element gefunden wurde, wird der XmlReader auf dem Endtag ( ist XmlNodeType.EndElement) des übergeordneten Elements positioniert. + Der lokale Name des nebengeordneten Elements, zu dem Sie wechseln möchten. + Der Namespace-URI des nebengeordneten Elements, zu dem Sie wechseln möchten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Beide Parameter-Werte sind null. + + + Liest umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Der aktuelle Knoten verfügt über keinen Wert ( ist false). + Der -Wert ist null. + Der Index im Puffer oder Index + Anzahl übersteigen die Größe des zugeordneten Puffers. + Die -Implementierung unterstützt diese Methode nicht. + Die XML-Daten sind nicht wohlgeformt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Liest asynchron umfangreiche Streams von Text, der in ein XML-Dokument eingebettet ist. + Die Anzahl der in den Puffer gelesenen Zeichen.Der Wert 0 (null) wird zurückgegeben, wenn kein weiterer Textinhalt vorhanden ist. + Das Array von Zeichen, das als Puffer dient, in den der Textinhalt geschrieben wird.Dieser Wert darf nicht null sein. + Der Offset im Puffer, ab dem der die Ergebnisse kopieren kann. + Die maximale Anzahl von Zeichen, die in den Puffer kopiert werden sollen.Diese Methode gibt die tatsächliche Anzahl der kopierten Zeichen zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Löst beim Überschreiben in einer abgeleiteten Klasse den Entitätsverweis für EntityReference-Knoten auf. + Der Reader ist nicht auf einem EntityReference-Knoten positioniert. Diese Implementierung des Readers kann Entitäten nicht auflösen ( gibt false zurück). + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Reader-Instanz verwendete -Objekt.Wenn dieser Reader nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Überspringt die untergeordneten Elemente des aktuellen Knotens asynchron. + Der aktuelle Knoten. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + Eine asynchrone Methode wurde aufgerufen, ohne das -Flag auf true festzulegen.In diesem Fall wird mit der Nachricht ausgelöst "Legen Sie XmlReaderSettings.Async auf True fest, wenn Sie die Async-Methoden verwenden möchten." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Textwert des aktuellen Knotens ab. + Der zurückgegebene Wert hängt vom des Knotens ab.In der folgenden Tabelle sind Knotentypen aufgeführt, die einen zurückzugebenden Wert haben.Alle anderen Knotentypen geben String.Empty zurück.Knotentyp Wert AttributeDer Wert des Attributs. CDATADer Inhalt des CDATA-Abschnitts. CommentDer Inhalt des Kommentars. DocumentTypeDie interne Teilmenge. ProcessingInstructionDer gesamte Inhalt mit Ausnahme des Ziels. SignificantWhitespaceDer Leerraum zwischen Markups bei einem Modell für gemischten Inhalt. TextDer Inhalt des Textknotens. WhitespaceDer Leerraum zwischen Markups. XmlDeclarationDer Inhalt der Deklaration. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft den CLR-Typ (Common Language Runtime) für den aktuellen Knoten ab. + Der CLR-Typ, der dem typisierten Wert des Knotens entspricht.Die Standardeinstellung ist System.String. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:space-Bereich ab. + Einer der -Werte.Wenn kein xml:space-Bereich vorhanden ist, wird für diese Eigenschaft standardmäßig XmlSpace.None festgelegt. + Eine -Methode wurde aufgerufen, bevor ein vorheriger asynchroner Vorgang abgeschlossen wurde.In diesem Fall wird mit der Meldung ausgelöst "ein asynchroner Vorgang wird bereits ausgeführt." + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, das von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der-Klasse. + + + Ruft ab oder legt fest, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob Zeichen überprüft werden sollen, oder legt diesen fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true.HinweisWenn der Textdaten verarbeitet, überprüft er unabhängig von der Eigenschafteneinstellung stets, ob die XML-Namen und der Textinhalt gültig sind.Durch Festlegen von auf false wird die Zeichenüberprüfung für Zeichenentitätsverweise deaktiviert. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der zugrunde liegende Stream oder geschlossen werden soll, nachdem der Reader geschlossen wurde, oder legt diesen Wert fest. + true, um den zugrunde liegenden Stream oder zu schließen, nachdem der Reader geschlossen wurde, andernfalls false.Die Standardeinstellung ist false. + + + Ruft den Konformitätsgrad ab, dem der entspricht, oder legt diesen fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt, den der XML-Reader umsetzt.Die Standardeinstellung ist . + + + Ruft einen Wert ab oder legt einen Wert fest, der die Verarbeitung von DTDs bestimmt. + Einer der Enumerationswerte, der die Verarbeitung von DTDs bestimmt.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Kommentare ignoriert werden sollen, oder legt diesen fest. + true, wenn Kommentare ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob Verarbeitungsanweisungen ignoriert werden sollen, oder legt diesen fest. + true, wenn Verarbeitungsanweisungen ignoriert werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft einen Wert ab, der angibt, ob signifikanter Leerraum ignoriert werden soll, oder legt diesen Wert fest. + true, um Leerraum zu ignorieren, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Zeilennummernoffset des -Objekts ab oder legt dieses fest. + Das Zeilennummernoffset.Der Standard ist 0. + + + Ruft das Zeilenpositionsoffset des -Objekts ab oder legt dieses fest. + Die Offset der Linienposition.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximal zulässige Anzahl von Zeichen in einem Dokument angibt, die aus dem Erweitern von Entitäten resultieren, oder legt diesen fest. + Die maximale zulässige Anzahl von Zeichen aus erweiterten Entitäten.Der Standard ist 0. + + + Ruft einen Wert ab, der die maximale zulässige Anzahl von Zeichen in einem XML-Dokument angibt, oder legt diesen fest.Der Wert 0 (null) gibt an, dass die Größe des XML-Dokuments nicht beschränkt ist.Ein Wert ungleich 0 (null) gibt die maximale Größe in Zeichen an. + Die maximale zulässige Anzahl von Zeichen in einem XML-Dokument.Der Standard ist 0. + + + Ruft die für Vergleiche von atomisierten Zeichenfolgen verwendete ab oder legt diese fest. + Die , in der alle atomisierten Zeichenfolgen gespeichert werden, die von allen -Instanzen verwendet werden, die mit diesem -Objekt erstellt wurden.Die Standardeinstellung ist null.Die erstellte -Instanz verwendet eine neue leere , wenn dieser Wert null ist. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Gibt den aktuellen xml:space-Bereich an. + + + Der xml:space-Bereich ist gleich default. + + + Kein xml:space-Bereich. + + + Der xml:space-Bereich ist gleich preserve. + + + Stellt einen Writer für die schnelle, vorwärts gerichtete Generierung von Streams oder Dateien mit XML-Daten ohne Zwischenspeicherung dar. + + + Initialisiert eine neue Instanz der -Klasse. + + + Erstellt mit dem angegebenen Stream eine neue -Instanz. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des Streams und des -Objekts. + Ein -Objekt. + Der Stream, in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen Stream an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen . + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des und der -Objekte. + Ein -Objekt. + Der , in den geschrieben werden soll.Der schreibt XML 1.0-Textsyntax und fügt diese an den angegebenen an. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt mit dem angegebenen eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + The value is null. + + + Erstellt mit dem -Objekt und dem -Objekt eine neue -Instanz. + Ein -Objekt. + Der , in den geschrieben werden soll.Vom geschriebener Inhalt wird an den angefügt. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen -Objekts. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + The value is null. + + + Erstellt eine neue -Instanz mithilfe des angegebenen und der -Objekte. + Ein -Objekt, das das angegebene -Objekt umschließt. + Das -Objekt, dass Sie als zugrunde liegenden Writer verwenden möchten. + Das -Objekt zum Konfigurieren der neuen -Instanz.Wenn dies null ist, wird mit Standardeinstellungen verwendet.Wenn der mit der -Methode verwendet wird, sollten Sie die -Eigenschaft verwenden, um ein -Objekt mit den korrekten Einstellungen abzurufen.Dieses Verfahren gewährleistet, dass das erstellte -Objekt über die korrekten Ausgabeeinstellungen verfügt. + The value is null. + + + Gibt alle von der aktuellen Instanz der -Klasse verwendeten Ressourcen frei. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt die von verwendeten nicht verwalteten Ressourcen und optional die verwalteten Ressourcen frei. + true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert beim Überschreiben in einer abgeleiteten Klasse den Inhalt des Puffers in die zugrunde liegenden Streams und leert den zugrunde liegenden Stream ebenfalls. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Entleert den Pufferinhalt asynchron in die zugrunde liegenden Streams und entleert den zugrunde liegenden Stream ebenfalls. + Die Aufgabe, die den asynchronen Flush-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Gibt beim Überschreiben in einer abgeleiteten Klasse das nächstliegende Präfix zurück, das im aktuellen Namespacebereich für den Namespace-URI definiert ist. + Das passende Präfix oder null, wenn im aktuellen Gültigkeitsbereich kein übereinstimmender Namespace-URI gefunden wird. + Der Namespace-URI, dessen Präfix gesucht werden soll. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft das zum Erstellen dieser -Instanz verwendete -Objekt ab. + Das zum Erstellen dieser Writer-Instanz verwendete -Objekt.Wenn dieser Writer nicht mit der -Methode erstellt wurde, gibt diese Eigenschaft null zurück. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse sämtliche an der aktuellen Position gefundenen Attribute in den . + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron alle Attribute aus, die in der aktuellen Position in gefunden werden. + Die Aufgabe, die den asynchronen WriteAttributes-Vorgang darstellt. + Der XmlReader, aus dem die Attribute kopiert werden sollen. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Attribut mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Attributs. + Der Namespace-URI, der dem Attribut zugeordnet werden soll. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das Attribut mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Attribut asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteAttributeString-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + Der Wert des Attributs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als Base64 und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als Base64 und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBase64-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Codiert beim Überschreiben in einer abgeleiteten Klasse die angegebenen binären Bytes als BinHex und schreibt den resultierenden Text. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codiert die angegebenen binären Bytes asynchron als BinHex und schreibt den resultierenden Text. + Die Aufgabe, die den asynchronen WriteBinHex-Vorgang darstellt. + Zu codierendes Bytearray. + Die Position innerhalb des Puffers, die den Anfang der zu schreibenden Bytes kennzeichnet. + Die Anzahl der zu schreibenden Bytes. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Der Text, der in den CDATA-Block eingefügt werden soll. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen <![CDATA[...]]>-Block mit dem angegebenen Text. + Die Aufgabe, die den asynchronen WriteCData-Vorgang darstellt. + Der Text, der in den CDATA-Block eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Erzwingt beim Überschreiben in einer abgeleiteten Klasse die Generierung einer Zeichenentität für den angegebenen Wert eines Unicode-Zeichens. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Erzwingt das Generieren einer Zeichenentität asynchron für den angegebenen Unicode-Zeichenwert. + Die Aufgabe, die den asynchronen WriteCharEntity-Vorgang darstellt. + Das Unicode-Zeichen, für das eine Zeichenentität generiert werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Text in jeweils einen Puffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt Text asynchron in jeweils einen Puffer. + Die Aufgabe, die den asynchronen WriteChars-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Kommentar <!--...--> mit dem angegebenen Text. + Text, der in den Kommentar eingefügt werden soll. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron einen Kommentar <!--...-->, der den angegebenen Text enthält. + Die Aufgabe, die den asynchronen WriteComment-Vorgang darstellt. + Text, der in den Kommentar eingefügt werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die DOCTYPE-Deklaration mit dem angegebenen Namen und optionalen Attributen. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die DOCTYPE-Deklaration asynchron mit dem angegebenen Namen und optionalen Attributen. + Die Aufgabe, die den asynchronen WriteDocType-Vorgang darstellt. + Der Name des DOCTYPE.Dieser darf nicht leer sein. + Bei einem Wert ungleich NULL wird auch PUBLIC "pubid" "sysid" geschrieben, wobei und durch die Werte der angegebenen Argumente ersetzt werden. + Wenn gleich null und ungleich NULL ist, wird SYSTEM "sysid" geschrieben, wobei durch den Wert dieses Arguments ersetzt wird. + Wenn nicht NULL, wird [subset] geschrieben, wobei subset durch den Wert dieses Arguments ersetzt wird. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen und Wert. + Der lokale Name des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen lokalen Namen, Namespace-URI und Wert. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt ein Element asynchron mit dem angegebenen Präfix, lokalen Namen, Namespace-URI und Wert. + Die Aufgabe, die den asynchronen WriteElementString-Vorgang darstellt. + Das Präfix des Elements. + Der lokale Name des Elements. + Die Namespace-URI des Elements. + Der Wert des Elements. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse den vorherigen -Aufruf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt asynchron den vorherigen -Aufruf. + Die Aufgabe, die den asynchronen WriteEndAttribute-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse alle geöffneten Elemente oder Attribute und setzt den Writer in den Anfangszustand zurück. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt alle geöffneten Elemente oder Attribute asynchron und setzt den Writer in den Startzustand zurück. + Die Aufgabe, die den asynchronen WriteEndDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse einen Entitätsverweis als &name;. + Der Name des Entitätsverweises. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen Entitätsverweis asynchron als &name; aus. + Die Aufgabe, die den asynchronen WriteEntityRef-Vorgang darstellt. + Der Name des Entitätsverweises. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schließt beim Überschreiben in einer abgeleiteten Klasse ein Element und löst den entsprechenden Namespacebereich auf. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schließt ein Element asynchron und löst den entsprechenden Namespacebereich auf. + Die Aufgabe, die den asynchronen WriteFullEndElement-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiger Name ist. + Der zu schreibende Name. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft dessen Gültigkeit entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Die Aufgabe, die den asynchronen WriteName-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Namen und stellt sicher, dass dieser gemäß der W3C-Empfehlung zu XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name), ein gültiges NmToken ist. + Der zu schreibende Name. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Namen asynchron und prüft, dass es sich entsprechend der W3C-Empfehlung für XML, Version 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) um ein gültiges NmToken handelt. + Die Aufgabe, die den asynchronen WriteNmToken-Vorgang darstellt. + Der zu schreibende Name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Kopiert beim Überschreiben in einer abgeleiteten Klasse den gesamten Inhalt des Readers asynchron in den Writer und verschiebt den Reader zum Anfang des nächsten nebengeordneten Elements. + Die Aufgabe, die den asynchronen WriteNode-Vorgang darstellt. + Der , aus dem gelesen werden soll. + true, um die Standardattribute aus dem XmlReader zu kopieren, andernfalls false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse eine Verarbeitungsanweisung mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Verarbeitungsanweisung asynchron mit einem Leerzeichen zwischen dem Namen und dem Text wie folgt: <?name text?>. + Die Aufgabe, die den asynchronen WriteProcessingInstruction-Vorgang darstellt. + Der Name der Verarbeitungsanweisung. + Der in die Verarbeitungsanweisung einzufügende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den durch den Namespace angegebenen Namen.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den durch Namespace gekennzeichneten Namen asynchron.Diese Methode sucht das Präfix im Gültigkeitsbereich des Namespaces. + Die Aufgabe, die den asynchronen WriteQualifiedName-Vorgang darstellt. + Der zu schreibende lokale Name. + Der Namespace-URI für den Namen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einem Zeichenpuffer. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse Rohdatenmarkup manuell aus einer Zeichenfolge. + Zeichenfolge, die den zu schreibenden Text enthält. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt asynchron unformatiertes Markup manuell aus einem Zeichenpuffer. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenarray, das den zu schreibenden Text enthält. + Die Position innerhalb des Puffers, die den Anfang des zu schreibenden Texts kennzeichnet. + Die Anzahl der zu schreibenden Zeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt asynchron unformatiertes Markup manuell aus einer Zeichenfolge. + Die Aufgabe, die den asynchronen WriteRaw-Vorgang darstellt. + Zeichenfolge, die den zu schreibenden Text enthält. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen. + Der lokale Name des Attributs. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs mit dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Der lokale Name des Attributs. + Der Namespace-URI dieses Attributs. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den Anfang eines Attributs mit dem angegebenen Präfix, dem angegebenen lokalen Namen und dem angegebenen Namespace-URI. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Anfang eines Attributs asynchron mit dem angegebenen Präfix, lokalen Namen und Namespace-URI. + Die Aufgabe, die den asynchronen WriteStartAttribute-Vorgang darstellt. + Das Namespacepräfix des Attributs. + Der lokale Name des Attributs. + Der Namespace-URI für das Attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse die XML-Deklaration mit der Version "1.0" und dem eigenständigen Attribut. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0". + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt die XML-Deklaration asynchron mit der Version "1.0" und dem eigenständigen Attribut. + Die Aufgabe, die den asynchronen WriteStartDocument-Vorgang darstellt. + Wenn true, wird "standalone=yes" geschrieben, wenn false, wird "standalone=no" geschrieben. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse ein Starttag mit dem angegebenen lokalen Namen. + Der lokale Name des Elements. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace zu. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll.Wenn sich dieser Namespace bereits im Gültigkeitsbereich befindet und dem Namespace ein Präfix zugeordnet ist, schreibt der Writer automatisch auch das Präfix. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse das angegebene Starttag und ordnet dieses dem angegebenen Namespace und Präfix zu. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt das angegebene Starttag asynchron und ordnet dieses dem angegebenen Namespace und Präfix zu. + Die Aufgabe, die den asynchronen WriteStartElement-Vorgang darstellt. + Das Namespacepräfix des Elements. + Der lokale Name des Elements. + Der Namespace-URI, der dem Element zugeordnet werden soll. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den Zustand des Writers ab. + Einer der -Werte. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Textinhalt. + Der zu schreibende Text. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Textinhalt asynchron. + Die Aufgabe, die den asynchronen WriteString-Vorgang darstellt. + Der zu schreibende Text. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Generiert und schreibt beim Überschreiben in einer abgeleiteten Klasse die Ersatzzeichenentität für das Ersatzzeichenpaar. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Generiert und schreibt die Ersatzzeichenentität asynchron für das Ersatzzeichenpaar. + Die Aufgabe, die den asynchronen WriteSurrogateCharEntity-Vorgang darstellt. + Das niedrige Ersatzzeichen.Dieses muss ein Wert zwischen 0xDC00 und 0xDFFF sein. + Das hohe Ersatzzeichen.Dieses muss ein Wert zwischen 0xD800 und 0xDBFF sein. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den Objektwert. + Der zu schreibende Objektwert.Hinweis   Seit der Veröffentlichung von .NET Framework 3.5 akzeptiert diese Methode nun auch als Parameter. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt eine Gleitkommazahl mit einfacher Genauigkeit. + Die zu schreibende Gleitkommazahl mit einfacher Genauigkeit. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt einen -Wert. + Der zu schreibende -Wert. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt beim Überschreiben in einer abgeleiteten Klasse den angegebenen Leerraum. + Die Zeichenfolge von Leerraumzeichen. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Schreibt den angegebenen Leerraum asynchron. + Die Aufgabe, die den asynchronen WriteWhitespace-Vorgang darstellt. + Die Zeichenfolge von Leerraumzeichen. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse den aktuellen xml:lang-Bereich ab. + Der aktuelle xml:lang-Bereich. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ruft beim Überschreiben in einer abgeleiteten Klasse einen ab, der den aktuellen xml:space-Bereich darstellt. + Ein XmlSpace, der den aktuellen xml:space-Bereich darstellt.Wert Bedeutung NoneDies ist der Standardwert, wenn kein xml:space-Bereich vorhanden ist.DefaultDer aktuelle Bereich ist xml:space="default".PreserveDer aktuelle Bereich ist xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Gibt eine Gruppe von Features an, die für das -Objekt unterstützt werden sollen, welches von der -Methode erstellt wurde. + + + Initialisiert eine neue Instanz der -Klasse. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob asynchrone -Methoden für eine bestimmte -Instanz verwendet werden können. + true, wenn asynchrone Methoden verwendet werden können; andernfalls false. + + + Ruft einen Wert ab, der angibt, ob der XML-Writer eine Prüfung durchführen soll, um sicherzustellen, dass alle Zeichen im Dokument den im Abschnitt der W3C-Empfehlung für XML 1.0 beschriebenen "2.2 Characters" entsprechen, oder legt diesen Wert fest. + true, wenn Zeichen überprüft werden sollen, andernfalls false.Die Standardeinstellung ist true. + + + Erstellt eine Kopie der -Instanz. + Das geklonte -Objekt. + + + Ruft einen Wert ab, der angibt, ob der auch den zugrunde liegenden Stream oder schließen soll, wenn die -Methode aufgerufen wird, oder legt diesen Wert fest. + true, wenn auch der zugrunde liegende Stream oder geschlossen werden soll, andernfalls false.Die Standardeinstellung ist false. + + + Ruft das Übereinstimmungsniveau ab, auf den der XML-Writer die XML-Ausgabe überprüft, oder legt dieses fest. + Einer der Enumerationswerte, der das Übereinstimmungsniveau angibt (Dokument, Fragment oder automatische Erkennung).Die Standardeinstellung ist . + + + Ruft den Typ der Textcodierung ab oder legt diesen fest. + Die zu verwendende Textcodierung.Die Standardeinstellung ist Encoding.UTF8. + + + Ruft einen Wert ab, der angibt, ob Elemente eingezogen werden sollen, oder legt diesen fest. + true, wenn einzelne Elemente mit Einzug in neue Zeilen geschrieben werden sollen, andernfalls false.Die Standardeinstellung ist false. + + + Ruft die Zeichenfolge ab, die für den Einzug verwendet werden soll, oder legt diese fest.Diese Einstellung wird verwendet, wenn die -Eigenschaft auf true festgelegt ist. + Die für den Einzug zu verwendende Zeichenfolge.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standard beträgt zwei Leerzeichen. + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob der beim Schreiben von XML-Inhalt doppelte Namespacedeklarationen entfernen soll, oder legt diesen fest.Im Standardverhalten gibt der Writer alle Namespacedeklarationen aus, die in der Namespaceauflösung des Writers vorhanden sind. + Die -Enumeration, die verwendet wird, um anzugeben, ob doppelte Namespacedeklarationen im entfernt werden. + + + Ruft die Zeichenfolge ab, die für Zeilenumbrüche verwendet werden soll, oder legt diese fest. + Die Zeichenfolge, die für Zeilenumbrüche verwendet werden soll.Diese kann auf jeden Zeichenfolgenwert festgelegt werden.Wenn Sie die Gültigkeit des XML-Codes sicherstellen möchten, sollten Sie jedoch nur gültige Leerraumzeichen, z. B. Leerzeichen, Tabstoppzeichen, Wagenrückläufe oder Zeilenvorschübe angeben.Der Standardwert ist \r\n (Wagenrücklauf, neue Zeile). + The value assigned to the is null. + + + Ruft einen Wert ab, der angibt, ob Zeilenumbrüche in der Ausgabe normalisiert werden sollen, oder legt diesen fest. + Einer der -Werte.Die Standardeinstellung ist . + + + Ruft einen Wert ab, der angibt, ob Attribute in eine neue Zeile geschrieben werden sollen, oder legt diesen fest. + true, um Attribute in einzelne Zeilen zu schreiben, andernfalls false.Die Standardeinstellung ist false.HinweisDiese Einstellung hat keinerlei Auswirkungen, wenn der -Eigenschaftswert false ist.Wenn auf true festgelegt ist, wird jedem Attribut eine neue Zeile und eine zusätzliche Einzugsebene vorangestellt. + + + Ruft einen Wert ab, der angibt, ob eine XML-Deklaration ausgelassen werden soll, oder legt diesen fest. + true, um die XML-Deklaration auszulassen, andernfalls false.Der Standardwert ist false. Es wird eine XML-Deklaration geschrieben. + + + Setzt die Member der settings-Klasse auf ihre Standardwerte zurück. + + + Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob Endtags zu allen nicht geschlossenen Elementtags hinzufügt, wenn die -Methode aufgerufen wird. + true, wenn alle nicht geschlossenen Elementtags geschlossen werden; andernfalls false.Der Standardwert ist true. + + + Eine speicherinterne Darstellung eines XML Schema, wie vom World Wide Web Consortium (W3C) in den Spezifikationen unter XML Schema Part 1: Strukturen festgelegt und XML Schema Part 2: Datentypen Spezifikationen. + + + Gibt an, ob Attribute oder Elemente mit einem Namespacepräfix qualifiziert werden müssen. + + + Element- und Attributform werden im nicht Schema angegeben. + + + Elemente und Attribute müssen mit einem Namespacepräfix qualifiziert werden. + + + Elemente und Attribute müssen nicht mit einem Namespacepräfix qualifiziert werden. + + + Stellt benutzerdefinierte Formatierungen für die XML-Serialisierung und -Deserialisierung bereit. + + + Diese Methode ist reserviert und sollte nicht verwendet werden.Wenn Sie die IXmlSerializable-Schnittstelle implementieren, sollten Sie null (Nothing in Visual Basic) von der Methode zurückgeben und stattdessen das auf die Klasse anwenden, wenn ein benutzerdefiniertes Schema erforderlich ist. + Ein zur Beschreibung der XML-Darstellung des Objekts, das von der -Methode erstellt und von der -Methode verwendet wird. + + + Generiert ein Objekt aus seiner XML-Darstellung. + Der -Stream, aus dem das Objekt deserialisiert wird. + + + Konvertiert ein Objekt in seine XML-Darstellung. + Der -Stream, in den das Objekt serialisiert wird. + + + Bei Anwendung auf einen Typ wird der Name einer statischen Methode des Typs gespeichert, die ein XML-Schema und einen (bzw. einen bei anonymen Typen) zurückgibt, der die Serialisierung des Typs steuert. + + + Initialisiert eine neue Instanz der -Klasse und übernimmt den Namen der statischen Methode, die vom XML-Schema des Typs zur Verfügung gestellt wird. + Der Name der statischen Methode, die implementiert werden muss. + + + Ruft einen Wert ab, der bestimmt, ob die Zielklasse ein Platzhalter ist oder ob das Schema für die Klasse nur ein xs:any-Element enthält, oder legt diesen fest. + true, wenn die Klasse ein Platzhalter ist oder das Schema nur das xs:any-Element enthält, andernfalls false. + + + Ruft den Namen der statischen Methode ab, die das XML-Schema des Typs und den Namen seines XML-Schemadatentyps bereitstellt. + Der Name der Methode, die von der XML-Infrastruktur aufgerufen wird, sodass ein XML-Schema zurückgegeben wird. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/es/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/es/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..62b4b18 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/es/System.Xml.ReaderWriter.xml @@ -0,0 +1,2636 @@ + + + + System.Xml.ReaderWriter + + + + Especifica el número de comprobaciones de entrada o de salida que realizan los objetos y . + + + Los objetos o detectan automáticamente si se debe realizar la comprobación del documento o fragmento y lleva a cabo la comprobación correspondiente.Si está ajustando otro objeto o , el objeto externo no lleva a cabo ninguna comprobación de conformidad adicional.La comprobación de conformidad se deja al objeto subyacente.Vea las propiedades y para obtener más información sobre cómo se determina el nivel de cumplimiento. + + + Los datos XML cumplen con las reglas de un documento XML 1.0 con el formato correcto, tal como define W3C. + + + Los datos XML son un fragmento XML con el formato correcto, tal como define W3C. + + + Especifica las opciones para procesar DTD.La clase utiliza la enumeración . + + + Hace que se omita el elemento DOCTYPE.No se procesa ninguna DTD. + + + Especifica que cuando se encuentre una DTD, se produzca una excepción con un mensaje que indique que se prohíbe el uso de esa DTD.Éste es el comportamiento predeterminado. + + + Proporciona una interfaz que permite a una clase devolver información de línea y de posición. + + + Obtiene un valor que indica si la clase puede devolver información de línea. + Es true si se pueden proporcionar y ; en caso contrario, es false. + + + Obtiene el número de línea actual. + Número de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Obtiene la posición de línea actual. + Posición de línea actual o 0 si no hay información de línea disponible (por ejemplo, devuelve false). + + + Proporciona acceso de solo lectura a un conjunto de asignaciones de prefijos y espacios de nombres. + + + Obtiene una colección de asignaciones de prefijos y espacios de nombres que están actualmente en el ámbito. + + que contiene los espacios de nombres que hay actualmente en el ámbito. + Valor que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene el URI del espacio de nombres asignado al prefijo especificado. + El espacio de nombres del URI que está asignado al prefijo; es null si el prefijo no está asignado a ningún espacio de nombres de URI. + Prefijo cuyo URI de espacio de nombres se desea buscar. + + + Obtiene el prefijo asignado al URI del espacio de nombres especificado. + Prefijo asignado al URI del espacio de nombres; es null si este URI no está asignado a ningún prefijo. + URI de espacio de nombres cuyo prefijo se desea buscar. + + + Especifica si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Especifica que no se quitarán las declaraciones de espacio de nombres duplicadas. + + + Especifica que se quitarán las declaraciones de espacio de nombres duplicadas.Para poder quitar el espacio de nombres duplicado, el prefijo y el espacio de nombres deben coincidir. + + + Implementa de un único subproceso. + + + Inicializa una nueva instancia de la clase NameTable. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene la cadena que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter de la cadena. + Número de caracteres de la cadena. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Subdivide la cadena especificada y la agrega a NameTable. + Cadena subdividida o cadena existente si ya está en NameTable. + Cadena que se va a agregar. + + es null. + + + Obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Obtiene la cadena subdividida con el valor especificado. + Objeto de cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica cómo controlar los saltos de línea. + + + Los nuevos caracteres de la línea tienen entidades.Esta configuración conserva todos los caracteres cuando el resultado se lee mediante un de normalización. + + + Los nuevos caracteres de línea no se modifican.El resultado es igual que la entrada. + + + Los nuevos caracteres de línea se reemplazan para coincidir con el carácter especificado en la propiedad . + + + Especifica el estado del lector. + + + Se ha llamado al método . + + + Se ha llegado al final del archivo correctamente. + + + Se ha producido un error que impide que continúe la operación de lectura. + + + No se ha llamado al método Read. + + + Se ha llamado al método Read.Se puede llamar a otros métodos en el lector. + + + Especifica el estado de . + + + Indica que se escribe un valor de atributo. + + + Indica que se ha llamado al método . + + + Indica que se está escribiendo contenido del elemento. + + + Indica que se está escribiendo una etiqueta de apertura de elemento. + + + Se ha iniciado una excepción que ha dejado en un estado no válido.Puede llamar al método para poner en el estado .Cualquier otra llamada al método hará que se inicie una excepción . + + + Indica que se escribe el prólogo. + + + Indica que todavía no se ha llamado a un método Write. + + + Codifica y descodifica nombres XML y proporciona métodos de conversión entre tipos de Common Language Runtime y tipos de lenguajes de definición de esquema XML (XSD).Cuando se convierten tipos de datos, los valores devueltos no dependen de la configuración regional. + + + Descodifica un nombre.Este método hace lo contrario que los métodos y . + Nombre descodificado. + Nombre que se va a transformar. + + + Convierte el nombre en un nombre XML local válido. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte el nombre en un nombre XML válido. + Devuelve el nombre con los caracteres no válidos sustituidos por una cadena de escape. + Nombre que se va a convertir. + + + Comprueba que el nombre es válido de acuerdo con la especificación XML. + Nombre codificado. + Nombre que se va a codificar. + + + Convierte en un equivalente. + Valor Boolean; es decir, true o false. + Cadena que se va a convertir. + + is null. + + does not represent a Boolean value. + + + Convierte en un equivalente. + Valor Byte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un equivalente. + Char que representa el carácter único. + Cadena que contiene un carácter único que se va a convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convierte en un mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifican si la fecha se debe pasar a la hora local o mantenerse como hora universal coordinada (UTC), si se trata de una fecha de UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir.Nota   La cadena debe ajustarse a un subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Formato desde el que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con este formato. + + is null. + + or is an empty string or is not in the specified format. + + + Convierte la proporcionada en un equivalente de . + Equivalente de de la cadena proporcionada. + Cadena que se va a convertir. + Matriz de formatos a partir de los cuales puede convertirse .Cada formato de puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). La cadena se valida comparándola con uno de estos formatos. + + + Convierte el en un equivalente. + Decimal equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Double equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Guid equivalente de la cadena. + Cadena que se va a convertir. + + + Convierte el en un equivalente. + Int16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Int64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + SByte equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte el en un equivalente. + Single equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte la clase en una clase . + Representación de cadena de Boolean; es decir, "true" o "false". + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Byte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Char. + Valor que se va a convertir. + + + Convierte en mediante el especificado. + + equivalente de la . + Valor que se va a convertir. + Uno de los valores de que especifica cómo tratar el valor . + The value is not valid. + The or value is null. + + + Convierte el proporcionado en una . + Representación de tipo del proporcionado. + + que va a convertirse. + + + Convierte el proporcionado en una con el formato especificado. + Representación con el formato especificado del proporcionado. + + que va a convertirse. + Formato al que se convierte .El parámetro de formato puede ser cualquier subconjunto de la recomendación del Consorcio W3C relativa al tipo XML dateTime.(Para obtener más información, consulte http://www.w3.org/TR/xmlschema-2/#dateTime). + + + Convierte la clase en una clase . + Representación de cadena de Decimal. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Double. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Guid. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Int64. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de SByte. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de Single. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de TimeSpan. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt16. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt32. + Valor que se va a convertir. + + + Convierte la clase en una clase . + Representación de cadena de UInt64. + Valor que se va a convertir. + + + Convierte en un equivalente. + TimeSpan equivalente de la cadena. + Cadena que se va a convertir.El formato de cadena debe cumplir la recomendación sobre la duración del Consorcio W3C "XML Schema Part 2: Datatypes". + + is not in correct format to represent a TimeSpan value. + + + Convierte en un equivalente. + UInt16 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt32 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convierte en un valor equivalente. + UInt64 equivalente de la cadena. + Cadena que se va a convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Comprueba que el nombre sea válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C. + Nombre, si es un nombre XML válido. + Nombre que se va a comprobar. + + is not a valid XML name. + + is null or String.Empty. + + + Comprueba que el nombre sea un NCName válido de acuerdo con la recomendación sobre el lenguaje de marcado extensible del Consorcio W3C.NCName es un nombre que no puede contener un carácter de dos puntos. + Nombre, si es un nombre NCName válido. + Nombre que se va a comprobar. + + is null or String.Empty. + + is not a valid non-colon name. + + + Comprueba que la cadena es un NMTOKEN válido según la recomendación "XML Schema Part 2: Datatypes" del esquema XML del Consorcio W3C. + Token del nombre, si es un NMTOKEN válido. + La cadena que desea comprobar. + The string is not a valid name token. + + is null. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de identificadores públicos válidos. + Devuelve la cadena pasada si todos los caracteres del argumento son caracteres de identificadores públicos válidos. + + que contiene el identificador que se va a validar. + + + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos. + Devuelve la instancia de cadena pasada si todos los caracteres del argumento de cadena son caracteres de espacio en blanco válidos; en caso contrario, null. + + que se va a comprobar. + + + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + Devuelve la cadena que se pasa si todos los caracteres y pares de caracteres suplentes de un argumento de la cadena son caracteres XML válidos, en caso contrario se produce una XmlException con información sobre el primer carácter no válido encontrado. + + que contiene los caracteres que se van a comprobar. + + + Especifica cómo tratar el valor de tiempo al realizar una conversión entre una cadena y . + + + Se trata como hora local.Si el objeto representa la hora universal coordinada (UTC), se convierte a la hora local. + + + La información de la zona horaria se debe conservar al realizar la conversión. + + + Se trata como hora local si se convierte en cadena. + + + Se trata como UTC.Si el objeto representa una hora local, se convierte en UTC. + + + Devuelve información detallada sobre la última excepción. + + + Inicializa una nueva instancia de la clase XmlException. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje de error especificado. + Descripción de error. + + + Inicializa una nueva instancia de la clase XmlException. + Descripción de la condición de error. + + que inició XmlException, en caso de que exista.Este valor puede ser null. + + + Inicializa una nueva instancia de la clase XmlException con el mensaje, la excepción interna, el número de línea y la posición de línea especificados. + Descripción de error. + La excepción que es la causa de la excepción actual.Este valor puede ser null. + Número de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene el número de línea que indica dónde se produjo el error. + Número de línea que indica dónde se produjo el error. + + + Obtiene la posición de línea que indica dónde se produjo el error. + Posición de línea que indica dónde se produjo el error. + + + Obtiene un mensaje que describe la excepción actual. + Mensaje de error que explica la razón de la excepción. + + + Resuelve, agrega y quita espacios de nombres en una colección y proporciona la administración del ámbito de estos espacios de nombres. + + + Inicializa una nueva instancia de la clase con el objeto especificado. + Objeto que se va a usar. + null is passed to the constructor + + + Agrega el espacio de nombres especificado a la colección. + Prefijo que se va a asociar al espacio de nombres que se agrega.Use String.Empty para agregar un espacio de nombres predeterminado.NotaSi se usa para resolver los espacios de nombres en una expresión XPath (XML Path Language), se ha de especificar un prefijo.Si una expresión XPath no incluye un prefijo, se supone que el identificador uniforme de recursos (URI) del espacio de nombres corresponde al espacio de nombres vacío.Para más información sobre las expresiones XPath y , vea los métodos y . + Espacio de nombres que se va a agregar. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtiene el identificador URI de espacio de nombres del espacio de nombres predeterminado. + Devuelve el identificador URI de espacio de nombres del espacio de nombres predeterminado, o String.Empty si no hay espacio de nombres predeterminado. + + + Devuelve un enumerador que se usará para recorrer en iteración los espacios de nombres de . + + que contiene los prefijos almacenados por . + + + Obtiene una colección de nombres de espacios de nombres por clave de prefijo que se puede usar para enumerar los espacios de nombres que actualmente se encuentran en el ámbito. + Colección de espacios de nombres y prefijos que se encuentran actualmente en el ámbito. + Valor de enumeración que especifica el tipo de nodos de espacio de nombres que se va a devolver. + + + Obtiene un valor que indica si el prefijo proporcionado tiene un espacio de nombres definido para el ámbito que se ha insertado. + true si se ha definido un espacio de nombres; en caso contrario, false. + Prefijo del espacio de nombres que se desea buscar. + + + Obtiene el identificador URI de espacio de nombres del prefijo especificado. + Devuelve el identificador URI de espacio de nombres de o null si no se ha asignado un espacio de nombres.La cadena devuelta está subdividida.Para más información sobre cadenas subdivididas, vea la clase . + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase String.Empty. + + + Busca el prefijo declarado para el identificador URI de espacio de nombres especificado. + Prefijo que coincide.Si no hay ningún prefijo asignado, el método devuelve String.Empty.Si se proporciona un valor nulo, se devuelve null. + Espacio de nombres que se va a resolver para el prefijo. + + + Obtiene el objeto asociado a este objeto. + + que usa este objeto. + + + Extrae un ámbito de espacio de nombres de la pila. + true si quedan ámbitos de espacio de nombres en la pila; false si no quedan espacios de nombres para extraer. + + + Inserta un ámbito de espacio de nombres en la pila. + + + Quita el espacio de nombres dado del prefijo especificado. + Prefijo del espacio de nombres. + Espacio de nombres que se va a quitar del prefijo especificado.El espacio de nombres quitado pertenece al ámbito de espacio de nombres actual.Los espacios de nombres que no pertenecen al ámbito actual no se tienen en cuenta. + The value of or is null. + + + Define el ámbito del espacio de nombres. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual.Esto incluye el espacio de nombres xmlns:xml que siempre se declara de manera implícita.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos en el ámbito del nodo actual, excluido el espacio de nombres xmlns:xml, que siempre se declara implícitamente.No está definido el orden de los espacios de nombres que se devuelven. + + + Todos los espacios de nombres definidos localmente en el nodo actual. + + + Tabla de objetos en forma de cadena subdividida. + + + Inicializa una nueva instancia de la clase . + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una.Si la longitud es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a agregar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, subdivide la cadena especificada y la agrega a XmlNameTable. + Cadena subdividida nueva o cadena existente si ya hay una. + Nombre que se va a agregar. + + es null. + + + Cuando se invalida en una clase derivada, se obtiene la cadena subdividida que contiene los mismos caracteres que el intervalo de caracteres especificado en una matriz determinada. + Cadena subdividida o null si la cadena no se ha subdividido todavía.Si es cero, se devuelve String.Empty. + Matriz de caracteres que contiene el nombre que se va a buscar. + Índice de base cero de la matriz que especifica el primer carácter del nombre. + Número de caracteres del nombre. + 0 > .O bien >= .Length O bien >= .Length Las condiciones anteriores no hacen que se produzca una excepción si = 0. + + < 0. + + + Cuando se invalida en una clase derivada, obtiene la cadena subdividida que contiene el mismo valor que la cadena especificada. + Cadena subdividida o null si la cadena no se ha subdividido todavía. + Nombre que se va a buscar. + + es null. + + + Especifica el tipo de nodo. + + + Atributo (por ejemplo, id='123'). + + + Sección CDATA (por ejemplo, <![CDATA[my escaped text]]>). + + + Comentario (por ejemplo, <!-- my comment -->). + + + Objeto de documento que, como raíz del árbol de documentos, proporciona acceso a todo el documento XML. + + + Fragmento de documento. + + + declaración de tipos de documento, indicada por la siguiente etiqueta (por ejemplo, <!DOCTYPE...>). + + + Elemento (por ejemplo, <item>). + + + Etiqueta de elemento final (por ejemplo, </item>) . + + + Se devuelve cuando XmlReader alcanza el final del reemplazo de entidad como resultado de una llamada al método . + + + Declaración de entidad (por ejemplo, <!ENTITY...>). + + + Referencia a una entidad (por ejemplo, &num;). + + + + devuelve este valor si no se ha llamado al método Read. + + + Notación en la declaración de tipos de documento (por ejemplo, <!NOTATION...>). + + + Instrucción de procesamiento (por ejemplo, <?pi test?>). + + + Espacio en blanco entre marcas en un modelo de contenido mixto o espacio en blanco dentro del ámbito de xml:space="preserve". + + + Contenido de texto de un nodo. + + + Espacio en blanco entre marcas. + + + Declaración XML (por ejemplo, <?xml version='1.0'?> ). + + + Proporciona toda la información de contexto que necesita el objeto para analizar un fragmento de XML. + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.El subconjunto DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , URI base, xml:lang, xml:space, codificación y tipo de documento especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Nombre de la declaración de tipos de documento. + Identificador público. + Identificador de sistema. + Subconjunto DTD interno.DTD se usa para la resolución de entidades, no para la validación de documentos. + Identificador URI base del fragmento de XML (la ubicación desde la que se cargó el fragmento). + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre las cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + + no es el mismo XmlNameTable utilizado para construir . + + + Inicializa una nueva instancia de la clase XmlParserContext con los valores , , xml:lang y xml:space especificados y codificación. + + que se va a utilizar para subdividir cadenas.Si el valor es null, se utilizará la tabla de nombres usada para construir .Para obtener más información sobre cadenas subdivididas, vea . + + que se va a utilizar para buscar información sobre los espacios de nombres o null. + Ámbito de xml:lang. + Valor de que indica el ámbito de xml:space. + Objeto que indica el valor de codificación. + + no es el mismo XmlNameTable utilizado para construir . + + + Obtiene o establece el identificador URI base. + Identificador URI base para resolver el archivo DTD. + + + Obtiene o establece el nombre de la declaración de tipos de documento. + Nombre de la declaración de tipos de documento. + + + Obtiene o establece el tipo de codificación. + Objeto que indica el tipo de codificación. + + + Obtiene o establece el subconjunto DTD interno. + Subconjunto DTD interno.Por ejemplo, esta propiedad devuelve todo lo que se encuentra entre los corchetes <!DOCTYPE doc [...]>. + + + Obtiene o establece el objeto . + XmlNamespaceManager. + + + Obtiene el objeto que se va a utilizar para subdividir cadenas.Para obtener más información sobre cadenas subdivididas, vea . + XmlNameTable. + + + Obtiene o establece el identificador público. + Identificador público. + + + Obtiene o establece el identificador de sistema. + Identificador de sistema. + + + Obtiene o establece el ámbito de xml:lang actual. + Ámbito de xml:lang actual.Si en el ámbito no hay ningún xml:lang, se devuelve String.Empty. + + + Obtiene o establece el ámbito de xml:space actual. + Valor de que indica el ámbito de xml:space. + + + Representa un nombre XML completo. + + + Inicializa una nueva instancia de la clase . + + + Inicializa una nueva instancia de la clase con el nombre especificado. + Nombre local que se va a utilizar como nombre del objeto . + + + Inicializa una nueva instancia de la clase con el nombre y el espacio de nombres especificados. + Nombre local que se va a utilizar como nombre del objeto . + Espacio de nombres para el objeto . + + + Proporciona un vacío. + + + Determina si el objeto especificado es igual al objeto actual. + Es true si los dos son un objeto de la misma instancia; en caso contrario, es false. + Estructura que se va comparar. + + + Devuelve el código hash del . + Código hash de este objeto. + + + Obtiene un valor que indica si el objeto está vacío. + true si el nombre y el espacio de nombres corresponden a cadenas vacías; en caso contrario, false. + + + Obtiene una representación de cadena del nombre completo de . + Representación de cadena del nombre completo o de String.Empty si no hay un nombre que esté definido para el objeto. + + + Obtiene una representación de cadena del espacio de nombres de . + Representación de cadena del espacio de nombres o de String.Empty si no hay un espacio de nombres que esté definido para el objeto. + + + Compara dos objetos . + Es true si los dos objetos tienen los mismos valores de nombre y de espacio de nombres; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Compara dos objetos . + Es true si los valores de nombre y de espacio de nombres de los dos objetos se diferencian en algo; en caso contrario, es false. + + que se va a comparar. + + que se va a comparar. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + + + Devuelve el valor de cadena de . + Valor de cadena de con el formato de namespace:localname.Si el objeto no tiene un espacio de nombres definido, el método sólo devuelve el nombre local. + Nombre del objeto. + Espacio de nombres del objeto. + + + Representa un lector que proporciona acceso rápido a datos XML, sin almacenamiento en caché y con desplazamiento solo hacia delante.Para examinar el código fuente de .NET Framework para este tipo, consulte el fuente de referencia de. + + + Inicializa una nueva instancia de la clase XmlReader. + + + Cuando se invalida en una clase derivada, obtiene el número de atributos en el nodo actual. + Número de atributos del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI base del nodo actual. + Identificador URI base del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa los métodos de lectura de contenido binario. + Es true si se implementan los métodos de lectura de contenido binario; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si implementa el método . + Es true si implementa el método ; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene un valor que indica si este lector puede analizar y resolver entidades. + Es true si el lector puede analizar y resolver entidades; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Crea un nuevo utilizando la secuencia especificada con la configuración predeterminada de la instancia. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + + + Crea un nuevo instancia con la configuración y la secuencia especificada. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de secuencia, la configuración y el contexto para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + Flujo que contiene los datos XML. examina los primeros bytes de la secuencia buscando una marca de orden de bytes u otro signo de codificación.Cuando se especifica la codificación, esta se usa para seguir leyendo el flujo, y el procesamiento continúa analizando la entrada como un flujo de caracteres (Unicode). + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se utiliza el lector XML para descodificar la secuencia de datos. + El valor de es null. + + + Crea un nuevo instancia mediante el lector de texto especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo .Este valor puede ser null. + El valor de es null. + + + Crea un nuevo instancia utilizando la información de lector, la configuración y el contexto de texto especificado para el análisis. + Objeto que se utiliza para leer los datos XML en la secuencia. + El lector de texto desde el que se va a leer los datos XML.Un lector de texto devuelve una secuencia de caracteres Unicode, por lo que la codificación especificada en la declaración XML no se usa el lector XML para descodificar la secuencia de datos. + La configuración para el nuevo instancia.Este valor puede ser null. + La información de contexto requerida para analizar el fragmento XML.La información de contexto puede incluir el objeto que se va a utilizar, la codificación, el ámbito del espacio de nombres, el ámbito actual de xml:lang y xml:space, el URI base y la definición de tipo de documento.Este valor puede ser null. + El valor de es null. + Tanto la propiedad como la propiedad contienen valores.Sólo se puede establecer y utilizar una de estas propiedades NameTable. + + + Crea una nueva instancia de con el URI especificado. + Objeto que se utiliza para leer los datos XML en la secuencia. + El URI para el archivo que contiene los datos XML.La clase se utiliza para convertir la ruta de acceso en una representación de datos canónicos. + El valor de es null. + El no tiene los permisos suficientes para tener acceso a la ubicación de los datos XML. + El archivo que identifica el URI no existe. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia usando el URI especificado y la configuración. + Objeto que se utiliza para leer los datos XML en la secuencia. + URI del archivo que contiene los datos XML.El objeto del objeto se utiliza para convertir la ruta de acceso en una representación de datos canónicos.Si es null, se utiliza un nuevo objeto . + La configuración para el nuevo instancia.Este valor puede ser null. + El valor de es null. + No se encuentra el archivo especificado por el URI. + En las API de .NET para aplicaciones de la Tienda Windows o en la Biblioteca de clases portable, encuentre la excepción de la clase base, , en su lugar.El formato del URI no es correcto. + + + Crea un nuevo instancia utilizando el lector XML especificado y la configuración. + Un objeto que se ajusta alrededor especificado objeto. + El objeto que desea utilizar como lector XML subyacente. + La configuración para el nuevo instancia.El nivel de conformidad del objeto debe coincidir con el del lector subyacente o establecerse en . + El valor de es null. + Si el objeto especifica un nivel de conformidad que no es coherente con nivel de conformidad del lector subyacente.o bienEl objeto subyacente está en un estado de o . + + + Cuando se invalida en una clase derivada, obtiene la profundidad del nodo actual en el documento XML. + Profundidad del nodo actual en el documento XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera todos los recursos usados por la instancia actual de la clase . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Libera los recursos no administrados que usa y, de forma opcional, libera los recursos administrados. + truepara liberar los recursos administrados y no administrados; false para liberar únicamente los recursos no administrados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el lector está situado al final del flujo. + Es true si el lector está situado al final de la secuencia; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado.Este método no desplaza el lector. + Índice del atributo.El índice está basado en cero.El primer atributo tiene índice 0. + + está fuera del intervalo.Debe ser no negativo y menor que el tamaño de la colección de atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null. + Nombre completo del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo o el valor es String.Empty, se devuelve null.Este método no desplaza el lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + + is null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene de forma asincrónica el valor del nodo actual. + Valor del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Obtiene un valor que indica si el nodo actual tiene algún atributo. + Es true si el nodo actual tiene atributos; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual puede tener una propiedad . + Es true si el nodo en el que está situado actualmente el lector puede tener un Value; en caso contrario, es false.Si es false, el nodo tiene un valor de String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se reemplaza en una clase derivada, obtiene un valor que indica si el nodo actual es un atributo generado a partir del valor predeterminado definido en la DTD o el esquema. + Es true si el nodo actual es un atributo cuyo valor fue generado a partir del valor predeterminado definido en la DTD o el esquema; es false si el valor de atributo se estableció explícitamente. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene un valor que indica si el nodo actual es un elemento vacío (por ejemplo, <MyElement/>). + Es true si el nodo actual es un elemento ( es igual a XmlNodeType.Element) que termina en />; en caso contrario, es false. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve un valor que indica si el argumento de cadena es un nombre XML válido. + Es true si el nombre es válido; en caso contrario, es false. + Nombre que se va a validar. + El valor de es null. + + + Devuelve un valor que indica si el argumento de cadena es un token de nombre XML válido. + Es true si es un token de nombre válido; en caso contrario, es false. + Token de nombre que se va a validar. + El valor de es null. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío. + Es true si encuentra una etiqueta de apertura o una etiqueta de elemento vacío; es false si se encuentra un tipo de nodo que no sea XmlNodeType.Element. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si la propiedad del elemento encontrado coincide con el argumento especificado. + true si el nodo resultante es un elemento y la propiedad Name coincide con la cadena especificada.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si la propiedad Name del elemento no coincide con la cadena especificada. + Cadena que se compara con la propiedad Name del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Llama al método y comprueba si el nodo de contenido actual es una etiqueta de apertura o una etiqueta de elemento vacío y si las propiedades y del elemento encontrado coinciden con las cadenas especificadas. + true si el nodo resultante es un elemento.false si se encuentra un tipo de nodo que no sea XmlNodeType.Element o si las propiedades LocalName y NamespaceURI del elemento no coinciden con la cadena especificada. + Cadena con la que se compara la propiedad LocalName del elemento encontrado. + Cadena con la que se compara la propiedad NamespaceURI del elemento encontrado. + Se detecta XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con el índice especificado. + Valor del atributo especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con la propiedad especificada. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el valor del atributo con las propiedades y especificadas. + Valor del atributo especificado.Si no se encuentra el atributo, se devuelve null. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre local del nodo actual. + Nombre del nodo actual sin prefijo.Por ejemplo, LocalName es book para el elemento <bk:book>.Para los tipos de nodo sin nombre (por ejemplo, Text, Comment, etc.), esta propiedad devuelve String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, resuelve un prefijo de espacio de nombres en el ámbito del elemento actual. + Identificador URI de espacio de nombres al que se asigna el prefijo o null si no se encuentra ningún prefijo coincidente. + Prefijo cuyo identificador URI de espacio de nombres se desea resolver.Para hacer coincidir el espacio de nombres predeterminado, pase una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con el índice especificado. + Índice del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro tiene un valor negativo. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con la propiedad especificada. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre completo del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Cuando se invalida en una clase derivada, se desplaza al atributo con las propiedades y especificadas. + Es true si se encuentra el atributo; en caso contrario, es false.Si es false, no cambia la posición del lector. + Nombre local del atributo. + URI de espacio de nombres del atributo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Comprueba si el nodo actual es un nodo de contenido (texto sin espacios en blanco, CDATA, Element, EndElement, EntityReference o EndEntity).Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo.Omite los siguientes tipos de nodo: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + XML incorrecto que se encuentra en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica comprueba si el nodo actual es un nodo de contenido.Si el nodo no es un nodo de contenido, el lector salta hasta el siguiente nodo de contenido o el final del archivo. + + del nodo actual encontrado por el método o XmlNodeType.None si el lector ha alcanzado el final del flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, se desplaza al elemento que contiene el nodo de atributo actual. + Es true si el lector está situado en un atributo (el lector se desplaza hasta el elemento que posee el atributo); es false si el lector no está situado en un atributo (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el primer atributo. + Es true si existe un atributo (el lector se desplaza hasta el primer atributo); en caso contrario, es false (no cambia la posición del lector). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, se desplaza hasta el siguiente atributo. + Es true si hay siguiente atributo; es false si no hay más atributos. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el nombre completo del nodo actual. + Nombre completo del nodo actual.Por ejemplo, Name es bk:book para el elemento <bk:book>.El nombre devuelto depende de la propiedad del nodo.Los siguientes tipos de nodo devuelven los valores que figuran en la lista.Todos los demás tipos de nodo devuelven una cadena vacía.Tipo de nodo Name AttributeNombre del atributo. DocumentTypeNombre del tipo de documento. ElementEl nombre de la etiqueta. EntityReferenceNombre de la entidad a la que se hace referencia. ProcessingInstructionDestino de la instrucción de procesamiento. XmlDeclarationCadena literal xml. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el identificador URI de espacio de nombres (según se define en la especificación relativa a espacios de nombres del Consorcio W3C) del nodo en el que está situado el lector. + URI de espacio de nombres del nodo actual; en caso contrario, una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el objeto que está asociado a esta implementación. + XmlNameTable que permite obtener la versión subdividida de una cadena en el nodo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el tipo del nodo actual. + Uno de los valores de enumeración que especifican el tipo del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el prefijo de espacio de nombres asociado al nodo actual. + Prefijo de espacio de nombres asociado al nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee el siguiente nodo del flujo. + trueSi el siguiente nodo se leyó correctamente; de lo contrario, false. + Se ha producido un error al analizar el fragmento de XML. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el nodo siguiente del flujo. + Es true si se lee correctamente el siguiente nodo; es false si no hay más nodos para leer. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, analiza el valor de atributo en uno o varios nodos Text, EntityReference o EndEntity. + Es true si hay nodos para devolver.Es false si el lector no está situado en un nodo de atributo cuando se realiza la llamada inicial o si se han leído todos los valores de atributo.Un atributo vacío, como misc="", devuelve true con un solo nodo cuyo valor es String.Empty. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo.Por ejemplo, se puede utilizar al convertir un objeto en xs:string.Este valor puede ser null. + El formato del contenido no es correcto para el tipo de destino. + La conversión intentada no es válida. + El valor de es null. + El nodo actual no es un tipo de nodo compatible.Vea la siguiente tabla para obtener información detallada. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido como objeto del tipo especificado. + Contenido de texto concatenado o valor de atributo convertido en el tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados en Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El método no es compatible con el nodo actual. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido y devuelve los bytes binarios descodificados de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como valor Boolean. + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido de texto en la posición actual como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión doble. + El contenido de texto como número de punto flotante de precisión doble. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + El contenido de texto en la posición actual como número de punto flotante de precisión sencilla. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 32 bits con signo. + El contenido de texto como entero de 32 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como un entero de 64 bits con signo. + El contenido de texto como entero de 64 bits con signo. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el contenido de texto en la posición actual como . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido de texto como el objeto de Common Language Runtime (CLR) más adecuado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + La conversión intentada no es válida. + El formato de la cadena no es válido. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido de texto en la posición actual como un objeto . + El contenido del texto como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI de espacio de nombres coinciden con los del elemento actual y, a continuación, lee el contenido de los elementos como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver.Nota   Con el lanzamiento de .NET Framework 3.5, el valor del parámetro ahora puede ser el tipo de . + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Lea Decimal.MaxValue. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el contenido del elemento como el tipo solicitado. + Contenido de elementos convertido en el objeto con tipo solicitado. + Tipo del valor que se va a devolver. + Objeto que se utiliza para resolver prefijos de espacios de nombres relacionados con la conversión de tipo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de Base64. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + El valor de es null. + El nodo actual no es un nodo de elemento. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El elemento contiene un contenido mixto. + El contenido no puede convertirse en el tipo solicitado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento y descodifica el contenido de BinHex. + Número de bytes escritos en el búfer. + Búfer donde se va a copiar el texto resultante.Este valor no puede ser null. + Posición de desplazamiento en el búfer donde debe comenzar la copia del resultado. + Número máximo de bytes que se van a copiar en el búfer.El número real de bytes copiados se devuelve a partir de este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión doble. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión doble. + El contenido del elemento como número de punto flotante de precisión doble. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como número de punto flotante de precisión sencilla. + El contenido del elemento como número de punto flotante de precisión sencilla. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en número de punto flotante de precisión sencilla. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 32 bits con signo. + El elemento contiene un entero de 32 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 32 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como un entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee el elemento actual y devuelve el contenido como entero de 64 bits con signo. + El elemento contiene un entero de 64 bits con signo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en un entero de 64 bits con signo. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido del elemento no se puede convertir en el tipo solicitado. + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como objeto . + Objeto de Common Language Runtime (CLR) del tipo más adecuado al que se le ha aplicado la conversión boxing.La propiedad determina el tipo CLR adecuado.Si el contenido se escribe como tipo de lista, este método devuelve una matriz de objetos del tipo adecuado a los que se les ha aplicado la conversión boxing. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Lee el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba que el nombre local especificado y el URI del espacio de nombres coinciden con los del elemento actual y, a continuación, lee este elemento y devuelve el contenido como objeto . + Contenido de elemento como objeto . + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + El no está situado en ningún elemento. + El elemento actual contiene elementos secundarios.o bienEl contenido de elemento no puede convertirse en un objeto . + Se llama al método con argumentos null. + El nombre local y el identificador URI del espacio de nombres especificados no coinciden con los del elemento que se está leyendo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente el elemento actual y devuelve el contenido como un objeto . + Contenido de elemento como objeto . + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo de contenido actual es una etiqueta de cierre y desplaza el lector hasta el siguiente nodo. + El nodo actual no es una etiqueta de cierre o si se encuentra XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía.Si el nodo actual no es un elemento ni un atributo, se devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee todo el contenido, incluido el marcado, como una cadena. + Todo el contenido XML, incluido el marcado, del nodo actual.Si el nodo actual no tiene nodos secundarios, se devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, lee el contenido, incluido el marcado, que representa este nodo y todos sus nodos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + El fragmento de XML no está bien formado o se ha producido un error al analizarlo. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + De forma asincrónica lee el contenido, incluido el marcado, que representa este nodo y todos sus elementos secundarios. + Si el lector está situado en un nodo de elemento o de atributo, este método devuelve todo el contenido XML, incluido el marcado, del nodo actual y de todos sus nodos secundarios; en caso contrario, devuelve una cadena vacía. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Comprueba si el nodo actual es un elemento y hace avanzar el sistema de lectura hasta el siguiente nodo. + Se detectó XML incorrecto en el flujo de entrada. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con la propiedad especificada y desplaza el lector hasta el siguiente nodo. + Nombre completo del elemento. + Se detectó XML incorrecto en el flujo de entrada. o bien El objeto del elemento no coincide con el especificado. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Comprueba si el nodo de contenido actual es un elemento con las propiedades y especificadas y desplaza el lector hasta el siguiente nodo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Se detectó XML incorrecto en el flujo de entrada.o bienLas propiedades y del elemento encontrado no coinciden con los argumentos especificados. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el estado del lector. + Uno de los valores de enumeración que especifica el estado del lector. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Devuelve una nueva instancia de XmlReader que se puede utilizar para leer el nodo actual y todos sus descendientes. + Una nueva instancia de lector XML se establece en .Llamar a la método coloca el nuevo sistema de lectura en el nodo que era actual antes de llamar a la método. + El lector de XML no está situado en un elemento cuando se llama a este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Hace avanzar el objeto hasta al siguiente elemento descendiente con el nombre completo especificado. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre completo del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto hasta el siguiente elemento descendiente que tenga el URI de espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento descendiente; en caso contrario, es false.Si no se encuentra ningún elemento secundario relacionado, el objeto se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento.Si no está en un elemento cuando se llama a , este método devuelve false y la posición de no cambia. + Nombre local del elemento al que se desea desplazar. + URI del espacio de nombres del elemento al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee hasta que encuentra un elemento con el nombre completo especificado. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre completo del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Lee hasta que encuentra un elemento con el nombre local y el URI de espacio de nombres especificados. + Es true si se encuentra un elemento coincidente; de lo contrario, es false y el objeto está en un estado de final de archivo. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Hace avanzar el objeto XmlReader hasta al siguiente elemento relacionado con el nombre completo especificado. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre completo del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + El parámetro es una cadena vacía. + + + Hace avanzar el objeto XmlReader hasta el siguiente elemento relacionado que tenga el URI del espacio de nombres y el nombre local especificados. + Es true si se encuentra un elemento relacionado; en caso contrario, es false.Si no se encuentra ningún elemento relacionado, el objeto XmlReader se coloca en la etiqueta de cierre ( es XmlNodeType.EndElement) del elemento principal. + Nombre local del elemento relacionado al que se desea desplazar. + URI del espacio de nombres del elemento relacionado al que se desea desplazar. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Ambos valores de parámetro son null. + + + Lee grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + El nodo actual no tiene ningún valor ( es false). + El valor de es null. + El índice del búfer (index) o la suma del índice y el recuento (index + count) es mayor que el tamaño de búfer asignado. + La implementación de no admite este método. + El formato de los datos XML no es correcto. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Lee asincrónicamente grandes flujos de texto incrustados en un documento XML. + Número de caracteres leídos en el búfer.Si no hay más contenido de texto, se devuelve el valor cero. + Matriz de caracteres que sirve como búfer en el que se escribe el contenido de texto.Este valor no puede ser null. + Desplazamiento en el búfer en el que puede empezar a copiar los resultados. + Número máximo de caracteres que se van a copiar en el búfer.El número real de caracteres copiados se devuelve desde este método. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, resuelve la referencia a entidad para los nodos EntityReference. + El lector no está situado en un nodo EntityReference; esta implementación del lector no puede resolver entidades ( devuelve false). + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto utilizado para crear esta instancia del lector.Si este lector no se creó utilizando el método , esta propiedad devuelve null. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite los nodos secundarios del nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Omite de forma asincrónica los elementos secundarios del valor del nodo actual. + Nodo actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + Un método asincrónico de se llamó sin establecer la marca en true.En este caso, se produce una con el mensaje “Establezca XmlReaderSettings.Async en true si desea usar métodos asincrónicos”. + + + Cuando se invalida en una clase derivada, obtiene el valor de texto del nodo actual. + El valor devuelto depende de la propiedad del nodo.En la siguiente tabla se recogen los tipos de nodo que tienen un valor para devolver.Todos los demás tipos de nodo devuelven String.Empty.Tipo de nodo Valor AttributeValor del atributo. CDATAContenido de la sección CDATA. CommentContenido del comentario. DocumentTypeSubconjunto interno. ProcessingInstructionTodo el contenido, salvo el destino. SignificantWhitespaceEspacio en blanco entre marcas en un modelo de contenido mixto. TextEl contenido del nodo de texto. WhitespaceEspacio en blanco entre marcas. XmlDeclarationContenido de la declaración. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Obtiene el tipo de Common Language Runtime (CLR) del nodo actual. + Tipo de CLR correspondiente al valor con tipo del nodo.De manera predeterminada, es System.String. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:space actual. + Uno de los valores de .Si no existe ningún ámbito de xml:space, el valor predeterminado de esta propiedad será XmlSpace.None. + Un método de se llamó antes de que una operación asincrónica anterior finalizara.En este caso, se produce una con el mensaje “Ya hay en curso una operación asincrónica”. + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece si los métodos asincrónicos de se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si se va a realizar la comprobación de caracteres. + Es true si se va a realizar la comprobación de caracteres; en caso contrario, es false.De manera predeterminada, es true.NotaSi procesa datos de texto, siempre comprueba que los nombres XML y el contenido de texto son válidos, independientemente de la configuración de la propiedad.Al establecer la propiedad en false, se desactiva la comprobación de caracteres en las referencias a entidades de caracteres. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si se debe cerrar la secuencia o el objeto subyacente al cerrar el lector. + Es true para cerrar la secuencia o subyacente al cerrar el lector; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que cumplirá . + Uno de los valores de enumeración que especifica el nivel de cumplimiento que se aplicará el lector XML.De manera predeterminada, es . + + + Obtiene o establece un valor que determine el procesamiento de DTD. + Uno de los valores de enumeración que determina el procesamiento de DTD.De manera predeterminada, es . + + + Obtiene o establece un valor que indica si se van a omitir los comentarios. + Es true para omitir los comentarios; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se van a omitir las instrucciones de procesamiento. + Es true para omitir las instrucciones de procesamiento; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece un valor que indica si se va a omitir el espacio en blanco no significativo. + Es true para omitir el espacio en blanco; en caso contrario, es false.De manera predeterminada, es false. + + + Obtiene o establece el desplazamiento del número de línea del objeto . + Desplazamiento del número de línea.El valor predeterminado es 0. + + + Obtiene o establece el desplazamiento de la posición de línea del objeto . + Desplazamiento de la posición de la línea.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo de caracteres permitido en un documento que resulta de expandir las entidades. + El número máximo de caracteres permitido de las entidades expandidas.El valor predeterminado es 0. + + + Obtiene o establece un valor que indica el número máximo permitido de caracteres en un documento XML.Un valor cero (0) significa que no existe ningún límite en el tamaño del documento XML.Un valor distinto de cero especifica el tamaño máximo, en caracteres. + El número máximo de caracteres permitido en un documento XML.El valor predeterminado es 0. + + + Obtiene o establece el objeto utilizado para las comparaciones de cadenas subdivididas. + Objeto que almacena todas las cadenas subdivididas que utilizan todas las instancias del objeto creadas mediante este objeto .De manera predeterminada, es null.La instancia de creada utilizará un nuevo objeto vacío si este valor es null. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Especifica el ámbito de xml:space actual. + + + El ámbito de xml:space equivale a default. + + + Sin ámbito de xml:space. + + + El ámbito de xml:space equivale a preserve. + + + Representa un sistema de escritura que constituye una manera rápida, no almacenada en caché y de solo avance para generar flujos o archivos que contienen datos XML. + + + Inicializa una nueva instancia de la clase . + + + Crea una nueva instancia de mediante el flujo especificado. + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + The value is null. + + + Crea una nueva instancia de mediante el flujo y el objeto . + Un objeto . + Flujo en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al flujo especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que desea escribir. escribe la sintaxis de texto de XML 1.0 y la anexa al especificado. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + The value is null. + + + Crea una nueva instancia de mediante los objetos y . + Un objeto . + + en el que se va a escribir.El contenido que escribe se anexa a . + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Crea una nueva instancia de mediante el objeto especificado. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + The value is null. + + + Crea una nueva instancia de mediante los objetos y especificados. + Objeto que contiene el objeto especificado. + Objeto que desea usar como sistema de escritura subyacente. + Objeto que se usa para configurar la nueva instancia de .Si es null, se usa un objeto con la configuración predeterminada.Si se está usando con el método , debe usar la propiedad para obtener un objeto con la configuración correcta.Con ello se garantiza que el objeto creado tenga la configuración de resultados correcta. + The value is null. + + + Libera todos los recursos usados por la instancia actual de la clase . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libera los recursos no administrados que usa y libera los recursos administrados de forma opcional. + Es true para liberar recursos tanto administrados como no administrados; es false para liberar únicamente recursos no administrados. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, vuelca el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vuelca asincrónicamente el contenido del búfer en los flujos subyacentes y también vuelca el flujo subyacente. + Tarea que representa la operación Flush asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, devuelve el prefijo más próximo definido en el ámbito de espacio de nombres actual correspondiente al identificador URI de espacio de nombres. + Prefijo coincidente o null si no se encuentra ningún identificador URI de espacio de nombres coincidente en el ámbito actual. + Identificador URI de espacio de nombres cuyo prefijo se desea buscar. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtiene el objeto que se usa para crear esta instancia de . + Objeto usado para crear esta instancia del sistema de escritura.Si este sistema de escritura no se creó usando el método , esta propiedad devuelve null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe todos los atributos que se encuentran en la posición actual en . + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe todos los atributos encontrados en la posición actual en . + Tarea que representa la operación WriteAttributes asincrónica. + XmlReader del que se van a copiar los atributos. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el valor y nombre local especificados. + Nombre local del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe un atributo con el valor, nombre local e identificador URI del espacio de nombres especificados. + Nombre local del atributo. + Identificador URI de espacio de nombres que se va asociar al atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el atributo con el prefijo, el nombre local, el identificador URI de espacio de nombres y el valor especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un atributo con el prefijo, el nombre local, el URI del espacio de nombres y el valor especificados. + Tarea que representa la operación WriteAttributeString asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + URI de espacio de nombres del atributo. + El valor del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en Base64 y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados en Base64 y escribe el texto resultante. + Tarea que representa la operación WriteBase64 asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, codifica los bytes binarios especificados en BinHex y escribe el texto resultante. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica asincrónicamente los bytes binarios especificados como BinHex y escribe el texto resultante. + Tarea que representa la operación WriteBinHex asincrónica. + Matriz de bytes que se va a codificar. + Posición en el búfer que indica el inicio de los bytes que se van a escribir. + Número de bytes que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un bloque <![CDATA[...]]> que contiene el texto especificado. + Texto que se va a colocar en el bloque CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un bloque <![CDATA[...]]> que contiene el texto especificado. + Tarea que representa la operación WriteCData asincrónica. + Texto que se va a colocar en el bloque CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, impone la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Carácter Unicode para el que se va a generar una entidad de caracteres. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Impone asincrónicamente la generación de una entidad de caracteres para el valor de carácter Unicode especificado. + Tarea que representa la operación WriteCharEntity asincrónica. + Carácter Unicode para el que se va a generar una entidad de caracteres. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe texto en un búfer cada vez. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente texto en un búfer cada vez. + Tarea que representa la operación WriteChars asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe un comentario <!--...--> que contiene el texto especificado. + Texto que se va a colocar en el comentario. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + De forma asincrónica escribe un comentario <!--...--> que contiene el texto especificado. + Tarea que representa la operación WriteComment asincrónica. + Texto que se va a colocar en el comentario. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración DOCTYPE con el nombre y atributos opcionales especificados. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración DOCTYPE con el nombre y los atributos opcionales especificados. + Tarea que representa la operación WriteDocType asincrónica. + Nombre de DOCTYPE.No puede estar vacío. + Si su valor no es nulo, también se escribe PUBLIC "pubid" "sysid", donde y se reemplazan por el valor de los argumentos especificados. + Si el valor de es null y el de no lo es, se escribe System "sysid", donde se reemplaza por el valor de este argumento. + En caso de un valor no nulo, se escribe [subset], donde subset se reemplaza por el valor de este argumento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un elemento con el nombre local y el valor especificados. + Nombre local del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el nombre local especificado, el URI de espacio de nombres y el valor. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un elemento con el prefijo, nombre local, el URI de espacio de nombres y el valor especificados. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente un elemento con el nombre local, el URI de espacio de nombres, el valor y el prefijo especificados. + Tarea que representa la operación WriteElementString asincrónica. + Prefijo del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres del elemento. + Valor del elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra la llamada a anterior. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra de forma asincrónica la llamada anterior al método . + Tarea que representa la operación WriteEndAttribute asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra todos los elementos o atributos abiertos y vuelve a colocar el sistema de escritura en el estado de inicio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente todos los elementos o atributos abiertos y coloca de nuevo el sistema de escritura en el estado de inicio. + Tarea que representa la operación WriteEndDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una referencia a entidad de la siguiente forma: &name;. + Nombre de la referencia a entidad. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente una referencia a entidad de la siguiente manera: &name;. + Tarea que representa la operación WriteEntityRef asincrónica. + Nombre de la referencia a entidad. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, cierra un elemento y extrae el ámbito de espacio de nombres correspondiente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cierra asincrónicamente un elemento y extrae el correspondiente ámbito de espacio de nombres. + Tarea que representa la operación WriteFullEndElement asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un nombre válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteName asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre especificado, comprobando que sea un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nombre que se va a escribir. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre especificado, asegurando que se trata de un NmToken válido de acuerdo con la recomendación relativa a XML 1.0 del Consorcio W3C (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tarea que representa la operación WriteNmToken asincrónica. + Nombre que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, copia todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia asincrónicamente todo el contenido del lector en el sistema de escritura y desplaza el lector al inicio del siguiente nodo relacionado. + Tarea que representa la operación WriteNode asincrónica. + + desde el que se va a leer. + Es true para copiar los atributos predeterminados de XmlReader; en caso contrario, es false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe de forma asincrónica una instrucción de procesamiento con un espacio entre el nombre y el texto: <?nombre texto?>. + Tarea que representa la operación WriteProcessingInstruction asincrónica. + Nombre de la instrucción de procesamiento. + Texto que se va a incluir en la instrucción de procesamiento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el nombre completo del espacio de nombres.Este método busca un prefijo que está en el ámbito del espacio de nombres especificado. + Tarea que representa la operación WriteQualifiedName asincrónica. + Nombre local que se va a escribir. + Identificador URI de espacio de nombres del nombre. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde un búfer de caracteres. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe marcado sin formato manualmente desde una cadena. + Cadena que contiene el texto que se va a escribir. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el marcado sin formato de un búfer de caracteres. + Tarea que representa la operación WriteRaw asincrónica. + Matriz de caracteres que contiene el texto que se va a escribir. + Posición en el búfer que indica el inicio del texto que se va a escribir. + Número de caracteres que se van a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente el marcado sin formato de una cadena. + Tarea que representa la operación WriteRaw asincrónica. + Cadena que contiene el texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe el inicio de un atributo con el nombre local especificado. + Nombre local del atributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el inicio de un atributo con el URI de espacio de nombres y el nombre local especificados. + Nombre local del atributo. + URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el inicio de un atributo con el prefijo, el nombre local y el URI de espacio de nombres especificados. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el inicio de un atributo con el prefijo, URI de espacio de nombres y el nombre local especificados. + Tarea que representa la operación WriteStartAttribute asincrónica. + Prefijo de espacio de nombres del atributo. + Nombre local del atributo. + Identificador URI de espacio de nombres del atributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la declaración XML con la versión "1.0" y el atributo independiente. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0". + Tarea que representa la operación WriteStartDocument asincrónica. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe asincrónicamente la declaración XML con la versión "1.0" así como el atributo independiente. + Tarea que representa la operación WriteStartDocument asincrónica. + Si es true, escribirá "standalone=yes"; si es false, escribirá "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, escribe una etiqueta de apertura con el nombre local especificado. + Nombre local del elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres especificado. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento.Si este espacio de nombres ya está en el ámbito y tiene asociado un prefijo, el sistema de escritura escribe automáticamente también dicho prefijo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe la etiqueta de apertura especificada y la asocia al espacio de nombres y prefijo especificados. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente la etiqueta de apertura especificada y la asocia al espacio de nombres y al prefijo especificados. + Tarea que representa la operación WriteStartElement asincrónica. + Prefijo de espacio de nombres del elemento. + Nombre local del elemento. + Identificador URI de espacio de nombres que se va a asociar al elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el estado del sistema de escritura. + Uno de los valores de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el contenido de texto especificado. + Texto que se va a escribir. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el contenido de texto dado. + Tarea que representa la operación WriteString asincrónica. + Texto que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, genera y escribe la entidad de carácter suplente para el par de caracteres suplentes. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera y escribe asincrónicamente la entidad de carácter suplente del par de caracteres suplentes. + Tarea que representa la operación WriteSurrogateCharEntity asincrónica. + Suplente bajo.Debe ser un valor comprendido entre 0xDC00 y 0xDFFF. + Suplente alto.Debe ser un valor comprendido entre 0xD800 y 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe el valor del objeto. + Valor del objeto que se va a escribir.Nota   Con el lanzamiento de .NET Framework 3.5, este método acepta como parámetro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un número de punto flotante de precisión sencilla. + El número de punto flotante de precisión sencilla que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe un valor . + Valor que se va a escribir. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, escribe el espacio en blanco especificado. + Cadena de caracteres de espacio en blanco. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Escribe asincrónicamente el espacio en blanco especificado. + Tarea que representa la operación WriteWhitespace asincrónica. + Cadena de caracteres de espacio en blanco. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Cuando se invalida en una clase derivada, obtiene el ámbito de xml:lang actual. + Ámbito de xml:lang actual. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Cuando se invalida en una clase derivada, se obtiene un que representa el ámbito de xml:space actual. + XmlSpace que representa el ámbito de xml:space actual.Valor Significado NoneEste es el valor predeterminado si no existe ningún ámbito de xml:space.DefaultEl ámbito actual es xml:space="default".PreserveEl ámbito actual es xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Especifica un conjunto de características compatibles en el objeto creado mediante el método . + + + Inicializa una nueva instancia de la clase . + + + Obtiene o establece un valor que indica si los métodos asincrónicos se pueden usar en una instancia determinada de . + true si se pueden usar métodos asincrónicos; si no, false. + + + Obtiene o establece un valor que indica si el sistema de escritura XML debería comprobar y asegurarse de que todos los caracteres en el documento se ajustan a la sección "2.2 Characters" de la recomendación XML 1.0 del Consorcio W3C. + true si se va a realizar la comprobación de caracteres; en caso contrario, false.De manera predeterminada, es true. + + + Crea una copia de la instancia de . + Objeto clonado. + + + Obtiene o establece un valor que indica si el objeto también debe cerrar el flujo subyacente o cuando se llama al método . + true para cerrar también el flujo subyacente o ; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece el nivel de conformidad que el sistema de escritura XML comprueba para la salida XML. + Uno de los valores de enumeración que especifica el nivel de conformidad (documento, fragmento o detección automática).De manera predeterminada, es . + + + Obtiene o establece el tipo de codificación de texto que se va a usar. + Codificación de texto que se va a usar.De manera predeterminada, es Encoding.UTF8. + + + Obtiene o establece un valor que indica si se va a aplicar sangría a los elementos. + true para escribir elementos individuales en líneas nuevas y aplicar sangría; en caso contrario, false.De manera predeterminada, es false. + + + Obtiene o establece la cadena de caracteres que se va a usar al aplicar sangría.Esta opción se usa cuando la propiedad se establece en true. + Cadena de caracteres que se va a usar al aplicar sangría.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es dos espacios. + The value assigned to the is null. + + + Obtiene o establece un valor que indica si debe quitar declaraciones de espacio de nombres duplicadas al escribir contenido XML.El comportamiento predeterminado es que el sistema de escritura genere todas las declaraciones de espacio de nombres que se encuentran en la resolución de espacios de nombres del sistema de escritura. + Enumeración usada para especificar si se van a quitar las declaraciones de espacio de nombres duplicadas en . + + + Obtiene o establece la cadena de caracteres que se va a usar para los saltos de línea. + Cadena de caracteres que se va a usar para los saltos de línea.Se puede establecer en cualquier valor de cadena.Sin embargo, para garantizar la validez del contenido XML, debe especificar solo caracteres de espacio en blanco válidos, como caracteres de espacio, tabulaciones, retornos de carro y saltos de línea.El valor predeterminado es \r\n (retorno de carro, nueva línea). + The value assigned to the is null. + + + Obtiene o establece un valor que indica si se deben normalizar los saltos de línea en el resultado. + Uno de los valores de .De manera predeterminada, es . + + + Obtiene o establece un valor que indica si los atributos se deben escribir en una nueva línea. + true para escribir los atributos en líneas individuales; en caso contrario, false.De manera predeterminada, es false.NotaEsta configuración no se aplica cuando el valor de la propiedad es false.Cuando se establece en true, a cada atributo le precede una nueva línea y un nivel adicional de sangría. + + + Obtiene o establece un valor que indica si debe omitir una declaración XML. + true para omitir la declaración XML; en caso contrario, false.El valor predeterminado es false, se escribe una declaración XML. + + + Restablece los miembros de la clase de configuración a sus valores predeterminados. + + + Obtiene o establece un valor que indica si agregará etiquetas de cierre a todas las etiquetas de elementos sin cerrar cuando se llame al método . + + Es true si se cerrarán todas las etiquetas de elementos sin cerrar; si no, es false.El valor predeterminado es true. + + + Una representación en memoria de un esquema XML según se indica en las especificaciones XML Schema Part 1: Structures y XML Schema Part 2: Datatypes de World Wide Web Consortium (W3C). + + + Indica si los atributos o los elementos deben calificarse con un espacio de nombres como prefijo. + + + El formato de elemento y de atributo no se especifica en el esquema. + + + Los atributos y los elementos deben estar calificados con el espacio de nombres como prefijo. + + + Los elementos y los atributos no deben estar calificados con el espacio de nombres como prefijo. + + + Proporciona formato personalizado para la serialización y deserialización XML. + + + Este método se reserva y no debe utilizarse.Al implementar la interfaz IXmlSerializable, debe devolver null (Nothing en Visual Basic) desde este método y, en su lugar, si se requiere especificar un esquema personalizado, aplique a la clase. + Clase que describe la representación XML del objeto producido por el método y utilizado por el método . + + + Genera un objeto a partir de su representación XML. + Secuencia de desde la que se deserializa el objeto. + + + Convierte un objeto en su representación XML. + Secuencia de para la que se serializa el objeto. + + + Cuando se aplica a un tipo, almacena el nombre de un método estático del tipo que devuelve un esquema XML y un (o para los tipos anónimos) que controla la serialización del tipo. + + + Inicializa una nueva instancia de la clase , tomando el nombre del método estático que proporciona el esquema XML del tipo. + El nombre del método estático que se debe implementar. + + + Obtiene o establece un valor que determina si la clase de destino es un carácter comodín o que el esquema para la clase contiene sólo un elemento xs:any. + true, si la clase es un comodín, o si el esquema contiene sólo el elemento xs:any; de lo contrario, false. + + + Obtiene el nombre del método estático que proporciona el esquema XML del tipo y el nombre de su tipo de datos de esquemas XML. + Nombre del método que invoca la infraestructura de XML para devolver un esquema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..f9d6d67 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml @@ -0,0 +1,2659 @@ + + + + System.Xml.ReaderWriter + + + + Spécifie l'ampleur des contrôles d'entrée ou de sortie que les objets et effectuent. + + + L'objet ou détecte automatiquement si une vérification au niveau du document ou du fragment doit être effectuée et procède au contrôle approprié.Si vous encapsulez un autre objet ou , l'objet externe n'effectue aucune vérification de conformité supplémentaire.Le contrôle de conformité doit être fait par l'objet sous-jacent.Pour plus de détails sur la détermination du niveau de conformité, consultez les propriétés et . + + + Les données XML respectent les règles définissant un document XML 1.0 bien formé, tel que défini par le W3C. + + + Les données XML constituent un fragment XML bien formé, tel que défini par le W3C. + + + Spécifie les options de traitement des DTD.L'énumération est utilisée par la classe . + + + Entraîne le fait que l'élément DOCTYPE est ignoré.Aucun traitement de DTD ne se poursuit. + + + Spécifie que lorsqu'une DTD est rencontrée, un est levé avec un message signalant que les DTD sont interdites.Il s'agit du comportement par défaut. + + + Fournit une interface pour permettre à une classe de retourner des informations de ligne et de position. + + + Obtient une valeur indiquant si la classe peut retourner des informations de ligne. + true si et peuvent être fournis ; sinon, false. + + + Obtient le numéro de la ligne active. + Le numéro de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Obtient la position de la ligne active. + La position de la ligne active ou 0 si aucune information de ligne n'est disponible (par exemple, retourne false). + + + Fournit un accès en lecture seule à un jeu de mappages de préfixes et d'espaces de noms. + + + Obtient une collection de mappages de préfixes sur des espaces de noms définis qui sont actuellement dans la portée. + + qui contient les espaces de noms actuellement dans la portée. + Valeur de qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient l'URI de l'espace de noms mappé sur le préfixe spécifié. + L'URI de l'espace de noms qui est mappé au préfixe ; null si le préfixe n'est pas mappé à un URI d'espace de noms. + Préfixe dont vous recherchez l'URI de l'espace de noms. + + + Obtient le préfixe qui est mappé sur l'URI de l'espace de noms spécifié. + Le préfixe qui est mappé sur l'URI de l'espace de noms ; null si l'URI de l'espace de noms n'est pas mappé sur un préfixe. + URI de l'espace de noms dont vous recherchez le préfixe. + + + Spécifie si vous souhaitez supprimer les déclarations d'espace de noms en double dans le . + + + Spécifie que les déclarations d'espace de noms en double ne seront pas supprimées. + + + Spécifie que les déclarations d'espace de noms en double seront supprimées.Pour l'espace de noms en double à supprimer, le préfixe et l'espace de noms doivent correspondre. + + + Implémente un à thread unique. + + + Initialise une nouvelle instance de la classe NameTable. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans NameTable.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant les chaînes à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère de la chaîne. + Nombre de caractères dans la chaîne. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Atomise la chaîne spécifiée et l'ajoute à NameTable. + La chaîne atomisée ou, le cas échéant, la chaîne existante dans le NameTable. + Chaîne à ajouter. + + a la valeur null. + + + Obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si est égal à zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou >= .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + Obtient la chaîne atomisée de valeur spécifiée. + L'objet de chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie comment gérer les sauts de ligne. + + + Les caractères de nouvelle ligne sont définis comme "entitize".Ce paramètre conserve tous les caractères lorsque la sortie est lue par un normalisant. + + + Les caractères de nouvelle ligne restent inchangés.La sortie est identique à l'entrée. + + + Les caractères de nouvelle ligne sont remplacés pour correspondre au caractère spécifié dans la propriété . + + + Spécifie l'état du lecteur. + + + La méthode a été appelée. + + + La fin du fichier a été atteinte avec succès. + + + Une erreur s'est produite et empêche l'opération de lecture de se poursuivre. + + + La méthode Read n'a pas été appelée. + + + La méthode Read a été appelée.Des méthodes supplémentaires peuvent être appelées sur le lecteur. + + + Spécifie l'état de . + + + Indique qu'une valeur d'attribut est en cours d'écriture. + + + Indique que la méthode a été appelée. + + + Indique que le contenu d'élément est en cours d'écriture. + + + Indique qu'une balise de début d'élément est en cours d'écriture. + + + Une exception a été levée et a laissé le dans un état non valide.Vous pouvez appeler la méthode pour mettre le à l'état .Toute autre méthode appelle les résultats dans un . + + + Indique que le prologue est en cours d'écriture. + + + Indique qu'une méthode Write n'a pas encore été appelée. + + + Encode et décode les noms XML, et fournit des méthodes pour la conversion entre les types Common Language Runtime et les types XSD (XML Schema Definition).Lors de la conversion de types de données, les valeurs retournées sont indépendantes des paramètres régionaux. + + + Décode un nom.Cette méthode fait le contraire des méthodes et . + Nom décodé. + Nom à transformer. + + + Convertit le nom en un nom local XML valide. + Nom encodé. + Nom à encoder. + + + Convertit le nom en un nom XML valide. + Retourne le nom avec les caractères non valides remplacés par une chaîne d'échappement. + Nom à traduire. + + + Vérifie que le nom est valide selon la spécification XML. + Nom encodé. + Nom à encoder. + + + Convertit la chaîne en un équivalent . + Valeur Boolean, c'est-à-dire true ou false. + Chaîne à convertir. + + is null. + + does not represent a Boolean value. + + + Convertit la chaîne en un équivalent . + Équivalent Byte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Char représentant le caractère unique. + Chaîne contenant un seul caractère à convertir. + The value of the parameter is null. + The parameter contains more than one character. + + + Convertit la chaîne en un élément en utilisant le mode spécifié. + Équivalent de la chaîne . + Valeur de la chaîne à convertir. + Une des valeurs de qui spécifient si la date doit être convertie en heure locale ou conservée en temps UTC, s'il s'agit d'une date UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir.Remarque   La chaîne doit être conforme à un sous-ensemble de la recommandation du W3C sur le type XML dateTime.Pour plus d'informations, consultez http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Format à partir duquel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à ce format. + + is null. + + or is an empty string or is not in the specified format. + + + Convertit la chaîne fournie en un équivalent . + Équivalent de la chaîne fournie. + Chaîne à convertir. + Tableau de formats à partir duquel peut être convertie.Chaque format figurant dans peut correspondre à un des sous-ensembles de la recommandation W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) La chaîne est validée par rapport à un de ces formats. + + + Convertit la chaîne en un équivalent . + Équivalent Decimal de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Double de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Guid de la chaîne. + Chaîne à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent Int16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Int64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent SByte de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent Single de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit le en . + Une représentation sous forme de chaîne de l'élément Boolean, c'est-à-dire "true" ou "false". + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Byte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Char. + Valeur à convertir. + + + Convertit l'élément en une chaîne en utilisant le mode spécifié. + Équivalent de l'élément . + Valeur à convertir. + Une des valeurs de qui spécifient comment traiter la valeur . + The value is not valid. + The or value is null. + + + Convertit l'élément fourni en une chaîne . + Représentation de l'élément fourni. + + à convertir. + + + Convertit l'élément fourni en une chaîne dans le format spécifié. + Représentation dans le format spécifié de l'élément . + + à convertir. + Format vers lequel est convertie.Le paramètre de format peut correspondre à un sous-ensemble de recommandations du W3C pour le type XML dateTime.(Pour plus d'informations consultez http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Convertit le en . + Représentation sous forme de chaîne de Decimal. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Double. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Guid. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Int64. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de SByte. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de Single. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de TimeSpan. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt16. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt32. + Valeur à convertir. + + + Convertit le en . + Représentation sous forme de chaîne de UInt64. + Valeur à convertir. + + + Convertit la chaîne en un équivalent . + Équivalent TimeSpan de la chaîne. + Chaîne à convertir.Le format de chaîne doit être conforme à la recommandation W3C intitulée Schema Part 2 : Datatypes pour les durées. + + is not in correct format to represent a TimeSpan value. + + + Convertit la chaîne en un équivalent . + Équivalent UInt16 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt32 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Convertit la chaîne en un équivalent . + Équivalent UInt64 de la chaîne. + Chaîne à convertir. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Vérifie que le nom est un nom valide selon la recommandation W3C XML (Extended Markup Language). + Le nom, s'il s'agit d'un nom XML valide. + Nom à vérifier. + + is not a valid XML name. + + is null or String.Empty. + + + Vérifie que le nom est un NCName valide selon la recommandation W3C XML (Extended Markup Language).Un élément NCName est un nom qui ne peut pas contenir un signe deux-points. + Le nom, s'il s'agit d'un NCName valide. + Nom à vérifier. + + is null or String.Empty. + + is not a valid non-colon name. + + + Vérifie que la chaîne est un NMTOKEN valide selon la recommandation du W3C intitulée XML Schema Part2 : Datatypes + Jeton de nom, s'il s'agit d'un NMTOKEN valide. + Chaîne à vérifier. + The string is not a valid name token. + + is null. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'ID publics valides. + Retourne la chaîne passée si tous les caractères de l'argument sont des caractères d'ID publics valides. + + qui contient l'ID à valider. + + + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides. + Retourne l'instance de chaîne passée si tous les caractères de l'argument de chaîne sont des caractères d'espace valides, sinon null. + + à vérifier. + + + Retourne les caractères de la chaîne passée si tous les caractères et caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations relatives au premier caractère non valide rencontré. + Retourne les caractères de la chaîne passée si tous les caractères et les caractères de la paire de substitution de l'argument de chaîne sont des caractères XML valides, sinon une exception XmlException est levée avec des informations sur le premier caractère non valide rencontré. + Chaîne qui contient les caractères à vérifier. + + + Spécifie la façon de traiter la valeur d'heure lors de la conversion entre chaîne et . + + + Traiter en tant qu'heure locale.Si l'objet représente une heure UTC (Universal Time Coordinates), il est converti en heure locale. + + + Les informations relatives au fuseau horaire doivent être conservées lors de la conversion. + + + Traiter en tant qu'heure locale si un est converti en chaîne. + + + Traiter en tant qu'heure UTC.Si l'objet représente une heure locale, il est converti en UTC. + + + Retourne des informations détaillées sur la dernière exception. + + + Initialise une nouvelle instance de la classe XmlException. + + + Initialise une nouvelle instance de la classe XmlException avec un message d'erreur spécifié. + Description de l'erreur. + + + Initialise une nouvelle instance de la classe XmlException. + Description de la condition d'erreur. + + qui a levé XmlException, le cas échéant.Cette valeur peut être null. + + + Initialise une nouvelle instance de la classe XmlException avec le message, l'exception interne, le numéro de ligne et la position de ligne spécifiés. + Description de l'erreur. + Exception qui constitue la cause de l'exception actuelle.Cette valeur peut être null. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient le numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + Numéro de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient la position de la ligne indiquant l'endroit où l'erreur s'est produite. + Position de la ligne indiquant l'endroit où l'erreur s'est produite. + + + Obtient un message décrivant l'exception actuelle. + Message d'erreur indiquant la raison de l'exception. + + + Résout des espaces de noms dans une collection, ajoute des espaces de noms à une collection, en supprime de celle-ci et gère la portée de ces espaces de noms. + + + Initialise une nouvelle instance de la classe avec le spécifié. + + à utiliser. + null is passed to the constructor + + + Ajoute l'espace de noms spécifié à la collection. + Préfixe à associer à l'espace de noms ajouté.Utilisez String.Empty pour ajouter un espace de noms par défaut.Remarque : si est utilisé pour la résolution des espaces de noms dans une expression XPath (XML Path Language), un préfixe doit être spécifié.Si une expression XPath n'inclut pas de préfixe, l'URI (Uniform Resource Identifier) d'espace de noms est supposé être un espace de noms vide.Pour plus d'informations sur les expressions XPath et , reportez-vous aux méthodes et . + Espace de noms à ajouter. + The value for is "xml" or "xmlns". + The value for or is null. + + + Obtient l'URI de l'espace de noms de l'espace de noms par défaut. + Retourne l'URI de l'espace de noms de l'espace de noms par défaut ou String.Empty s'il n'existe aucun espace de noms par défaut. + + + Retourne un énumérateur qui peut être utilisé pour itérer au sein des espaces de noms de . + + contenant les préfixes stockés par . + + + Obtient une collection de noms d'espace de noms indexés par préfixe qui peut être utilisée pour énumérer les espaces de noms figurant actuellement dans la portée. + Collection de paires d'espace de noms et préfixe actuellement dans la portée. + Valeur d'énumération qui spécifie le type de nœuds d'espace de noms à retourner. + + + Obtient une valeur indiquant si le préfixe fourni possède un espace de noms défini pour la portée actuelle faisant l'objet d'un push. + true si un espace de noms est défini ; sinon, false. + Préfixe de l'espace de noms que vous souhaitez rechercher. + + + Obtient l'URI de l'espace de noms du préfixe spécifié. + Retourne l'URI de l'espace de noms pour ou null en l'absence d'un espace de noms mappé.La chaîne retournée est atomisée.Pour plus d'informations sur les chaînes atomisées, consultez la classe . + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour mettre en correspondance l'espace de noms par défaut, passez String.Empty. + + + Recherche le préfixe déclaré pour l'URI de l'espace de noms spécifié. + Préfixe correspondant.S'il n'y a aucun préfixe mappé, la méthode retourne String.Empty.Si une valeur nulle est fournie, null est retourné. + Espace de noms à résoudre pour le préfixe. + + + Obtient le associé à cet objet. + + utilisé par cet objet. + + + Dépile une portée espace de noms de la pile. + true s'il reste des portées espaces de noms sur la pile ; false s'il n'existe plus d'espaces de noms à dépiler. + + + Exécute un push d'une portée espace de noms dans la pile. + + + Supprime l'espace de noms indiqué pour le préfixe spécifié. + Préfixe de l'espace de noms. + Espace de noms à supprimer pour le préfixe spécifié.L'espace de noms supprimé provient de la portée espace de noms en cours.Les espaces de noms situés en dehors de la portée actuelle sont ignorés. + The value of or is null. + + + Définit la portée espace de noms. + + + Tous les espaces de noms définis dans la portée du nœud actuel.Ceci inclut l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms définis dans la portée du nœud actuel, à l'exclusion de l'espace de noms xmlns:xml, qui est toujours déclaré implicitement.L'ordre des espaces de noms retournés n'est pas défini. + + + Tous les espaces de noms qui sont définis localement sur le nœud actuel. + + + Table d'objets de chaînes atomisées. + + + Initialise une nouvelle instance de la classe . + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante.Si la longueur a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à ajouter. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, atomise la chaîne spécifiée et l'ajoute à XmlNameTable. + Nouvelle chaîne atomisée ou, le cas échéant, la chaîne existante. + Nom à ajouter. + + a la valeur null. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant les mêmes caractères que la plage de caractères spécifiée dans le tableau donné. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée.Si a la valeur zéro, String.Empty est retourné. + Tableau de caractères contenant le nom à rechercher. + Index de base zéro dans le tableau spécifiant le premier caractère du nom. + Nombre de caractères dans le nom. + 0 > ou >= .Length ou > .Length Les conditions ci-dessus n'entraînent pas la levée d'une exception si =0. + + < 0. + + + En cas de substitution dans une classe dérivée, obtient la chaîne atomisée contenant la même valeur que la chaîne spécifiée. + Chaîne atomisée ou null si la chaîne n'a pas encore été atomisée. + Nom à rechercher. + + a la valeur null. + + + Spécifie le type de nœud. + + + Attribut (par exemple, id='123'). + + + Section CDATA (par exemple, <![CDATA[my escaped text]]>). + + + Commentaire (par exemple, <!-- my comment -->). + + + Objet document qui, en tant que racine de l'arborescence de documents, permet d'accéder à l'intégralité du document XML. + + + Fragment de document. + + + Déclaration de type du document, indiquée par la balise suivante (par exemple, <!DOCTYPE...>). + + + Élément (par exemple, <item>). + + + Balise d'élément de fin (par exemple, </item>). + + + Retourné lorsque XmlReader parvient à la fin du remplacement de l'entité, à la suite d'un appel à . + + + Déclaration d'entité (par exemple, <!ENTITY...>). + + + Référence à une entité (par exemple, &num;). + + + Ceci est retourné par si aucune méthode Read n'a été appelée. + + + Notation dans la déclaration de type du document (par exemple, <!NOTATION...>). + + + Instruction de traitement (par exemple, <?pi test?>). + + + Espace blanc entre le balisage dans un modèle de contenu mixte ou espace blanc dans la portée xml:space="preserve". + + + Texte d'un nœud. + + + Espace blanc entre le balisage. + + + Déclaration XML (par exemple, <?xml version='1.0'?>). + + + Fournit toutes les informations de contexte requises par pour analyser un fragment XML. + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le sous-ensemble DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , URI de base, xml:lang, xml:space, encodage et valeurs de type de document spécifiés. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Nom de la déclaration de type du document. + Identificateur public. + Identificateur système. + Sous-ensemble interne DTD.Le DTD est utilisé pour la résolution d'entité, pas pour la validation de document. + URI de base du fragment XML (emplacement à partir duquel le fragment a été chargé). + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les valeurs , , xml:lang et xml:space spécifiées. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations concernant les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Initialise une nouvelle instance de la classe XmlParserContext avec les , , xml:lang, xml:space spécifiés et l'encodage spécifié. + + à utiliser pour atomiser les chaînes.Si la valeur est null, la table de noms servant à construire est utilisée à la place.Pour plus d'informations sur les chaînes atomisées, consultez . + + à utiliser pour la recherche d'informations d'espace de noms, ou null. + Portée xml:lang. + Valeur indiquant la portée xml:space. + Objet indiquant le paramètre d'encodage. + + n'est pas le même XmlNameTable utilisé pour construire . + + + Obtient ou définit l'URI de base. + URI de base à utiliser pour résoudre le fichier DTD. + + + Obtient ou définit le nom de la déclaration de type du document. + Nom de la déclaration de type du document. + + + Obtient ou définit le type d'encodage. + Objet indiquant le type d'encodage. + + + Obtient ou définit le sous-ensemble interne DTD. + Sous-ensemble interne DTD.Par exemple, cette propriété retourne tout ce qui est contenu entre crochets <!DOCTYPE doc [...]>. + + + Obtient ou définit l'. + XmlNamespaceManager. + + + Obtient le utilisé pour atomiser les chaînes.Pour plus d'informations sur les chaînes atomisées, consultez . + XmlNameTable. + + + Obtient ou définit l'identificateur public. + Identificateur public. + + + Obtient ou définit l'identificateur système. + Identificateur système. + + + Obtient ou définit la portée xml:lang en cours. + Portée xml:lang en cours.S'il n'existe aucun xml:lang dans la portée, String.Empty est retournée. + + + Obtient ou définit la portée xml:space en cours. + Valeur indiquant la portée xml:space. + + + Représente un nom qualifié XML. + + + Initialise une nouvelle instance de la classe . + + + Initialise une nouvelle instance de la classe avec le nom spécifié. + Le nom local à utiliser comme nom de l'objet . + + + Initialise une nouvelle instance de la classe avec le nom et l'espace de noms spécifiés. + Le nom local à utiliser comme nom de l'objet . + Espace de noms pour l'objet . + + + Fournit une chaîne vide . + + + Détermine si l'objet spécifié est identique à l'objet en cours. + true si les deux sont le même objet d'instance ; sinon, false. + + à comparer. + + + Retourne le code de hachage pour . + Code de hachage de cet objet. + + + Obtient une valeur indiquant si est vide. + true si le nom et l'espace de noms sont des chaînes vides ; sinon false. + + + Obtient une représentation de chaîne du nom complet de . + Une représentation du nom complet ou String.Empty si un nom n'est pas défini pour l'objet. + + + Obtient une représentation d'espace de noms de . + Une représentation de l'espace de noms, ou String.Empty si un espace de noms n'est pas défini pour l'objet. + + + Compare deux objets . + true si les deux objets ont le même nom et les mêmes valeurs d'espace de noms ; sinon false. + + à comparer. + + à comparer. + + + Compare deux objets . + true si les valeurs de nom et d'espace de noms diffèrent pour les deux objets ; sinon false. + + à comparer. + + à comparer. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + + + Retourne la valeur de chaîne de . + La valeur de chaîne de au format de namespace:localname.Si l'objet n'a pas un espace de noms défini, cette méthode retourne uniquement le nom local. + Nom de l'objet. + Espace de noms pour l'objet. + + + Représente un lecteur fournissant un accès rapide, non mis en cache et en avant uniquement vers les données XML.Pour parcourir le code source de .NET Framework pour ce type, consultez la Source de référence. + + + Initialise une nouvelle instance de la classe XmlReader. + + + En cas de substitution dans une classe dérivée, obtient le nombre d'attributs du nœud actuel. + Nombre d'attributs du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de base du nœud actuel. + URI de base du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur qui indique si implémente les méthodes de lecture de contenu binaire. + true si les méthodes de lecture de contenu binaire sont implémentées ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si implémente la méthode spécifiée. + true si implémente la méthode  ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient une valeur indiquant si ce lecteur peut analyser et résoudre les entités. + true si le lecteur peut analyser et résoudre les entités ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Crée un nouveau instance à l'aide du flux spécifié avec les paramètres par défaut. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + + + Crée un nouveau instance avec les paramètres et les flux de données spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance à l'aide des informations de contexte, les paramètres et les flux de données spécifiées pour l'analyse. + Objet permettant de lire les données XML contenues dans le flux de données. + Flux contenant les données XML. analyse les premiers octets du flux à la recherche d'une marque d'ordre d'octet ou d'un autre signe d'encodage.Quand l'encodage est déterminé, il est utilisé pour continuer à lire le flux, et le traitement continue à analyser l'entrée en tant que flux de caractères (Unicode). + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau à l'aide du lecteur de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + La valeur est null. + + + Crée un nouveau à l'aide de la lecture du texte spécifié et les paramètres. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau .Cette valeur peut être null. + La valeur est null. + + + Crée un nouveau instance pour l'analyse à l'aide des informations de lecteur, les paramètres et le contexte de texte spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + Lecteur de texte à partir duquel lire les données XML.Comme un lecteur de texte retourne un flux de caractères Unicode, l'encodage spécifié dans la déclaration XML n'est pas utilisé par le lecteur XML pour décoder le flux de données. + Les paramètres du nouveau instance.Cette valeur peut être null. + Les informations de contexte nécessaires à l'analyse du fragment XML.Les informations de contexte peuvent inclure la à utiliser, l'encodage, la portée espace de noms, la portée xml:lang et xml:space actuelle, l'URI de base et la définition de type de document.Cette valeur peut être null. + La valeur est null. + Les propriétés et contiennent toutes deux des valeurs.(Seule une de ces propriétés NameTable peut être définie et utilisée). + + + Crée une instance de avec l'URI spécifié. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier qui contient les données XML.La classe permet de convertir un chemin d'accès en représentation de données canonique. + La valeur est null. + + n'a pas les autorisations nécessaires pour accéder à l'emplacement des données XML. + Le fichier identifié par l'URI n'existe pas. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau à l'aide de l'URI et les paramètres spécifiés. + Objet permettant de lire les données XML contenues dans le flux de données. + URI du fichier contenant les données XML.L'objet sur l'objet permet de convertir un chemin d'accès en représentation de données canonique.Si est null, un nouvel objet est utilisé. + Les paramètres du nouveau instance.Cette valeur peut être null. + La valeur est null. + Impossible de trouver le fichier spécifié par l'URI. + Dans les .NET pour applications Windows Store ou la Bibliothèque de classes portable, intercepte l'exception de classe de base, , sinon.Le format d'URI n'est pas correct. + + + Crée un nouveau instance à l'aide du lecteur XML spécifié et les paramètres. + Un objet qui est encapsulé autour du texte spécifié objet. + L'objet à utiliser comme lecteur XML sous-jacent. + Les paramètres du nouveau instance.Le niveau de conformité de l'objet doit soit correspondre au niveau de conformité du lecteur sous-jacent, soit avoir la valeur . + La valeur est null. + Si l'objet spécifie un niveau de conformité qui n'est pas cohérent avec le niveau de conformité du lecteur sous-jacent.ouLe sous-jacent est dans un état ou . + + + En cas de substitution dans une classe dérivée, obtient la profondeur du nœud actuel dans le document XML. + Profondeur du nœud actuel dans le document XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour ne libérer que les ressources non managées. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le lecteur est placé à la fin du flux. + true si le lecteur est placé à la fin du flux ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié.Cette méthode ne déplace pas le lecteur. + Index de l'attribut.L'index est de base zéro.Le premier attribut possède l'index 0. + + est hors limites.Il doit être non négatif et inférieur à la taille de la collection d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné. + Nom qualifié de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable ou si la valeur est String.Empty, null est retourné.Cette méthode ne déplace pas le lecteur. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + + a la valeur null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient de façon asynchrone la valeur du nœud actuel. + Valeur du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Obtient une valeur indiquant si le nœud actuel a des attributs. + true si le nœud actuel possède des attributs ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel peut posséder . + true si le nœud sur lequel le lecteur est placé actuellement peut posséder Value ; sinon, false.Si false, le nœud a une valeur de String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un attribut généré à partir de la valeur par défaut définie dans le DTD ou le schéma. + true si le nœud actuel est un attribut dont la valeur a été générée à partir de la valeur par défaut définie dans le DTD ou le schéma ; false si la valeur d'attribut a été définie explicitement. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient une valeur indiquant si le nœud actuel est un élément vide (par exemple, <MyElement/>). + true si le nœud actuel est un élément (la propriété est égale à XmlNodeType.Element) qui se termine par /> ; sinon, false. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une valeur indiquant si l'argument de chaîne est un nom XML valide. + true si le nom est valide ; sinon, false. + Nom à valider. + La valeur est null. + + + Retourne une valeur indiquant si l'argument de chaîne est un jeton de nom XML valide. + true si le jeton de nom est valide ; sinon, false. + Jeton de nom à valider. + La valeur est null. + + + Appelle et vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide. + true si trouve une balise de début ou une balise d'élément vide ; false si un type de nœud autre que XmlNodeType.Element est trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si la propriété de l'élément trouvé correspond à l'argument spécifié. + true si le nœud résultant est un élément et si la propriété Name correspond à la chaîne spécifiée.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si la propriété Name de l'élément ne correspond pas à la chaîne spécifiée. + Chaîne comparée à la propriété Name de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Appelle , vérifie si le nœud de contenu actuel est une balise de début ou une balise d'élément vide, puis vérifie également si les propriétés et de l'élément trouvé correspondent aux chaînes spécifiées. + true si le nœud résultant est un élément.false si un type de nœud autre que XmlNodeType.Element a été trouvé ou si les propriétés LocalName et NamespaceURI de l'élément ne correspondent pas aux chaînes spécifiées. + Chaîne à comparer à la propriété LocalName de l'élément trouvé. + Chaîne à comparer à la propriété NamespaceURI de l'élément trouvé. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec l'index spécifié. + Valeur de l'attribut spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le spécifié. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la valeur de l'attribut avec le et le spécifiés. + Valeur de l'attribut spécifié.Si l'attribut est introuvable, null est retournée. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom local du nœud actuel. + Nom du nœud actuel dont le préfixe est supprimé.Par exemple, LocalName est book pour l'élément <bk:book>.Pour les types de nœuds ne possédant pas de nom (par exemple Text, Comment, etc.), cette propriété retourne String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, résout un préfixe de l'espace de noms dans la portée de l'élément actuel. + URI de l'espace de noms vers lequel le préfixe est mappé ou null si aucun préfixe correspondant n'est trouvé. + Préfixe dont vous souhaitez résoudre l'URI de l'espace de noms.Pour établir une correspondance avec l'espace de noms par défaut, passez une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec l'index spécifié. + Index de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre a une valeur négative. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le spécifié. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Nom qualifié de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut avec le et le spécifiés. + true si l'attribut est trouvé ; sinon, false.Si la valeur est false, la position du lecteur ne change pas. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Vérifie si le nœud actuel est un nœud de contenu (texte non constitué d'espaces blancs, CDATA, Element, EndElement, EntityReference ou EndEntity).Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier.Il ignore les nœuds possédant les types suivants : ProcessingInstruction, DocumentType, Comment, Whitespace ou SignificantWhitespace. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie de façon asynchrone si le nœud actuel est un nœud de contenu.Si le nœud n'est pas un nœud de contenu, le lecteur avance jusqu'au nœud de contenu suivant ou jusqu'à la fin du fichier. + + du nœud actuel trouvé par la méthode ou XmlNodeType.None si le lecteur a atteint la fin du flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, se déplace vers l'élément contenant le nœud d'attribut actuel. + true si le lecteur est placé sur un attribut (le lecteur se déplace vers l'élément possédant l'attribut) ; false si le lecteur n'est pas placé sur un attribut (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers le premier attribut. + true si un attribut existe (le lecteur se déplace vers le premier attribut) ; sinon, false (la position du lecteur ne change pas). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, se déplace vers l'attribut suivant. + true s'il existe un attribut suivant ; false s'il n'existe plus d'attributs. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le nom qualifié du nœud actuel. + Nom qualifié du nœud actuel.Par exemple, Name est bk:book pour l'élément <bk:book>.Le nom retourné dépend du du nœud.Les types de nœuds suivants retournent les valeurs répertoriées.Tous les autres types de nœuds retournent une chaîne vide.Type de nœud Nom AttributeNom de l'attribut. DocumentTypeNom du type de document. ElementNom de la balise. EntityReferenceNom de l'entité référencée. ProcessingInstructionCible de l'instruction de traitement. XmlDeclarationChaîne littérale xml. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'URI de l'espace de noms (tel qu'il est défini dans la spécification relative aux espaces de noms du W3C) du nœud sur lequel le lecteur est placé. + URI d'espace de noms du nœud actuel ; sinon, une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le associé à cette implémentation. + XmlNameTable vous permettant d'obtenir la version atomisée d'une chaîne du nœud. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le type du nœud actuel. + Une des valeurs d'énumération qui spécifient le type du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient le préfixe de l'espace de noms associé au nœud actuel. + Préfixe de l'espace de noms associé au nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit le nœud suivant à partir du flux. + trueSi le nœud suivant a été lu avec succès ; Sinon, false. + Une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le nœud suivant à partir du flux de données. + true si le nœud suivant a été lu correctement ; false s'il n'existe plus de nœuds à lire. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, analyse la valeur d'attribut dans un ou plusieurs nœuds Text, EntityReference ou EndEntity. + true s'il existe des nœuds à retourner.false si le lecteur n'est pas placé sur un nœud d'attribut lorsque l'appel initial est effectué ou si toutes les valeurs d'attributs ont été lues.Un attribut vide, par exemple misc="", retourne true avec un nœud unique et la valeur String.Empty. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type.Par exemple, il peut être utilisé lors de la conversion d'un objet en xs:string.Cette valeur peut être null. + Le format du contenu n'est pas correct pour le type cible. + La tentative de cast n'est pas valide. + La valeur est null. + Le nœud actuel n'est pas un type de nœud pris en charge.Voir le tableau ci-dessous pour plus d'informations. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu en tant qu'objet du type spécifié. + Contenu de texte concaténé ou valeur d'attribut converti(e) en type demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + + n'est pas pris en charge sur le nœud actuel. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu et retourne les octets binaires décodés au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un Boolean. + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte à la position actuelle comme un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante double précision. + Contenu de texte sous la forme d'un nombre à virgule flottante double précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + Contenu de texte à la position actuelle en tant que nombre à virgule flottante simple précision. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 32 bits. + Contenu de texte sous la forme d'un entier signé de 32 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un entier signé de 64 bits. + Contenu de texte sous la forme d'un entier signé de 64 bits. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit le contenu de texte à la position actuelle comme un . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme de l'objet CLR le plus approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + La tentative de cast n'est pas valide. + Le format de chaîne n'est pas valide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de texte à la position actuelle comme un objet . + Contenu de texte sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit le contenu d'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner.Remarque   Avec le .NET Framework version 3.5, la valeur du paramètre peut maintenant être le type . + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Lire Decimal.MaxValue. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu de l'élément en tant que type demandé. + Contenu d'élément converti en l'objet typé demandé. + Type de la valeur à retourner. + Objet permettant de résoudre tous les préfixes d'espaces de noms liés à la conversion de type. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format Base64. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + La valeur est null. + Le nœud actuel n'est pas un nœud d'élément. + L'index de la mémoire tampon (ou l'index augmenté de la valeur du paramètre count) est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + L'élément contient un contenu mixte. + Impossible de convertir le contenu en type demandé. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément et décode le contenu au format BinHex. + Nombre d'octets écrits dans la mémoire tampon. + Mémoire tampon dans laquelle copier le texte obtenu.Cette valeur ne peut pas être null. + Offset de la mémoire tampon où commence la copie du résultat. + Nombre maximal d'octets à copier dans la mémoire tampon.Le nombre réel d'octets copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante double précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante double précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante double précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu sous la forme d'un nombre à virgule flottante simple précision. + Contenu d'élément sous la forme d'un nombre à virgule flottante simple précision. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en nombre à virgule flottante simple précision. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 32 bits. + Contenu d'élément sous la forme d'un entier signé de 32 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 32 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu comme un entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'entier signé de 64 bits. + Contenu d'élément sous la forme d'un entier signé de 64 bits. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en un entier signé de 64 bits. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local et l'URI de l'espace de noms spécifiés correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouImpossible de convertir le contenu de l'élément en type demandé. + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant que . + Objet CLR boxed du type le plus approprié.La propriété détermine le type CLR approprié.Si le contenu est de type liste, cette méthode retourne un tableau d'objets boxed du type approprié. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nom local spécifié et l'URI de l'espace de noms correspondent à ceux de l'élément actuel, puis lit l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + + n'est pas placé sur un élément. + L'élément en cours contient des éléments enfants.ouLe contenu de l'élément ne peut pas être converti en objet . + La méthode est appelée avec des arguments null. + Le nom local et l'URI de l'espace de noms spécifiés ne correspondent pas à l'élément actuel lu. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone l'élément actuel et retourne le contenu en tant qu'objet . + Contenu de l'élément sous la forme d'un objet . + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud de contenu actuel est une balise de fin et avance le lecteur jusqu'au nœud suivant. + Le nœud actuel n'est pas une balise de fin ou un code XML incorrect est trouvé dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, lit tout le contenu, y compris le balisage, sous forme de chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée.Si le nœud actuel n'est ni un élément ni un attribut, une chaîne vide est retournée. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone tout le contenu, notamment le balisage, en tant que chaîne. + Tout le contenu XML, y compris le balisage, du nœud actuel.Si le nœud actuel n'a pas d'enfants, une chaîne vide est retournée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, lit le contenu, y compris le balisage, représentant ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + XML était incorrect ou une erreur s'est produite lors de l'analyse XML. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone le contenu, notamment le balisage, qui représente ce nœud et tous ses enfants. + Si le lecteur est placé sur un nœud d'élément ou d'attribut, cette méthode retourne tout le contenu XML, y compris le balisage, du nœud actuel et de tous ses enfants ; sinon, elle retourne une chaîne vide. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + Vérifie que le nœud actuel est un élément et avance le lecteur jusqu'au nœud suivant. + Code XML incorrect dans le flux d'entrée. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le spécifié, puis avance le lecteur jusqu'au nœud suivant. + Nom qualifié de l'élément. + Code XML incorrect dans le flux d'entrée. ou Le de l'élément ne correspond pas au donné. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Vérifie que le nœud de contenu actuel est un élément avec le et le spécifiés, puis avance le lecteur jusqu'au nœud suivant. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Code XML incorrect dans le flux d'entrée.ouLes propriétés et de l'élément trouvé ne correspondent pas aux arguments spécifiés. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient l'état du lecteur. + L'une des valeurs d'énumération qui spécifie l'état du lecteur. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Retourne une nouvelle instance de XmlReader qui permet de lire le nœud actuel, ainsi que tous ses descendants. + Une nouvelle instance de lecteur XML définie sur .Appel de la méthode positionne le nouveau lecteur sur le nœud qui était actif avant l'appel à la (méthode). + Lorsque cette méthode est appelée, le lecteur XML n'est pas positionné sur un élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Avance le vers l'élément descendant suivant portant le nom qualifié spécifié. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom qualifié de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance vers le nœud descendant suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément descendant correspondant est trouvé ; sinon, false.Si aucun élément enfant correspondant n'est trouvé, le est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément.Si n'est pas placé sur un élément lorsque est appelé, cette méthode retourne false et la position de ne change pas. + Nom local de l'élément vers lequel se déplacer. + URI de l'espace de noms de l'élément vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit jusqu'à trouver un élément avec le nom qualifié spécifié. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Nom qualifié de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Lit jusqu'à trouver un élément avec le nom local et l'URI de l'espace de noms spécifiés. + true si un élément correspondant est trouvé ; sinon, false et est dans un état de fin de fichier. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Avance le XmlReader vers l'élément frère suivant portant le nom qualifié spécifié. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom qualifié de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Le paramètre est une chaîne vide. + + + Avance XmlReader vers l'élément frère suivant doté du nom local et de l'URI de l'espace de noms spécifiés. + true si un élément frère correspondant est trouvé ; sinon, false.Si aucun élément frère correspondant n'est trouvé, le XmlReader est placé sur la balise de fin ( est XmlNodeType.EndElement) de l'élément parent. + Nom local de l'élément frère vers lequel se déplacer. + URI de l'espace de noms de l'élément frère vers lequel se déplacer. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Les deux valeurs des paramètres sont null. + + + Lit des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Le nœud actuel n'a pas de valeur ( est false). + La valeur est null. + L'index de la mémoire tampon, ou l'index augmenté de la valeur du paramètre count, est supérieur à la taille de la mémoire tampon allouée. + L'implémentation de ne prend pas en charge cette méthode. + La forme des données XML n'est pas correcte. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Lit de façon asynchrone des flux de texte volumineux incorporés dans un document XML. + Nombre total de caractères lus dans la mémoire tampon.La valeur zéro est retournée quand il n'y a plus de contenu de texte. + Tableau de caractères servant de mémoire tampon dans laquelle le texte est écrit.Cette valeur ne peut pas être null. + Offset dans la mémoire tampon où le peut commencer à copier les résultats. + Nombre maximal de caractères à copier dans la mémoire tampon.Le nombre réel de caractères copiés est retourné à partir de cette méthode. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, résout la référence d'entité des nœuds EntityReference. + Le lecteur n'est pas placé sur un nœud EntityReference ; cette implémentation du lecteur ne permet pas de résoudre les entités ( retourne false). + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance du lecteur.Si ce lecteur n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore les enfants du nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Ignore de façon asynchrone les enfants du nœud actuel. + Nœud actuel. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + Une méthode asynchrone a été appelée sans définir l'indicateur sur true.Dans ce cas, est levée avec le message indiquant de définir XmlReaderSettings.Async si vous souhaitez utiliser les méthodes Async. + + + En cas de substitution dans une classe dérivée, obtient la valeur texte du nœud actuel. + La valeur retournée dépend du du nœud.Le tableau suivant répertorie les types de nœuds possédant une valeur de retour.Tous les autres types de nœuds retournent String.Empty.Type de nœud Valeur AttributeValeur de l'attribut. CDATAContenu de la section CDATA. CommentContenu du commentaire. DocumentTypeSous-ensemble interne. ProcessingInstructionContenu entier, à l'exclusion de la cible. SignificantWhitespaceEspace blanc entre les balisages dans un modèle de contenu mixte. TextContenu du nœud de texte. WhitespaceEspace blanc entre les balisages. XmlDeclarationContenu de la déclaration. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Obtient le type de CLR du nœud actuel. + Type CLR qui correspond à la valeur typée du nœud.La valeur par défaut est System.String. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang en cours. + Portée xml:lang en cours. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + En cas de substitution dans une classe dérivée, obtient la portée xml:space en cours. + Une des valeurs de .S'il n'existe pas de portée xml:space, cette propriété prend la valeur par défaut XmlSpace.None. + Une méthode a été appelée avant la fin d'une opération asynchrone précédente.Dans ce cas, est levée avec le message indiquant qu'une opération asynchrone est déjà en cours. + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur indiquant si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur indiquant si la vérification des caractères doit être assurée. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true.RemarqueSi le traite des données de texte, il vérifie toujours que les noms XML et le contenu de texte sont valides, indépendamment du paramètre de propriété.L'attribution à de la valeur false désactive la vérification de caractères pour la recherche de références d'entité de caractère. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si le flux sous-jacent ou doit être fermé à la fermeture du lecteur. + true pour fermer le flux sous-jacent ou à la fermeture du lecteur ; sinon false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité que respecte. + Une des valeurs d'énumération qui spécifie le niveau de conformité appliqué par le lecteur XML.La valeur par défaut est . + + + Obtient ou définit une valeur qui détermine le traitement des DTD. + L'une des valeurs d'énumération qui détermine le traitement des DTD.La valeur par défaut est . + + + Obtient ou définit une valeur indiquant si les commentaires doivent être ignorés. + true pour ignorer les commentaires ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les instructions de traitement doivent être ignorées. + true pour ignorer les instructions de traitement ; sinon false.La valeur par défaut est false. + + + Obtient ou définit une valeur indiquant si les espaces blancs non significatifs doivent être ignorés. + true pour ignorer l'espace blanc ; sinon false.La valeur par défaut est false. + + + Obtient ou définit l'offset du numéro de ligne de l'objet . + Offset de numéro de ligne.La valeur par défaut est 0. + + + Obtient ou définit l'offset de position de ligne de l'objet . + Décalage de position de ligne.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document, qui résultent du développement des entités. + Nombre maximal autorisé de caractères résultant du développement des entités.La valeur par défaut est 0. + + + Obtient ou définit une valeur correspondant au nombre maximal autorisé de caractères dans un document XML.Zéro (0) signifie que la taille du document XML n'est pas limitée.Une valeur non nulle spécifie la taille maximale, en caractères. + Nombre maximal autorisé de caractères dans un document XML.La valeur par défaut est 0. + + + Obtient ou définit servant aux comparaisons de chaînes atomisées. + + qui stocke toutes les chaînes atomisées utilisées par toutes les instances créées à l'aide de cet objet .La valeur par défaut est null.L'instance de créée utilisera un nouveau vide si cette valeur est null. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Spécifie la portée xml:space en cours. + + + La portée xml:space est default. + + + Pas de portée xml:space. + + + La portée xml:space est preserve. + + + Représente un writer qui fournit un moyen rapide, sans mise en cache et en avant de générer des flux de données ou des fichiers contenant des données XML. + + + Initialise une nouvelle instance de la classe . + + + Crée une instance de à l'aide du flux spécifié. + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + The value is null. + + + Crée une instance de à l'aide du flux et de l'objet . + Objet . + Flux dans lequel vous voulez écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au flux de données spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire. écrit la syntaxe du texte XML 1.0 et l'ajoute au spécifié. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide du spécifié. + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + The value is null. + + + Crée une nouvelle instance de à l'aide des objets et . + Objet . + + dans lequel écrire.Le contenu écrit par le est ajouté au . + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Crée une instance de à l'aide de l'objet spécifié. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + The value is null. + + + Crée une instance de à l'aide des objets et spécifiés. + Objet autour de l'objet spécifié. + L'objet à utiliser comme writer sous-jacent. + Objet permettant de configurer la nouvelle instance de .S'il est null, un avec des paramètres par défaut est utilisé.Si est utilisé avec la méthode , vous devez utiliser la propriété pour obtenir un objet avec les paramètres corrects.Cela garantit que l'objet créé dispose des paramètres de sortie corrects. + The value is null. + + + Libère toutes les ressources utilisées par l'instance actuelle de la classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Libère les ressources non managées utilisées par et libère éventuellement les ressources managées. + true pour libérer les ressources managées et non managées ; false pour libérer uniquement les ressources non managées. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, vide le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Vide de façon asynchrone le contenu de la mémoire tampon dans les flux sous-jacents, puis vide le flux sous-jacent. + Tâche qui représente l'opération Flush asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, retourne le préfixe le plus proche défini dans la portée espace de noms actuelle pour l'URI de l'espace de noms. + Le préfixe correspondant ou null, s'il n'existe aucun URI d'espace de noms correspondant dans la portée actuelle. + URI de l'espace de noms dont vous recherchez le préfixe. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Obtient l'objet permettant de créer cette instance de . + Objet permettant de créer cette instance de writer.Si ce writer n'a pas été créé à l'aide de la méthode , cette propriété retourne null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit tous les attributs trouvés à la position actuelle dans . + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone tous les attributs trouvés à la position actuelle dans le . + Tâche qui représente l'opération WriteAttributes asynchrone. + XmlReader à partir duquel les attributs doivent être copiés. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le nom local et la valeur spécifiés. + Le nom local de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit un attribut avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'attribut. + URI de l'espace de noms à associer à l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'attribut avec le préfixe, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteAttributeString asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + Valeur de l'attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format Base64 et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format base64 et écrit le texte résultant. + Tâche qui représente l'opération WriteBase64 asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, code les octets binaires spécifiés au format BinHex et écrit le texte obtenu. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Encode de façon asynchrone les octets binaires spécifiés au format BinHex et écrit le texte résultant. + Tâche qui représente l'opération WriteBinHex asynchrone. + Tableau d'octets à encoder. + Emplacement dans la mémoire tampon indiquant le début des octets à écrire. + Nombre d'octets à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un bloc <![CDATA[...]]> contenant le texte spécifié. + Texte à placer dans le bloc CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un bloc <![CDATA[…]]> contenant le texte spécifié. + Tâche qui représente l'opération WriteCData asynchrone. + Texte à placer dans le bloc CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, force la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Caractère Unicode pour lequel une entité de caractère doit être générée. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Force de façon asynchrone la génération d'une entité de caractère pour la valeur du caractère Unicode spécifiée. + Tâche qui représente l'opération WriteCharEntity asynchrone. + Caractère Unicode pour lequel une entité de caractère doit être générée. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit du texte mémoire tampon par mémoire tampon. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone du texte mémoire tampon par mémoire tampon. + Tâche qui représente l'opération WriteChars asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit un commentaire <!--...--> contenant le texte spécifié. + Texte à placer dans le commentaire. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un commentaire <!--...--> contenant le texte spécifié. + Tâche qui représente l'opération WriteComment asynchrone. + Texte à placer dans le commentaire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration DOCTYPE avec le nom et les attributs facultatifs spécifiés. + Tâche qui représente l'opération WriteDocType asynchrone. + Nom de DOCTYPE.Ne doit pas être vide. + Si la valeur est non null, elle écrit également PUBLIC "pubid" "sysid", et étant remplacés par la valeur des arguments spécifiés. + Si est null et que est non null, elle écrit SYSTEM "sysid", étant remplacé par la valeur de cet argument. + Si la valeur est non null, elle écrit [subset] où subset est remplacé par la valeur de cet argument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit un élément avec la valeur et le nom locaux spécifiés. + Le nom local de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone un élément avec le préfixe spécifié, le nom local, l'URI de l'espace de noms et la valeur spécifiés. + Tâche qui représente l'opération WriteElementString asynchrone. + Le préfixe de l'élément. + Le nom local de l'élément. + L'URI de l'espace de noms de l'élément. + Valeur de l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme le précédent appel de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone l'appel précédent. + Tâche qui représente l'opération WriteEndAttribute asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme les éléments ou attributs ouverts, et replace le writer à l'état Start. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone les éléments ou attributs ouverts, et replace le writer à l'état Start. + Tâche qui représente l'opération WriteEndDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une référence d'entité comme suit : &name;. + Nom de la référence d'entité. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une référence d'entité comme suit : &name;. + Tâche qui représente l'opération WriteEntityRef asynchrone. + Nom de la référence d'entité. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, ferme un élément et dépile la portée espace de noms correspondante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ferme de façon asynchrone un élément et exécute un pop sur la portée espace de noms correspondante. + Tâche qui représente l'opération WriteFullEndElement asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un nom valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteName asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Nom à écrire. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom spécifié, en vérifiant qu'il s'agit d'un NmToken valide conformément à la recommandation du W3C intitulée Extensible Markup Language (XML) 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Tâche qui représente l'opération WriteNmToken asynchrone. + Nom à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, copie tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copie de façon asynchrone tout le contenu du lecteur vers le writer, puis déplace le lecteur vers le début du frère suivant. + Tâche qui représente l'opération WriteNode asynchrone. + + à lire. + true pour copier les attributs par défaut à partir de XmlReader ; sinon, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une instruction de traitement avec un espace entre le nom et le texte : <?nom texte?>. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone une instruction de traitement avec un espace entre le nom et le texte, comme suit : <?nom texte?>. + Tâche qui représente l'opération WriteProcessingInstruction asynchrone. + Nom de l'instruction de traitement. + Texte à inclure dans l'instruction de traitement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Nom local à écrire. + URI d'espace de noms de ce nom. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le nom qualifié de l'espace de noms.Cette méthode recherche le préfixe situé dans la portée de l'espace de noms spécifié. + Tâche qui représente l'opération WriteQualifiedName asynchrone. + Nom local à écrire. + URI d'espace de noms de ce nom. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une mémoire tampon de caractères. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit manuellement un balisage brut à partir d'une chaîne. + Chaîne contenant le texte à écrire. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit manuellement de façon asynchrone un balisage brut à partir d'une mémoire tampon de caractères. + Tâche qui représente l'opération WriteRaw asynchrone. + Tableau de caractères contenant le texte à écrire. + Emplacement dans la mémoire tampon indiquant le début du texte à écrire. + Nombre de caractères à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone un balisage brut à partir d'une chaîne. + Tâche qui représente l'opération WriteRaw asynchrone. + Chaîne contenant le texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit le début d'un attribut avec le nom local spécifié. + Le nom local de l'attribut. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit le début d'un attribut avec le nom local et l'URI de l'espace de noms spécifiés. + Le nom local de l'attribut. + L'URI de l'espace de noms de l'attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le début d'un attribut avec le préfixe, le nom local et l'URI de l'espace de noms spécifiés. + Tâche qui représente l'opération WriteStartAttribute asynchrone. + Préfixe de l'espace de noms de cet attribut. + Le nom local de l'attribut. + URI d'espace de noms de cet attribut. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la déclaration XML avec la version "1.0" et l'attribut autonome. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 ». + Tâche qui représente l'opération WriteStartDocument asynchrone. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit de façon asynchrone la déclaration XML avec la version « 1.0 » et l'attribut autonome. + Tâche qui représente l'opération WriteStartDocument asynchrone. + Si la valeur est true, elle écrit "standalone=yes"; si la valeur est false, elle écrit "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, écrit une balise de début avec le nom local spécifié. + Le nom local de l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée et l'associe à l'espace de noms indiqué. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément.Si cet espace de noms est déjà dans la portée et qu'il possède un préfixe associé, le writer écrit automatiquement ce préfixe également. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit la balise de début spécifiée, puis l'associe à l'espace de noms et au préfixe indiqués. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone la balise de début indiquée et l'associe à l'espace de noms et au préfixe spécifiés. + Tâche qui représente l'opération WriteStartElement asynchrone. + Préfixe d'espace de noms de cet élément. + Le nom local de l'élément. + URI de l'espace de noms à associer à l'élément. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient l'état du writer. + Une des valeurs de . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit le texte spécifié. + Texte à écrire. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone le texte spécifié. + Tâche qui représente l'opération WriteString asynchrone. + Texte à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, génère et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Génère de façon asynchrone et écrit l'entité de caractère de substitution correspondant à la paire de caractères de substitution. + Tâche qui représente l'opération WriteSurrogateCharEntity asynchrone. + Substitut faible.Il doit s'agir d'une valeur comprise entre 0xDC00 et 0xDFFF. + Substitut étendu.Il doit s'agir d'une valeur comprise entre 0xD800 et 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit la valeur de l'objet. + Valeur de l'objet à écrire.Remarque   Avec le .NET Framework version 3.5, cette méthode accepte en tant que paramètre. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit un nombre à virgule flottante simple précision. + Nombre à virgule flottante simple précision à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit une valeur . + Valeur à écrire. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, écrit l'espace blanc spécifié. + Chaîne d'espaces blancs. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Écrit de façon asynchrone l'espace blanc spécifié. + Tâche qui représente l'opération WriteWhitespace asynchrone. + Chaîne d'espaces blancs. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + En cas de substitution dans une classe dérivée, obtient la portée xml:lang actuelle. + Portée xml:lang actuelle. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + En cas de substitution dans une classe dérivée, obtient représentant la portée xml:spaceactuelle. + Obtient un XmlSpace représentant la portée xml:space actuelle.Valeur Signification NoneValeur par défaut si aucune portée xml:space n'existe.DefaultLa portée actuelle est xml:space="default".PreserveLa portée actuelle est xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Spécifie un jeu de fonctionnalités à prendre en charge sur l'objet créé par la méthode . + + + Initialise une nouvelle instance de la classe . + + + Obtient ou définit une valeur qui indique si les méthodes asynchrones peuvent être utilisées sur une instance particulière. + true si des méthodes asynchrones peuvent être utilisées ; sinon, false. + + + Obtient ou définit une valeur qui indique si le writer XML doit vérifier que tous les caractères du document sont conformes à la section « 2.2 Characters » de la W3C XML 1.0 Recommendation.. + true pour assurer la vérification des caractères ; sinon, false.La valeur par défaut est true. + + + Crée une copie de l'instance de . + Objet cloné. + + + Obtient ou définit une valeur indiquant si doit également fermer le flux sous-jacent ou quand la méthode est appelée. + true pour également fermer le flux sous-jacent ou  ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit le niveau de conformité de vérification de sortie XML du writer XML. + Une des valeurs d'énumération qui spécifie le niveau de conformité (document, fragment ou détection automatique).La valeur par défaut est . + + + Obtient ou définit le type d'encodage de texte à utiliser. + Encodage de texte à utiliser.La valeur par défaut est Encoding.UTF8. + + + Obtient ou définit une valeur indiquant si les éléments doivent être mis en retrait. + true pour écrire des éléments individuels sur de nouvelles lignes et les mettre en retrait ; sinon, false.La valeur par défaut est false. + + + Obtient ou définit la chaîne de caractères à utiliser au moment de la mise en retrait.Ce paramètre est utilisé quand la propriété a la valeur true. + Chaîne de caractères à utiliser au moment de la mise en retrait.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.Par défaut, il s'agit de deux espaces. + The value assigned to the is null. + + + Obtient ou définit une valeur qui indique si doit supprimer des déclarations d'espace de noms en double pendant l'écriture du contenu XML.Le comportement par défaut consiste pour le writer à générer la sortie de toutes les déclarations d'espace de noms qui sont présentes dans le programme de résolution d'espace de noms du writer. + L'énumération utilisée pour spécifier s'il faut supprimer les déclarations d'espace de noms en double dans le . + + + Obtient ou définit la chaîne de caractères à utiliser pour les sauts de ligne. + Chaîne de caractères à utiliser pour les sauts de ligne.Elle peut avoir n'importe quelle valeur de chaîne.Toutefois, pour garantir la validité du XML, vous devez spécifier uniquement des caractères d'espace blanc valides, tels que les espaces, les tabulations, les retours chariot ou les sauts de ligne.La valeur par défaut est \r\n (retour chariot, nouvelle ligne). + The value assigned to the is null. + + + Obtient ou définit une valeur indiquant s'il convient de normaliser des sauts de ligne dans la sortie. + Une des valeurs de .La valeur par défaut est . + + + Obtient ou définit une valeur indiquant s'il convient d'écrire des attributs sur une nouvelle ligne. + true pour écrire des attributs sur des lignes ; sinon, false.La valeur par défaut est false.RemarqueCe paramètre n'a aucun effet si la propriété a la valeur false.Quand a la valeur true, chaque attribut est ajouté avec une nouvelle ligne et un niveau supplémentaire de mise en retrait. + + + Obtient ou définit une valeur indiquant si une déclaration XML doit être omise. + true pour omettre la déclaration XML ; sinon, false.La valeur par défaut est false, une déclaration XML est écrite. + + + Réinitialise les membres de la classe de paramètres à leurs valeurs par défaut. + + + Obtient ou définit une valeur qui indique si ajoutera des indicateurs de fermeture à tous les indicateurs d'éléments non fermés quand la méthode est appelée. + true si toutes les balises d'élément non fermées seront fermées ; sinon, false.La valeur par défaut est true. + + + Représentation en mémoire d'un schéma XML, comme spécifié dans les spécifications XML Schema Part 1: Structures et XML Schema Part 2: Datatypes du World Wide Web Consortium (W3C). + + + Indique si les attributs ou les éléments doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Aucune forme d'élément et d'attribut n'est spécifiée dans le schéma. + + + Les éléments et les attributs doivent être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Les éléments et les attributs ne doivent pas obligatoirement être qualifiés à l'aide d'un préfixe d'espace de noms. + + + Offre une mise en forme personnalisée pour la sérialisation et la désérialisation XML. + + + Cette méthode est réservée et ne doit pas être utilisée.Lorsque vous implémentez l'interface IXmlSerializable, vous devez retourner la valeur null (Nothing dans Visual Basic) à partir cette méthode et, si la spécification d'un schéma personnalisé est requise, appliquez à la place à la classe. + + qui décrit la représentation XML de l'objet qui est généré par la méthode et utilisé par la méthode . + + + Génère un objet à partir de sa représentation XML. + + source à partir de laquelle l'objet est désérialisé. + + + Convertit un objet en sa représentation XML. + + flux dans lequel l'objet est sérialisé. + + + Dans le cadre d'une application à un type, stocke le nom d'une méthode statique du type qui retourne un schéma XML et un (ou pour les types anonymes) qui contrôle la sérialisation du type. + + + Initialise une nouvelle instance de la classe , en acceptant le nom de la méthode statique qui fournit le schéma XML du type. + Nom de la méthode statique qui doit être implémentée. + + + Obtient ou définit une valeur qui détermine si la classe cible est un caractère générique, ou que le schéma pour la classe contient uniquement un élément xs:any. + true si la classe est un caractère générique ou si le schéma contient uniquement l'élément xs:any ; sinon, false. + + + Obtient le nom de la méthode statique qui fournit le schéma XML du type et le nom de son type de données de schéma XML. + Nom de la méthode qui est appelée par l'infrastructure XML pour retourner un schéma XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/it/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/it/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..0b7c9a4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/it/System.Xml.ReaderWriter.xml @@ -0,0 +1,2611 @@ + + + + System.Xml.ReaderWriter + + + + Specifica il livello di controllo dell'input o dell'output eseguito dagli oggetti e . + + + L'oggetto o rileva automaticamente se il controllo deve essere eseguito a livello di documento o di frammento e procede nel modo appropriato.Se viene eseguito il wrapping di un altro oggetto o , l'oggetto esterno non esegue altri controlli di conformità.Il controllo di conformità viene eseguito fino al livello dell'oggetto sottostante.Per informazioni su come viene determinato il livello di conformità, vedere le proprietà e . + + + I dati XML sono conformi alle regole per un documento XML 1.0 ben formato, in base alla definizione di W3C. + + + I dati XML sono un frammento XML ben formato, in base alla definizione di W3C. + + + Specifica le opzioni per l'elaborazione dei DTD.L'enumerazione viene utilizzata dalla classe . + + + Fa in modo che venga ignorato l'elemento DOCTYPE.L'operazione di elaborazione dei DTD non ha luogo. + + + Specifica che quando viene rilevato un DTD, viene generato un oggetto con un messaggio indicante che i DTD non sono consentiti.Questo è il comportamento predefinito. + + + Fornisce un'interfaccia che consente ad una classe di restituire informazioni sulla riga e sulla posizione. + + + Ottiene un valore che indica se la classe può restituire informazioni sulla riga. + true se è possibile specificare la e ; in caso contrario false. + + + Ottiene il numero corrente di riga. + Numero della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Ottiene la posizione corrente di riga. + Posizione della riga corrente o 0 se non sono disponibili informazioni sulla riga: , ad esempio, restituisce false. + + + Fornisce l'accesso in sola lettura a un set di mapping di prefissi e spazi dei nomi. + + + Ottiene una raccolta di mapping definiti di prefissi-spazi dei nomi attualmente inclusi nell'ambito. + + contenente tutti gli spazi dei nomi attualmente inclusi nell'ambito. + Valore di che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene l'URI dello spazio dei nomi mappato al prefisso specificato. + L'URI dello spazio dei nomi mappato al prefisso; null se il prefisso non è mappato all'URI dello spazio dei nomi. + Prefisso del quale si desidera individuare l'URI dello spazio dei nomi. + + + Ottiene il prefisso mappato all'URI dello spazio dei nomi specificato. + Il prefisso mappato all'URI dello spazio dei nomi; null se l'URI dello spazio dei nomi non è mappato al prefisso. + URI dello spazio dei nomi di cui si desidera individuare il prefisso. + + + Specifica se rimuovere le dichiarazioni di spazio dei nomi duplicate nell'oggetto . + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate non verranno rimosse. + + + Specifica che le dichiarazioni dello spazio dei nomi duplicate verranno rimosse.Affinché lo spazio dei nomi duplicato venga rimosso, il prefisso e lo spazio dei nomi devono corrispondere. + + + Implementa una classe a thread singolo. + + + Inizializza una nuova istanza della classe NameTable. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente la stringa da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere della stringa. + Numero di caratteri nella stringa. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Suddivide in elementi di base la stringa specificata e la aggiunge alla classe NameTable. + Stringa suddivisa in elementi di base o stringa esistente se già presente nella classe NameTable. + Stringa da aggiungere. + + è null. + + + Ottiene la stringa suddivisa in elementi di base che contiene gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da trovare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - >= .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Ottiene la stringa suddivisa in elementi di base con il valore specificato. + Oggetto della stringa suddivisa in elementi di base o null se la stringa non è stata ancora suddivisa. + Nome da trovare. + + è null. + + + Specifica in che modo gestire le interruzioni di riga. + + + I caratteri della nuova riga diventano entità.Questa impostazione mantiene tutti i caratteri quando l'output viene letto da una classe di normalizzazione. + + + I caratteri della nuova riga restano invariati.L'output è uguale all'input. + + + I caratteri della nuova riga vengono sostituiti in modo che corrispondano al carattere specificato nella proprietà . + + + Specifica lo stato del lettore. + + + È stato chiamato il metodo . + + + È stata raggiunta correttamente la fine del file. + + + Si è verificato un errore che non consente di continuare l'operazione di lettura. + + + Il metodo Read non è stato chiamato. + + + È stato chiamato il metodo Read.È possibile chiamare altri metodi sul lettore. + + + Specifica lo stato della classe . + + + Indica che viene scritto il valore di un attributo. + + + Indica che il metodo è già stato chiamato. + + + Indica che viene scritto il contenuto dell'elemento. + + + Indica che viene scritto il tag di inizio di un elemento. + + + È stata generata un'eccezione che ha lasciato la classe in uno stato non valido.È possibile chiamare il metodo per porre in stato .Qualsiasi altra chiamata al metodo ha come conseguenza un'eccezione . + + + Indica che viene scritto il prologo. + + + Indica che un metodo Write non è ancora stato chiamato. + + + Codifica e decodifica i nomi XML e fornisce metodi per la conversione tra tipi Common Language Runtime e tipi XSD (XML Schema Definition Language).Quando si convertono i tipi di dati, i valori restituiti sono indipendenti dalle impostazioni locali. + + + Decodifica un nome.Questo metodo produce effetti opposti rispetto ai metodi e . + Nome decodificato. + Nome da trasformare. + + + Converte il nome in un nome XML locale valido. + Nome codificato. + Nome da codificare. + + + Converte il nome in un nome XML valido. + Restituisce il nome con gli eventuali caratteri non validi sostituiti da una stringa di escape. + Nome da convertire. + + + Verifica che il nome sia valido secondo le specifiche XML. + Nome codificato. + Nome da codificare. + + + Converte l'oggetto in un oggetto equivalente. + Valore Boolean, ossia true o false. + Stringa da convertire. + + is null. + + does not represent a Boolean value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Byte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Oggetto Char che rappresenta il carattere singolo. + Stringa contenente un singolo carattere da convertire. + The value of the parameter is null. + The parameter contains more than one character. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica se la data deve essere convertita nell'ora locale o mantenuta nel formato UTC (Coordinated Universal Time), se si tratta di una data UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire.Nota   La stringa deve essere conforme a un sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Formato da cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di questo formato. + + is null. + + or is an empty string or is not in the specified format. + + + Converte l'oggetto fornito in un oggetto equivalente. + Equivalente della stringa specificata. + Stringa da convertire. + Matrice di formati dalla quale è possibile convertire .Ogni formato in può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. La stringa viene convalidata sulla base di uno di questi formati. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Decimal della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Double della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Guid della stringa. + Stringa da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Int64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente SByte della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente Single della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte in un oggetto . + Rappresentazione di stringa del valore Boolean, ossia "true" o "false". + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Byte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Char. + Valore da convertire. + + + Converte in un oggetto usando l'oggetto specificato. + Equivalente di . + Valore da convertire. + Uno dei valori di che specifica la modalità di gestione del valore . + The value is not valid. + The or value is null. + + + Converte l'oggetto fornito in un oggetto . + Rappresentazione dell'oggetto specificato. + Elemento da convertire. + + + Converte l'oggetto fornito in un oggetto nel formato specificato. + Rappresentazione nel formato specificato dell'oggetto fornito. + Elemento da convertire. + Formato in cui viene convertito .Il parametro del formato può essere qualsiasi sottoinsieme della raccomandazione W3C per il tipo XML dateTime.Per altre informazioni, vedere http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Converte in un oggetto . + Rappresentazione di stringa di Decimal. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Double. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Guid. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Int64. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di SByte. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di Single. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di TimeSpan. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt16. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt32. + Valore da convertire. + + + Converte in un oggetto . + Rappresentazione di stringa di UInt64. + Valore da convertire. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente TimeSpan della stringa. + Stringa da convertire.Il formato della stringa deve essere conforme alla raccomandazione W3C XML Schema Part 2: Datatypes per la durata. + + is not in correct format to represent a TimeSpan value. + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt16 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt32 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Converte l'oggetto in un oggetto equivalente. + Equivalente UInt64 della stringa. + Stringa da convertire. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Verifica che il nome sia valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C. + Nome, se è un nome XML valido. + Nome da verificare. + + is not a valid XML name. + + is null or String.Empty. + + + Verifica che il nome sia un NCName valido in base alle specifiche del linguaggio XML (Extended Markup Language) di W3C.Un NCName è un nome che non può contenere i due punti (:). + Nome, se è un nome NCName valido. + Nome da verificare. + + is null or String.Empty. + + is not a valid non-colon name. + + + Verifica che la stringa sia un tipo NMTOKEN valido in base alla raccomandazione W3C XML Schema Part2: Datatypes. + Token del nome, se è un NMTOKEN valido. + Stringa da verificare. + The string is not a valid name token. + + is null. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di tipo stringa sono caratteri dell'ID pubblico validi. + Restituisce la stringa passata se tutti i caratteri nell'argomento sono caratteri dell'ID pubblico validi. + + che contiene l'ID da convalidare. + + + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi. + Restituisce l'istanza di stringa passata se tutti i caratteri nell'argomento di stringa sono spazi vuoti validi; in caso contrario null. + + da verificare. + + + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + Restituisce la stringa passata se tutti i caratteri e i caratteri delle coppie di surrogati nell'argomento stringa sono caratteri XML validi, in caso contrario viene generata un'eccezione XmlException con le informazioni relative al primo carattere non valido rilevato. + + che contiene i caratteri da verificare. + + + Specifica in che modo deve essere considerato il valore dell'ora nelle conversioni tra una stringa e . + + + Viene considerato come ora locale.Se l'oggetto rappresenta un'ora UTC (Coordinated Universal Time), viene convertito nell'ora locale. + + + Durante la conversione devono essere mantenute le informazioni sul fuso orario. + + + Viene considerato come ora locale se viene convertito in una stringa. + + + Viene considerato come UTC.Se l'oggetto rappresenta un'ora locale, viene convertito in un valore UTC. + + + Restituisce informazioni dettagliate sull'ultima eccezione. + + + Inizializza una nuova istanza della classe XmlException. + + + Consente l'inizializzazione di una nuova istanza della classe XmlException con un messaggio di errore specificato. + Descrizione dell'errore. + + + Inizializza una nuova istanza della classe XmlException. + Descrizione della condizione di errore. + + che ha generato l'eccezione XmlException, se presente.Il valore può essere null. + + + Inizializza una nuova istanza della classe XmlException con l'eccezione interna, il numero di riga, la posizione nella riga e il messaggio specificati. + Descrizione dell'errore. + Eccezione causa dell'eccezione corrente.Il valore può essere null. + Numero di riga che indica dove si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene il numero di riga che indica dove si è verificato l'errore. + Numero di riga che indica dove si è verificato l'errore. + + + Ottiene la posizione di riga in cui si è verificato l'errore. + Posizione che indica in che punto della riga si è verificato l'errore. + + + Ottiene un messaggio in cui viene descritta l'eccezione corrente. + Messaggio di errore nel quale viene indicato il motivo dell’eccezione + + + Risolve, aggiunge e rimuove spazi dei nomi in una raccolta e ne consente la gestione dell'ambito. + + + Inizializza una nuova istanza della classe con l'oggetto specificato. + Oggetto da usare. + null is passed to the constructor + + + Aggiunge alla raccolta lo spazio dei nomi specificato. + Prefisso da associare allo spazio dei nomi aggiunto.Usare String.Empty per aggiungere uno spazio dei nomi predefinito.NotaSe si usa l'oggetto per risolvere gli spazi dei nomi in un'espressione XML Path Language (XPath), è necessario specificare un prefisso.Se in un'espressione XPath non è incluso un prefisso, si presuppone che l'URI (Uniform Resource Identifier) dello spazio dei nomi sia lo spazio dei nomi vuoto.Per altre informazioni sulle espressioni XPath e su , fare riferimento ai metodi e . + Spazio dei nomi da aggiungere. + The value for is "xml" or "xmlns". + The value for or is null. + + + Ottiene l'URI dello spazio dei nomi per lo spazio dei nomi predefinito. + Restituisce l'URI dello spazio dei nomi per lo spazio dei nomi predefinito o String.Empty se non è presente uno spazio dei nomi predefinito. + + + Restituisce un enumeratore usato per scorrere gli spazi dei nomi nell'oggetto . + Oggetto contenente i prefissi archiviati da . + + + Ottiene una raccolta di nomi di spazi dei nomi con chiave in base al prefisso, che può essere usata per enumerare gli spazi dei nomi attualmente nell'ambito. + Raccolta delle coppie di spazio dei nomi e prefisso attualmente nell'ambito. + Valore di enumerazione che specifica il tipo di nodi spazio dei nomi da restituire. + + + Ottiene un valore che indica se il prefisso fornito dispone di uno spazio dei nomi definito per l'ambito inserito attualmente. + true se è presente uno spazio dei nomi definito; in caso contrario, false. + Prefisso dello spazio dei nomi da trovare. + + + Ottiene l'URI dello spazio dei nomi per il prefisso specificato. + Restituisce l'URI dello spazio dei nomi per o null se non è disponibile uno spazio dei nomi mappato.La stringa restituita è atomizzata.Per altre informazioni sulle stringhe atomizzate, vedere la classe . + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per trovare la corrispondenza con lo spazio dei nomi predefinito, passare String.Empty. + + + Trova il prefisso dichiarato per l'URI dello spazio dei nomi specificato. + Prefisso corrispondente.Se non è presente un prefisso mappato, il metodo restituisce String.Empty. Se viene specificato un valore Null, viene restituito null. + Spazio dei nomi da risolvere per il prefisso. + + + Ottiene l'oggetto associato a questo oggetto. + Oggetto usato da questo oggetto. + + + Estrae un ambito dello spazio dei nomi dallo stack. + true se sono rimasti ambiti dello spazio dei nomi nello stack; false se non sono più disponibili spazi dei nomi da prelevare. + + + Inserisce un ambito dello spazio dei nomi nello stack. + + + Rimuove lo spazio dei nomi specificato per il prefisso specificato. + Prefisso per lo spazio dei nomi + Spazio dei nomi da rimuovere per il prefisso specificato.Lo spazio dei nomi rimosso deriva dall'ambito dello spazio dei nomi corrente.Gli spazi dei nomi non compresi nell'ambito corrente vengono ignorati. + The value of or is null. + + + Definisce l'ambito dello spazio dei nomi. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente,compreso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti nell'ambito del nodo corrente, escluso lo spazio dei nomi xmlns:xml, che viene sempre dichiarato in modo implicito.L'ordine degli spazi dei nomi restituiti non è definito. + + + tutti gli spazi dei nomi definiti localmente nel nodo corrente. + + + Tabella degli oggetti stringa suddivisi in elementi di base. + + + Inizializza una nuova istanza della classe . + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente.Se la lunghezza equivale a zero, verrà restituito String.Empty. + Matrice di caratteri contenente il nome da aggiungere. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, suddivide in elementi di base la stringa specificata e la aggiunge alla tabella XmlNameTable. + Nuova stringa suddivisa in elementi di base o stringa disponibile, se già presente. + Nome da aggiungere. + + è null. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente gli stessi caratteri dell'intervallo di caratteri specificato nella matrice indicata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa.Se è zero, verrà restituito il valore String.Empty. + Matrice di caratteri contenente il nome da cercare. + Indice in base zero nella matrice che specifica il primo carattere del nome. + Numero di caratteri nel nome. + 0 > - oppure - >= .Length - oppure - > .Length Queste condizioni non provocano la generazione di un'eccezione se = 0. + + < 0. + + + Quando sottoposto a override in una classe derivata, ottiene la stringa suddivisa in elementi di base contenente lo stesso valore della stringa specificata. + Stringa suddivisa in elementi di base o null se la stringa non è già stata suddivisa. + Nome da cercare. + + è null. + + + Specifica il tipo di nodo. + + + Attributo (ad esempio, id='123' ). + + + Sezione CDATA (ad esempio, <![CDATA[my escaped text]]>). + + + Commento (ad esempio, <!-- my comment -->). + + + Oggetto documento che, come radice della struttura ad albero del documento, fornisce accesso all'intero documento XML. + + + Frammento di documento. + + + Dichiarazione del tipo di documento, indicata dal tag seguente (ad esempio, <!DOCTYPE...>). + + + Elemento (ad esempio, <item>). + + + Tag di fine dell'elemento (ad esempio, </item>). + + + Viene restituito quando XmlReader completa l'analisi del testo sostitutivo dell'entità in seguito a una chiamata al metodo . + + + Dichiarazione di entità (ad esempio, <!ENTITY...>). + + + Riferimento a un'entità (ad esempio, &num;). + + + Viene restituito dall'oggetto se non è stato chiamato un metodo Read. + + + Notazione nella dichiarazione del tipo del documento (ad esempio <!NOTATION...>). + + + Istruzione di elaborazione (ad esempio, <?pi test?>). + + + Spazio vuoto all'interno di markup in un modello a contenuto misto oppure spazio vuoto all'interno dell'ambito xml:space="preserve". + + + Contenuto di un nodo. + + + Spazio vuoto all'interno di markup. + + + Dichiarazione XML (ad esempio, <?xml version='1.0'?>). + + + Fornisce tutte le informazioni sul contesto richieste dalla classe per analizzare un frammento XML. + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.Il sottoinsieme DTD viene utilizzato per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con l'oggetto , l'oggetto , l'URI di base, l'xml:lang, l'xml:space e il tipo di documento specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Nome della dichiarazione del tipo di documento. + Identificatore pubblico. + Identificatore di sistema. + Sottoinsieme DTD interno.La definizione DTD viene utilizzata per la risoluzione dell'entità, non per la convalida del documento. + URI di base per il frammento XML, ovvero percorso da cui è stato caricato il frammento. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con i valori di , , xml:lang e xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Inizializza una nuova istanza della classe XmlParserContext con la codifica, l'oggetto , l'oggetto , l'xml:lang e l'xml:space specificati. + Oggetto da utilizzare per suddividere le stringhe in elementi di base.Se il valore di questo oggetto è null, verrà utilizzata la tabella dei nomi impiegata per creare .Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Oggetto da utilizzare per cercare informazioni sugli spazi dei nomi oppure null. + Ambito xml:lang. + Valore di che indica l'ambito xml:space. + Oggetto che indica l'impostazione della codifica. + + non è lo stesso XmlNameTable utilizzato per la costruzione di . + + + Ottiene o imposta l'URI di base. + URI di base da utilizzare per risolvere il file DTD. + + + Ottiene o imposta il nome della dichiarazione del tipo di documento. + Nome della dichiarazione del tipo di documento. + + + Ottiene o imposta il tipo di codifica. + Oggetto che indica il tipo di codifica. + + + Ottiene o imposta il sottoinsieme DTD interno. + Sottoinsieme DTD interno.Questa proprietà restituisce ad esempio tutte le informazioni racchiuse tra parentesi quadre <!DOCTYPE doc [...]>. + + + Ottiene o imposta . + Campo XmlNamespaceManager. + + + Ottiene l' utilizzata per suddividere le stringhe in elementi di base.Per ulteriori informazioni sulle stringhe suddivise in elementi di base, vedere . + Campo XmlNameTable. + + + Ottiene o imposta l'identificatore pubblico. + Identificatore pubblico. + + + Ottiene o imposta l'identificatore di sistema. + Identificatore di sistema. + + + Ottiene o imposta l'ambito xml:lang corrente. + Ambito xml:lang corrente.Se nell'ambito non è disponibile alcun valore xml:lang, viene restituito String.Empty. + + + Ottiene o imposta l'ambito xml:space corrente. + Valore di che indica l'ambito xml:space. + + + Rappresenta un nome XML completo. + + + Inizializza una nuova istanza della classe . + + + Consente l'inizializzazione di una nuova istanza della classe con il nome specificato. + Nome locale da utilizzare come nome dell'oggetto . + + + Inizializza una nuova istanza della classe con il nome e lo spazio dei nomi specificati. + Nome locale da utilizzare come nome dell'oggetto . + Spazio dei nomi per l'oggetto . + + + Fornisce un oggetto vuoto. + + + Determina se l'oggetto specificato equivale all'oggetto corrente. + true se i due oggetti rappresentano lo stesso oggetto di istanza; in caso contrario, false. + Oggetto da confrontare. + + + Restituisce il codice hash per l'oggetto . + Codice hash per l'oggetto. + + + Ottiene un valore che indica se l'oggetto è vuoto. + true se il nome e lo spazio dei nomi sono stringhe vuote; in caso contrario, false. + + + Ottiene una rappresentazione in forma di stringa del nome completo dell'oggetto . + Rappresentazione in forma di stringa del nome completo, oppure String.Empty se un nome non è definito per l'oggetto. + + + Ottiene una rappresentazione in forma di stringa dello spazio dei nomi dell'oggetto . + Rappresentazione in forma di stringa dello spazio dei nomi, oppure String.Empty se uno spazio dei nomi non è definito per l'oggetto. + + + Confronta due oggetti . + true se i due oggetti hanno lo stesso nome e gli stessi valori di spazio dei nomi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Confronta due oggetti . + true se il nome e i valori di spazio dei nomi dei due oggetti sono diversi; in caso contrario, false. + Oggetto da confrontare. + Oggetto da confrontare. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + + + Restituisce il valore di stringa dell'oggetto . + Valore di stringa dell'oggetto nel formato namespace:localname.Se per l'oggetto non è definito alcuno spazio dei nomi, questo metodo restituisce solo il nome locale. + Nome dell'oggetto. + Spazio dei nomi dell'oggetto. + + + Rappresenta un lettore che fornisce accesso veloce, non in cache e di tipo forward-only ai dati XML.Per esaminare il codice sorgente .NET Framework per questo tipo, vedere Origine riferimento. + + + Inizializza una nuova istanza della classe XmlReader. + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il numero di attributi sul nodo corrente. + Numero di attributi sul nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI di base del nodo corrente. + URI di base del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa metodi di lettura del contenuto binario. + true se i metodi di lettura del contenuto binario vengono implementati; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se implementa il metodo . + true se implementa il metodo ; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene un valore che indica se il lettore può analizzare e risolvere le entità. + true se il lettore può analizzare e risolvere le entità; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Crea una nuova istanza di con il flusso specificato e le impostazioni predefinite. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + + + Crea una nuova istanza di con il flusso e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML.L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il flusso, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Flusso che contiene i dati XML. L'oggetto analizza i primi byte del flusso cercando un indicatore per l'ordine dei byte o un altro segno di codifica.Quando viene determinata, la codifica viene usata per continuare la lettura del flusso, mentre l'elaborazione continua ad analizzare l'input come flusso di caratteri (Unicode). + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo specificato. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni del nuovo oggetto .Il valore può essere null. + Il valore è null. + + + Crea una nuova istanza di con il lettore di testo, le impostazioni e le informazioni di contesto specificati per l'analisi. + Oggetto usato per leggere i dati XML nel flusso. + Lettore di testo da cui leggere i dati XML.Poiché un lettore di testo restituisce un flusso di caratteri Unicode, la codifica specificata nella dichiarazione XML non viene usata dal lettore XML per decodificare il flusso di dati. + Impostazioni per la nuova istanza di .Il valore può essere null. + Informazioni sul contesto necessarie per analizzare il frammento XML.Le informazioni sul contesto possono includere l'oggetto da usare, la codifica, l'ambito dello spazio dei nomi, gli ambiti xml:lang e xml:space correnti, l'URI di base e la definizione DTD.Il valore può essere null. + Il valore è null. + Le proprietà e contengono entrambe valori.È possibile impostare e utilizzare una sola delle proprietà NameTable. + + + Crea una nuova istanza di con l'URI specificato. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.La classe viene usata per convertire il percorso in una rappresentazione canonica dei dati. + Il valore è null. + L'oggetto non dispone di autorizzazioni sufficienti per accedere al percorso dei dati XML. + Il file identificato dall'URI non esiste. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con l'URI e le impostazioni specificati. + Oggetto usato per leggere i dati XML nel flusso. + URI del file che contiene i dati XML.L'oggetto nell'oggetto viene usato per eseguire la conversione del percorso a una rappresentazione canonica dei dati.Se è null, viene usato un nuovo oggetto . + Impostazioni per la nuova istanza di .Il valore può essere null. + Il valore è null. + Il file specificato dall'URI non è stato trovato. + Nell'API.NET per le applicazioni Windows o nella Libreria di classi portabile, rilevare piuttosto l'eccezione della classe di base .Il formato dell'URI non è corretto. + + + Crea una nuova istanza di con il lettore XML e le impostazioni specificate. + Oggetto di cui è stato eseguito il wrapping intorno all'oggetto specificato. + Oggetto da usare come lettore XML sottostante. + Impostazioni per la nuova istanza di .Il livello di conformità dell'oggetto deve corrispondere a quello del lettore sottostante o deve essere impostato su . + Il valore è null. + Se l'oggetto specifica un livello di conformità che non corrisponde al livello di conformità del lettore sottostante.-oppure-Lo stato dell'oggetto sottostante è o . + + + Quando ne viene eseguito l'override in una classe derivata, ottiene la profondità del nodo corrente nel documento XML. + Profondità del nodo corrente nel documento XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il lettore è posizionato alla fine del flusso. + true se il lettore è posizionato alla fine del flusso; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato.Questo metodo non determina lo spostamento del lettore. + Indice dell'attributo.L'indice è in base zero.Il primo attributo ha indice 0. + + non è compreso nell'intervallo.Richiesto valore non negativo e minore della dimensione dell'insieme di attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null. + Nome completo dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato o se il valore è String.Empty, verrà restituito null.Questo metodo non determina lo spostamento del lettore. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + + è null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene in modo asincrono il valore del nodo corrente. + Valore del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Ottiene un valore che indica se il nodo corrente dispone di attributi. + true se il nodo corrente contiene attributi; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente può avere . + true se il nodo sul quale il lettore è attualmente posizionato può contenere Value; in caso contrario, false.Se false, il valore del nodo è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un attributo generato dal valore predefinito configurato nella definizione DTD o nello schema. + true se il nodo corrente è un attributo il cui valore è stato generato in base al valore predefinito configurato nella definizione DTD o nello schema; false se il valore dell'attributo è stato impostato in modo esplicito. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un valore che indica se il nodo corrente è un elemento vuoto, ad esempio <MyElement/>. + true se il nodo corrente rappresenta un elemento ( uguale a XmlNodeType.Element) che termina con />; in caso contrario, false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce un valore che indica se l'argomento della stringa è un nome XML valido. + true se il nome è valido; in caso contrario, false. + Nome da convalidare. + Il valore è null. + + + Restituisce un valore che indica se l'argomento della stringa è un token di un nome XML valido o meno. + true se è un token del nome valido; in caso contrario, false. + Token del nome da convalidare. + Il valore è null. + + + Chiama e verifica se il nodo di contenuto corrente è un tag di inizio o un tag di elemento vuoto. + true se trova un tag di inizio o un tag di elemento vuoto; false se viene trovato un tipo di nodo diverso da XmlNodeType.Element. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo corrente è un tag di inizio o un tag di elemento vuoto e se la proprietà dell'elemento trovato corrisponde all'argomento specificato. + true se il nodo risultante è un elemento e la proprietà Name corrisponde alla stringa specificata.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se la proprietà Name dell'elemento non corrisponde alla stringa specificata. + Stringa confrontata con la proprietà Name dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Chiama e verifica se il nodo di contenuto è un tag di inizio o un tag di elemento vuoto e se le proprietà e dell'elemento trovato corrispondono alle stringhe specificate. + true, se il nodo risultante è un elemento.false se è stato trovato un tipo di nodo diverso da XmlNodeType.Element oppure se le proprietà LocalName e NamespaceURI dell'elemento non corrispondono alle stringhe specificate. + Stringa da confrontare con la proprietà LocalName dell'elemento trovato. + Stringa da confrontare con la proprietà NamespaceURI dell'elemento trovato. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con l'indice specificato. + Valore dell'attributo specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con la proprietà specificata. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore dell'attributo con le proprietà e specificate. + Valore dell'attributo specificato.Se l'attributo non viene trovato, verrà restituito null. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome locale del nodo corrente. + Nome del nodo corrente senza il prefisso.Ad esempio, LocalName è book per l'elemento <bk:book>.Per i tipi di nodo privi di nome, quali Text, Comment e così via, questa proprietà restituisce String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, risolve il prefisso di uno spazio dei nomi nell'ambito dell'elemento corrente. + URI dello spazio dei nomi a cui viene mappato il prefisso oppure null se non viene trovato alcun prefisso corrispondente. + Prefisso di cui risolvere l'URI dello spazio dei nomi.Per ottenere lo spazio dei nomi predefinito corrispondente, passare una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con l'indice specificato. + Indice dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro ha un valore negativo. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con la proprietà specificata. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome completo dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo con le proprietà e specificate. + true se l'attributo viene trovato; in caso contrario, false.Se viene restituito il valore false, la posizione del lettore non subirà alcuna modifica. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Controlla se il nodo corrente è un nodo di contenuto (testo diverso da spazi vuoti, CDATA, Element, EndElement, EntityReference o EndEntity).Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file.Ignora i nodi del tipo seguente: ProcessingInstruction, DocumentType, Comment, Whitespace o SignificantWhitespace. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + È stata trovata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica in modo asincrono se il nodo corrente è un nodo di contenuto.Se il nodo non è un nodo di contenuto, il lettore passa al nodo di contenuto successivo oppure alla fine del file. + Proprietà del nodo corrente trovato dal metodo o XmlNodeType.None se il lettore ha raggiunto la fine del flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, passa all'elemento che contiene il nodo attributo corrente. + true se il lettore è posizionato in corrispondenza di un attributo, ovvero il lettore si sposta in corrispondenza dell'elemento che possiede l'attributo; false se il lettore non è posizionato in corrispondenza di un attributo, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa al primo attributo. + true se esiste un attributo, ovvero il lettore si sposta in corrispondenza del primo attributo; in caso contrario, false, ovvero la posizione del lettore non subisce alcuna modifica. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, passa all'attributo successivo. + true se esiste un attributo successivo; false se non esistono altri attributi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il nome completo del nodo corrente. + Nome completo del nodo corrente.Ad esempio, Name è bk:book per l'elemento <bk:book>.Il nome restituito dipende dalla proprietà del nodo.I seguenti tipi di nodo restituiscono i valori inclusi nell'elenco.Tutti gli altri tipi di nodo restituiscono una stringa vuota.Tipo di nodo Nome AttributeNome dell'attributo. DocumentTypeNome del tipo di documento. ElementNome del tag. EntityReferenceNome dell'entità a cui si fa riferimento. ProcessingInstructionDestinazione dell'istruzione di elaborazione. XmlDeclarationStringa letterale xml. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'URI dello spazio dei nomi, definito nella specifica W3C Namespace, del nodo su cui è posizionato il lettore. + URI dello spazio dei nomi del nodo corrente; in caso contrario, una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'oggetto associato a questa implementazione. + Oggetto XmlNameTable che consente di ottenere la versione atomizzata di una stringa all'interno del nodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il tipo del nodo corrente. + Uno dei valori di enumerazione che specifica il tipo del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il prefisso dello spazio dei nomi associato al nodo corrente. + Prefisso dello spazio dei nomi associato al nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, visualizza il nodo successivo nel flusso. + true se il nodo successivo è stato letto correttamente; in caso contrario, false. + Si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il nodo successivo del flusso. + true se è stata completata la lettura del nodo successivo; false se non esistono altri nodi da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, analizza il valore dell'attributo incluso in uno o più nodi Text, EntityReference o EndEntity. + true se sono presenti nodi da restituire.false se il lettore non è posizionato in corrispondenza del nodo attributo quando viene effettuata la chiamata iniziale oppure se è stato letto il valore di tutti gli attributi.Un attributo vuoto, quale misc="", restituisce true con un singolo nodo il cui valore è String.Empty. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione.Può essere usato ad esempio per la conversione di un oggetto in xs:string.Il valore può essere null. + Il contenuto non presenta il formato corretto per il tipo di destinazione. + Il tentativo di cast non è valido. + Il valore è null. + Il nodo corrente non è un tipo di nodo supportato.Per ulteriori informazioni vedere la tabella riportata di seguito. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto come oggetto del tipo specificato. + Contenuto di testo concatenato o valore dell'attributo convertito nel tipo specificato. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce byte binari decodificati Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce byte binari con decodifica Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto e restituisce i byte binari decodificati BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + + non è supportato nel nodo corrente. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto e restituisce dati binari con decodifica BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come Boolean. + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo nella posizione corrente come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione doppia. + Contenuto di testo come numero a virgola mobile a precisione doppia. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Contenuto di testo nella posizione corrente come numero a virgola mobile a precisione singola. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 32 bit. + Contenuto di testo come valore intero con segno a 32 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come valore intero con segno a 64 bit. + Contenuto di testo come valore intero con segno a 64 bit. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge il contenuto di testo nella posizione corrente come . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto CLR (Common Language Runtime) più appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Il tentativo di cast non è valido. + Il formato della stringa non è valido. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto di testo nella posizione corrente come oggetto . + Contenuto di testo come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire.Nota   In .NET Framework 3.5 il valore del parametro può essere il tipo . + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Leggere Decimal.MaxValue. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto dell'elemento come il tipo richiesto. + Contenuto dell'elemento convertito nell'oggetto tipizzato richiesto. + Tipo di valore da restituire. + Oggetto usato per risolvere qualsiasi prefisso di spazio dei nomi correlato al tipo di conversione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto Base64. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Il valore è null. + Il nodo corrente non è un nodo elemento. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + L'elemento include contenuto misto. + Il contenuto non può essere convertito nel tipo richiesto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento e decodifica il contenuto BinHex. + Numero di byte scritti nel buffer. + Buffer in cui copiare il testo risultante.Questo valore non può essere null. + Offset nel buffer a partire da cui iniziare a copiare il risultato. + Numero massimo di byte da copiare nel buffer.Il numero effettivo di byte copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione doppia. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione doppia. + Contenuto dell'elemento come numero a virgola mobile a precisione doppia. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come numero a virgola mobile a precisione singola. + Contenuto dell'elemento come numero a virgola mobile a precisione singola. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito come numero a virgola mobile e precisione singola. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 32 bit. + Contenuto dell'elemento come valore intero con segno a 32 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 32 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come valore intero con segno a 64 bit. + Contenuto dell'elemento come valore intero con segno a 64 bit. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un valore intero con segno a 64 bit. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi corrispondano a quelli dell'elemento corrente, quindi legge l'elemento corrente e restituisce il contenuto come . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito nel tipo richiesto. + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Oggetto CLR (Common Language Runtime) boxed del tipo più appropriato.La proprietà determina il tipo CLR appropriato.Se il contenuto è tipizzato come tipo di elenco, il metodo restituisce una matrice di oggetti boxed del tipo appropriato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Legge l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nome locale e l'URI dello spazio dei nomi specificati corrispondano a quelli dell'elemento corrente, quindi legge l'elemento e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + L'oggetto non è posizionato in corrispondenza di un elemento. + L'elemento corrente contiene elementi figlio.-oppure-Il contenuto dell'elemento non può essere convertito in un oggetto . + Il metodo è stato chiamato con argomenti null. + Il nome locale e l'URI dello spazio dei nomi specificati non corrispondono a quelli dell'elemento corrente da leggere. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono l'elemento corrente e restituisce il contenuto come oggetto . + Contenuto dell'elemento come oggetto . + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica che il nodo di contenuto corrente sia un tag di fine e sposta il lettore al nodo successivo. + Il nodo corrente non è un tag di fine oppure è stata rilevata una stringa di codice XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, legge tutto il contenuto come stringa, incluso il markup. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota.Se il nodo corrente non è né un elemento né un attributo, verrà restituita una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono tutto il contenuto, incluso il markup, come stringa. + Tutto il contenuto XML del nodo corrente, incluso il markup.Se il nodo corrente non ha elementi figlio, viene restituita una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, legge il contenuto, incluso il markup, che rappresenta questo nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + L'XML non è in formato corretto oppure si è verificato un errore durante l'analisi dell'XML. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono il contenuto, incluso il markup, che rappresenta il nodo e tutti i relativi nodi figlio. + Se il lettore è posizionato su un nodo elemento o attributo, il metodo restituisce tutto il contenuto XML, incluso il markup, del nodo corrente e di tutti i relativi nodi figlio; in caso contrario, restituisce una stringa vuota. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Verifica se il nodo corrente è un elemento e sposta il lettore al nodo successivo. + È stata rilevata una stringa XML non corretta nel flusso di input. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con la proprietà specificata e passa il lettore al nodo successivo. + Nome completo dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input. -oppure- Il dell'elemento non corrisponde al specificato. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Verifica che il nodo di contenuto corrente sia un elemento con le proprietà e specificate e passa il lettore al nodo successivo. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + È stata rilevata una stringa XML non corretta nel flusso di input.-oppure-Le proprietà e dell'elemento trovato non corrispondono agli argomenti specificati. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del lettore. + Uno dei valori di enumerazione che specifica lo stato del lettore. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Restituisce una nuova istanza di XmlReader che può essere usata per leggere il nodo corrente e tutti i relativi discendenti. + Nuova istanza del lettore XML impostata su .La chiamata al metodo posiziona il nuovo lettore sul nodo che era il nodo corrente prima della chiamata al metodo . + Il lettore XML non è posizionato su un elemento quando viene chiamato questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Sposta l'oggetto al successivo elemento discendente con il nome completo specificato. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome completo dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto al successivo elemento discendente con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento discendente corrispondente; in caso contrario, false.Se non viene trovato un elemento figlio corrispondente, l'oggetto viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento.Se non viene posizionato in corrispondenza di un elemento quando viene chiamato , questo metodo restituisce false e la posizione di non viene modificata. + Nome locale dell'elemento a cui spostarsi. + URI dello spazio dei nomi dell'elemento a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge fino a trovare un elemento con il nome completo specificato. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome completo dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Legge fino a trovare un elemento con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento corrispondente; in caso contrario, false e l'oggetto si trova nello stato fine del file. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome completo specificato. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome completo dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Il parametro è una stringa vuota. + + + Sposta l'oggetto XmlReader al successivo elemento di pari livello con il nome locale e l'URI dello spazio dei nomi specificati. + true se viene trovato un elemento di pari livello corrispondente; in caso contrario, false.Se non viene trovato un elemento corrispondente di pari livello, l'oggetto XmlReader viene posizionato in corrispondenza del tag di fine ( è XmlNodeType.EndElement) dell'elemento padre. + Nome locale dell'elemento di pari livello a cui spostarsi. + URI dello spazio dei nomi dell'elemento di pari livello a cui spostarsi. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + I valori di entrambi i parametri sono null. + + + Legge flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Il nodo corrente non ha un valore ( è false). + Il valore è null. + L'indice nel buffer oppure la somma di indice e numero è superiore alla dimensione del buffer allocato. + L'implementazione di non supporta questo metodo. + Il formato dei dati XML non è corretto. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Legge in modo asincrono flussi di testo di grandi dimensioni incorporati in un documento XML. + Numero di caratteri letti nel buffer.Quando non è più disponibile contenuto di testo, viene restituito il valore zero. + Matrice di caratteri che funge da buffer in cui viene scritto il contenuto di testo.Questo valore non può essere null. + Offset all'interno del buffer in cui il può iniziare a copiare i risultati. + Numero massimo di caratteri da copiare nel buffer.Il numero effettivo di caratteri copiati viene restituito da questo metodo. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, risolve il riferimento a entità per i nodi EntityReference. + Il lettore non è posizionato in corrispondenza di un nodo EntityReference; questa implementazione del lettore non consente di risolvere le entità, ovvero la proprietà restituisce il valore false. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del lettore.Se il lettore non è stato creato con il metodo , la proprietà restituisce null. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora gli elementi figlio del nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ignora in modo asincrono gli elementi figlio del nodo corrente. + Nodo corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + Un metodo asincrono di è stato chiamato senza impostare il flag di a true.In questo caso, viene generata un'eccezione con il messaggio "Impostare XmlReaderSettings.Async su true se si desidera utilizzare i metodi di Async." + + + Quando ne viene eseguito l'override in una classe derivata, ottiene il valore del testo del nodo corrente. + Il valore restituito dipende dalla proprietà del nodo.La tabella seguente elenca i tipi di nodo che hanno un valore da restituire.Tutti gli altri tipi di nodo restituiscono String.Empty.Tipo di nodo Valore AttributeValore dell'attributo. CDATAContenuto della sezione CDATA. CommentContenuto del commento. DocumentTypeSottoinsieme interno. ProcessingInstructionIntero contenuto, esclusa la destinazione. SignificantWhitespaceSpazio vuoto tra markup in un modello con contenuto misto. TextContenuto del nodo di testo. WhitespaceSpazio vuoto tra markup. XmlDeclarationContenuto della dichiarazione. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Ottiene il tipo CLR (Common Language Runtime) per il nodo corrente. + Tipo CLR che corrisponde al valore tipizzato del nodo.Il valore predefinito è System.String. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:space corrente. + Uno dei valori di .Se non esiste alcun ambito xml:space, alla proprietà viene applicata l'impostazione predefinita XmlSpace.None. + Un metodo di è stato chiamato prima del completamento di un'operazione asincrona precedente.In questo caso, viene generata un'eccezione con il messaggio "Un'operazione asincrona è già in corso". + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare metodi asincroni in una determinata istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se eseguire il controllo dei caratteri. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true.NotaSe l'oggetto elabora dati di testo, controlla sempre che i nomi XML e il contenuto del testo siano validi, indipendentemente dall'impostazione della proprietà.Se si imposta la proprietà su false, il controllo dei caratteri per i riferimenti a entità carattere viene disattivato. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se il flusso o la classe sottostante devono essere chiusi alla chiusura del lettore. + true per chiudere il flusso o l'oggetto sottostante alla chiusura del lettore; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità dell'oggetto . + Uno dei valori di enumerazione che specifica il livello di conformità che verrà applicato dal lettore XML.Il valore predefinito è . + + + Ottiene o imposta un valore che determina l'elaborazione di DTD. + Uno dei valori di enumerazione che determina l'elaborazione di DTD.Il valore predefinito è . + + + Ottiene o imposta un valore che indica se ignorare i commenti. + true per ignorare i commenti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare le istruzioni di elaborazione. + true per ignorare le istruzioni di elaborazione; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta un valore che indica se ignorare gli spazi vuoti non significativi. + true per ignorare gli spazi vuoti; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta l'offset del numero di riga dell'oggetto . + Offset del numero di riga.Il valore predefinito è 0. + + + Ottiene o imposta l'offset della posizione della riga dell'oggetto . + Offset della posizione della riga.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento generato dall'espansione delle entità. + Numero massimo consentito per i caratteri generati dalle entità espanse.Il valore predefinito è 0. + + + Ottiene o imposta un valore che indica il numero massimo di caratteri consentito in un documento XML.Un valore zero (0) indica che non è previsto alcun limite alla dimensione del documento XML.Un valore diverso da zero specifica la dimensione massima in caratteri. + Numero massimo di caratteri consentito in un documento XML.Il valore predefinito è 0. + + + Ottiene o imposta l'oggetto usato per il confronto delle stringhe atomizzate. + Classe che archivia tutte le stringhe atomizzate usate da tutte le istanze di create tramite l'oggetto .Il valore predefinito è null.Se questo valore è null, l'istanza di creata userà una nuova classe vuota. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Specifica l'ambito xml:space corrente. + + + L'ambito xml:space è uguale a default. + + + Nessun ambito xml:space. + + + L'ambito xml:space è uguale a preserve. + + + Rappresenta un writer che fornisce un modo veloce, non in cache e di tipo forward-only per generare flussi o i file contenenti dati XML. + + + Inizializza una nuova istanza della classe . + + + Crea una nuova istanza di con il flusso specificato. + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + The value is null. + + + Crea una nuova istanza di con i flusso e l'oggetto . + Oggetto . + Flusso in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge al flusso specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.L'oggetto scrive la sintassi del testo di XML 1.0 e la aggiunge all'oggetto specificato. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di usando l'oggetto specificato. + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + The value is null. + + + Crea una nuova istanza di usando gli oggetti e . + Oggetto . + Oggetto in cui scrivere.Il contenuto scritto dall'oggetto viene aggiunto all'oggetto . + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Crea una nuova istanza di con l'oggetto specificato. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + The value is null. + + + Crea una nuova istanza di con gli oggetti e specificati. + Oggetto che ha eseguito il wrapping dell'oggetto specificato. + Oggetto da usare come writer sottostante. + Oggetto usato per configurare la nuova istanza di .Se è null, viene usato un oggetto con le impostazioni predefinite.Se si usa l'oggetto con il metodo , è necessario usare la proprietà per ottenere un oggetto con le impostazioni corrette.In questo modo viene assicurato che le impostazioni di output dell'oggetto creato siano corrette. + The value is null. + + + Rilascia tutte le risorse usate dall'istanza corrente della classe . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Rilascia le risorse non gestite usate da e, facoltativamente, le risorse gestite. + true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scarica il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scarica in modo asincrono il contenuto del buffer nei flussi sottostanti e scarica anche il flusso sottostante. + Attività che rappresenta l'operazione asincrona Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, restituisce il prefisso più vicino definito nell'ambito dello spazio dei nomi corrente per l'URI dello spazio dei nomi. + Prefisso corrispondente o null se nell'ambito corrente non viene trovato nessun URI dello spazio dei nomi corrispondente. + URI dello spazio dei nomi di cui trovare il prefisso. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Ottiene l'oggetto usato per creare questa istanza di . + Oggetto usato per creare questa istanza del writer.Se il writer non è stato creato usando il metodo , questa proprietà restituisce null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive tutti gli attributi che si trovano nella posizione corrente in . + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono tutti gli attributi che si trovano nella posizione corrente in . + Attività che rappresenta l'operazione asincrona WriteAttributes. + Oggetto XmlReader dal quale copiare gli attributi. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il nome locale e il valore specificati. + Nome locale dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un attributo con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi da associare all'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un attributo con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteAttributeString. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + Valore dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, codifica i byte binari specificati come valori Base64 e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come valori Base64 e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBase64. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata,codifica i byte binari specificati come BinHex e scrive il testo risultante. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Codifica in modo asincrono i byte binari specificati come BinHex e scrive il testo risultante. + Attività che rappresenta l'operazione asincrona WriteBinHex. + Matrice di byte da codificare. + Posizione nel buffer che indica l'inizio dei byte da scrivere. + Numero di byte da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un blocco <![CDATA[...]]> che contiene il testo specificato. + Testo da inserire all'interno del blocco CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un blocco <![CDATA[...]]> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteCData. + Testo da inserire all'interno del blocco CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, forza la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Carattere Unicode per cui generare l'entità carattere. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Forza in modo asincrono la generazione di un'entità carattere per il valore del carattere Unicode specificato. + Attività che rappresenta l'operazione asincrona WriteCharEntity. + Carattere Unicode per cui generare l'entità carattere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il testo in un buffer alla volta. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il testo in un buffer alla volta. + Attività che rappresenta l'operazione asincrona WriteChars. + Matrice di caratteri che contiene il testo da scrivere. + Posizione nel buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un commento <!--...--> che contiene il testo specificato. + Testo da inserire nel commento. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un commento <!--...--> che contiene il testo specificato. + Attività che rappresenta l'operazione asincrona WriteComment. + Testo da inserire nel commento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione DOCTYPE con il nome e gli attributi facoltativi specificati. + Attività che rappresenta l'operazione asincrona WriteDocType. + Nome per la dichiarazione DOCTYPE.Questo parametro non deve essere vuoto. + Se diverso da Null, scrive anche PUBLIC "pubid" "sysid", dove e vengono sostituiti con il valore degli argomenti specificati. + Se è null e è diverso da Null, scrive SYSTEM "sysid", dove viene sostituito dal valore di questo argomento. + Se diverso da Null, scrive [subset], che viene sostituito dal valore di questo argomento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un elemento con il nome locale e il valore specificati. + Nome locale dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un elemento con il prefisso, il nome locale, l'URI dello spazio dei nomi e il valore specificati. + Attività che rappresenta l'operazione asincrona WriteElementString. + Prefisso dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi dell'elemento. + Valore dell'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude la chiamata a precedente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono la chiamata a precedente. + Attività che rappresenta l'operazione asincrona WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando se ne esegue l'override in una classe derivata, chiude qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono qualsiasi elemento o attributo aperto e riporta il writer allo stato di avvio. + Attività che rappresenta l'operazione asincrona WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un riferimento a entità come &name;. + Nome del riferimento a entità. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un riferimento a entità come &name;. + Attività che rappresenta l'operazione asincrona WriteEntityRef. + Nome del riferimento a entità. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, chiude un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Chiude in modo asincrono un elemento e visualizza l'ambito dello spazio dei nomi corrispondente. + Attività che rappresenta l'operazione asincrona WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un nome valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteName. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, inserisce il nome specificato, verificando che si tratti di un oggetto NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Nome da scrivere. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Inserisce in modo asincrono il nome specificato, verificando che si tratti di un NmToken valido in base alla raccomandazione W3C XML 1.0, disponibile all'indirizzo http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name. + Attività che rappresenta l'operazione asincrona WriteNmToken. + Nome da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, copia tutto il contenuto del lettore nel writer e sposta il lettore all'inizio del successivo elemento di pari livello. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Copia in modo asincrono tutto il contenuto del lettore nel writer e sposta il lettore sul successivo elemento di pari livello. + Attività che rappresenta l'operazione asincrona WriteNode. + Oggetto da cui leggere. + true per copiare gli attributi predefiniti dall'oggetto XmlReader; in caso contrario, false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono un'istruzione di elaborazione con uno spazio tra il nome e il testo, come segue: <?nome testo?>. + Attività che rappresenta l'operazione asincrona WriteProcessingInstruction. + Nome dell'istruzione di elaborazione. + Testo da includere nell'istruzione di elaborazione. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il nome completo dello spazio dei nomi.Questo metodo esegue la ricerca del prefisso incluso nell'ambito dello spazio dei nomi specificato. + Attività che rappresenta l'operazione asincrona WriteQualifiedName. + Nome locale da scrivere. + URI dello spazio dei nomi del nome. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a un buffer di caratteri. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive manualmente markup non elaborato in base a una stringa. + Stringa contenente il testo da scrivere. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a un buffer di caratteri. + Attività che rappresenta l'operazione asincrona WriteRaw. + Matrice di caratteri che contiene il testo da scrivere. + Posizione all'interno del buffer che indica l'inizio del testo da scrivere. + Numero di caratteri da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive manualmente in modo asincrono markup non elaborato in base a una stringa. + Attività che rappresenta l'operazione asincrona WriteRaw. + Stringa contenente il testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive l'inizio di un attributo con il nome locale specificato. + Nome locale dell'attributo. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive l'inizio di un attributo con il nome locale e l'URI dello spazio dei nomi specificati. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono l'inizio di un attributo con il prefisso, il nome locale e l'URI dello spazio dei nomi specificati. + Attività che rappresenta l'operazione asincrona WriteStartAttribute. + Prefisso dello spazio dei nomi dell'attributo. + Nome locale dell'attributo. + URI dello spazio dei nomi dell'attributo. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive la dichiarazione XML in base alla versione "1.0" e all'attributo standalone. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0". + Attività che rappresenta l'operazione asincrona WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive in modo asincrono la dichiarazione XML con la versione "1.0" e l'attributo standalone. + Attività che rappresenta l'operazione asincrona WriteStartDocument. + Se true, scrive "standalone=yes"; se false, scrive "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive un tag di inizio con il nome locale specificato. + Nome locale dell'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi indicato. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento.Se questo spazio dei nomi si trova già all'interno dell'ambito ed è associato a un prefisso, il writer scriverà automaticamente anche tale prefisso. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il tag di inizio specificato e lo associa allo spazio dei nomi e al prefisso specificati. + Attività che rappresenta l'operazione asincrona WriteStartElement. + Prefisso dello spazio dei nomi dell'elemento. + Nome locale dell'elemento. + URI dello spazio dei nomi da associare all'elemento. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene lo stato del writer. + Uno dei valori di . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive il contenuto di testo specificato. + Testo da scrivere. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono il contenuto di testo specificato. + Attività che rappresenta l'operazione asincrona WriteString. + Testo da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, genera e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Genera in modo asincrono e scrive l'entità carattere surrogata per la coppia di caratteri surrogati. + Attività che rappresenta l'operazione asincrona WriteSurrogateCharEntity. + Surrogato basso.Deve essere un valore compreso tra 0xDC00 e 0xDFFF. + Surrogato alto.Deve essere un valore compreso tra 0xD800 e 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive il valore dell'oggetto. + Valore dell'oggetto da scrivere.Nota   In .NET Framework 3.5 questo metodo accetta come parametro. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un numero a virgola mobile e precisione singola. + Numero a virgola mobile e precisione singola da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive un valore . + Valore da scrivere. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, scrive lo spazio specificato. + Stringa di caratteri spazio vuoto. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Scrive in modo asincrono lo spazio vuoto specificato. + Attività che rappresenta l'operazione asincrona WriteWhitespace. + Stringa di caratteri spazio vuoto. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene l'ambito xml:lang corrente. + Ambito xml:lang corrente. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Quando ne viene eseguito l'override in una classe derivata, ottiene un oggetto che rappresenta l'ambito xml:space corrente. + Oggetto XmlSpace che rappresenta l'ambito xml:space corrente.Valore Significato NoneValore predefinito se non esistono ambiti xml:space.DefaultL'ambito corrente è xml:space="default".PreserveL'ambito corrente è xml:space="preserve". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Specifica un set di funzionalità da supportare nell'oggetto creato dal metodo . + + + Inizializza una nuova istanza della classe . + + + Ottiene o imposta un valore che indica se è possibile usare i metodi asincroni in una specifica istanza di . + true se i metodi asincroni possono essere usati; in caso contrario, false. + + + Ottiene o imposta un valore che indica se il writer XML deve verificare la conformità di tutti i caratteri nel documento alla sezione "2.2 Characters" della specifica W3C XML 1.0 Recommendation. + true per eseguire il controllo dei caratteri; in caso contrario, false.Il valore predefinito è true. + + + Crea una copia dell'istanza di . + Oggetto clonato. + + + Ottiene o imposta un valore che indica se l'oggetto deve anche chiudere il flusso sottostante o quando viene chiamato il metodo . + true per chiudere anche il flusso sottostante o ; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta il livello di conformità per cui il writer XML controlla l'output XML. + Uno dei valori di enumerazione che specifica il livello di conformità (documento, frammento o rilevamento automatico).Il valore predefinito è . + + + Ottiene o imposta il tipo di codifica testo da usare. + Codifica testo da usare.Il valore predefinito è Encoding.UTF8. + + + Ottiene o imposta un valore che indica se impostare il rientro di elementi. + true per scrivere singoli elementi su nuove righe e applicare il rientro; in caso contrario, false.Il valore predefinito è false. + + + Ottiene o imposta la stringa di caratteri da usare per il rientro.Questa impostazione viene usata quando la proprietà è impostata su true. + Stringa di caratteri da usare per il rientro.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è due spazi. + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se deve rimuovere le dichiarazioni dello spazio dei nomi duplicati quando viene scritto contenuto XML.Il comportamento predefinito del writer è restituire tutte le dichiarazioni dello spazio dei nomi presenti nel resolver dello spazio dei nomi del writer. + Enumerazione usata per specificare se rimuovere le dichiarazioni dello spazio dei nomi duplicate in . + + + Ottiene o imposta la stringa di caratteri da usare per le interruzioni di riga. + Stringa di caratteri da usare per le interruzioni di riga.Può essere impostata su qualsiasi valore stringa.Tuttavia, per essere sicuri che l'XML sia valido, specificare solo spazi vuoti validi, ad esempio spazi, tabulazioni, ritorni a capo o avanzamenti riga.Il valore predefinito è \r\n (ritorno a capo, nuova riga). + The value assigned to the is null. + + + Ottiene o imposta un valore che indica se le interruzioni di riga devono essere normalizzate nell'output. + Uno dei valori di .Il valore predefinito è . + + + Ottiene o imposta un valore che indica se scrivere gli attributi su una nuova riga. + true per scrivere gli attributi su una nuova riga; in caso contrario, false.Il valore predefinito è false.NotaQuesta impostazione non ha effetto se il valore della proprietà è false.Se il valore di è impostato su true, ogni attributo viene preceduto da una nuova riga e da un livello aggiuntivo di rientro. + + + Ottiene o imposta un valore che indica se omettere una dichiarazione XML. + true per omettere la dichiarazione XML; in caso contrario, false.Il valore predefinito false significa che viene scritta una dichiarazione XML. + + + Ripristina i valori predefiniti dei membri della classe delle impostazioni. + + + Ottiene o imposta un valore che indica se aggiungerà tag di chiusura a tutti i tag di elemento senza chiusura quando viene chiamato metodo . + true se tutti i tag di elemento senza chiusura verranno chiusi; in caso contrario, false.Il valore predefinito è true. + + + Rappresentazione in memoria di un XML Schema, come descritto nelle specifiche di World Wide Web Consortium (W3C) XML Schema Part 1: Structures e XML Schema Part 2: Datatypes. + + + Indica se gli attributi o gli elementi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + La forma dell'attributo e dell'elemento non è specificata nello schema. + + + Gli elementi e gli attributi devono essere qualificati con un prefisso di uno spazio dei nomi. + + + Non occorre che gli attributi e gli elementi siano qualificati con un prefisso di uno spazio dei nomi. + + + Fornisce una formattazione personalizzata per la serializzazione e la deserializzazione XML. + + + Il metodo è riservato e non deve essere utilizzato.Quando si implementa l'interfaccia IXmlSerializable, è necessario restituire null (Nothing in Visual Basic) da questo metodo. Se invece è richiesta la specifica di uno schema personalizzato, applicare alla classe. + + che descrive la rappresentazione XML dell'oggetto generato dal metodo e utilizzato dal metodo . + + + Genera un oggetto dalla relativa rappresentazione XML. + Flusso di da cui viene deserializzato l'oggetto. + + + Converte un oggetto nella relativa rappresentazione XML. + Flusso di nel quale viene serializzato l'oggetto. + + + Quando viene applicata a un tipo, archivia il nome di un metodo statico del tipo che restituisce uno schema XML e una classe (o per i tipi anonimi) che controlla la serializzazione del tipo. + + + Inizializza una nuova istanza della classe utilizzando il nome del metodo statico che fornisce lo schema XML del tipo. + Nome del metodo statico che deve essere implementato. + + + Ottiene o imposta un valore che determina se la classe di destinazione è un carattere jolly o lo schema della classe contiene solo un elemento xs:any. + true se la classe è un carattere jolly o se lo schema contiene solo l'elemento xs:any; in caso contrario, false. + + + Ottiene il nome del metodo statico che fornisce lo schema XML del tipo e il nome del relativo tipo di dati XML Schema. + Nome del metodo che viene richiamato dall'infrastruttura XML per restituire uno schema XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..4a6e035 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml @@ -0,0 +1,2897 @@ + + + + System.Xml.ReaderWriter + + + + + オブジェクトおよび オブジェクトで実行する、入力チェックまたは出力チェックの量を指定します。 + + + + オブジェクトまたは オブジェクトは、ドキュメント レベルのチェックまたはフラグメント レベルのチェックを実行する必要があるかどうかを自動的に検出し、適切なチェックを実行します。別の オブジェクトまたは オブジェクトをラップしている場合、外側のオブジェクトは追加の準拠のチェックを実行しません。準拠のチェックは、基になるオブジェクトだけで実行されます。準拠レベルの決定方法の詳細については、 プロパティと プロパティを参照してください。 + + + XML データは、W3C によって定義された整形式の XML 1.0 ドキュメント のルールに準拠します。 + + + XML データは、W3C によって定義された整形式の XML フラグメントです。 + + + DTD を処理するためのオプションを指定します。 列挙体は クラスによって使用されます。 + + + DOCTYPE 要素は無視されます。DTD 処理は発生しません。 + + + DTD を検出したときに、DTD が禁止されていることを示すメッセージと共に をスローします。これが既定の動作です。 + + + クラスが行情報および位置情報を返せるようにするインターフェイスを提供します。 + + + クラスが行情報を返すことができるかどうかを示す値を取得します。 + + および を提供できる場合は true。それ以外の場合は false。 + + + 現在の行番号を取得します。 + 現在の行番号。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + 現在の行の位置を取得します。 + 現在の行の位置。または行情報が取得できない場合は 0。たとえば、 は false を返します。 + + + プレフィックスと名前空間の一連の割り当てに対する読み取り専用アクセスを提供します。 + + + 現在スコープ内にあるプレフィックスと名前空間の間に定義された割り当てのコレクションを取得します。 + 現在のスコープ内にある名前空間が格納された + 返される名前空間ノードの種類を指定する 値。 + + + 指定したプレフィックスに割り当てられた名前空間 URI を取得します。 + プレフィックスに割り当てられている名前空間 URI。このプレフィックスに名前空間 URI が割り当てられていない場合は null。 + 検索対象の名前空間 URI を持つプレフィックス。 + + + 指定した名前空間 URI に割り当てられたプレフィックスを取得します。 + 名前空間 URI に割り当てられているプレフィックス。この名前空間 URI にプレフィックスが割り当てられていない場合は null。 + 検索対象のプレフィックスを持つ名前空間 URI。 + + + + で重複する名前空間宣言を削除するかどうかを指定します。 + + + 重複する名前空間宣言が削除されないように指定します。 + + + 重複する名前空間宣言を削除するように指定します。重複する名前空間を削除するには、プレフィックスと名前空間が一致している必要があります。 + + + シングルスレッド を実装します。 + + + NameTable クラスの新しいインスタンスを初期化します。 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。または NameTable に既に存在している場合は既存の文字列。 が 0 の場合は、String.Empty が返されます。 + 追加する文字列を格納している文字配列。 + 文字列の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 文字列の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した文字列を最小単位に分割し、NameTable に追加します。 + 最小単位に分割された文字列。NameTable に既に存在している場合は既存の文字列。 + 追加する文字列。 + + は null なので、 + + + 指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは >= .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 指定した値を持つ最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列オブジェクト。または文字列がまだ最小単位に分割されていない場合は null。 + 検索対象の名前。 + + は null なので、 + + + 改行の処理方法を指定します。 + + + 改行文字をエンティティ化します。この設定では、正規化 で出力を読み取るときにすべての文字が保持されます。 + + + 改行文字を変更しません。出力は入力と同じになります。 + + + + プロパティに指定されている文字と一致するように、改行文字を置き換えます。 + + + リーダーの状態を指定します。 + + + + メソッドが呼び出されています。 + + + ファイルの末尾に正常に到達しています。 + + + 読み取り操作を継続できないようにするエラーが発生しました。 + + + Read メソッドが呼び出されていません。 + + + Read メソッドが呼び出されています。リーダーで追加のメソッドが呼び出される場合があります。 + + + + の状態を指定します。 + + + 属性値が書き込まれていることを示します。 + + + + メソッドが呼び出されていることを示します。 + + + 要素の内容が書き込まれていることを示します。 + + + 要素開始タグが書き込まれていることを示します。 + + + 例外がスローされ、 が無効な状態になっています。 メソッドを呼び出すと、 状態にできます。それ以外の メソッドを呼び出した場合、 が発生します。 + + + プロローグが書き込まれていることを示します。 + + + Write メソッドがまだ呼び出されていないことを示します。 + + + XML 名をエンコードおよびデコードし、共通言語ランタイム型と XML スキーマ定義言語 (XSD) 型との間で変換を実行するメソッドを提供します。データ型を変換する場合、返される値はロケールには依存しません。 + + + 名前をデコードします。このメソッドは、 メソッドおよび メソッドの変換を元に戻します。 + デコードされた名前。 + 変換対象の名前。 + + + 名前を有効な XML ローカル名に変換します。 + エンコードされた名前。 + エンコードする名前。 + + + 名前を有効な XML 名に変換します。 + 無効な文字をエスケープ文字列で置換した名前を返します。 + 変換する対象の名前。 + + + XML 仕様に従って有効な名前であることを検証します。 + エンコードされた名前。 + エンコードする名前。 + + + + を等価の に変換します。 + Boolean 値。つまり true または false。 + 変換する文字列。 + + is null. + + does not represent a Boolean value. + + + + を等価の に変換します。 + 文字列と等価の Byte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 単一の文字を表す Char。 + 変換する単一の文字を含んでいる文字列。 + The value of the parameter is null. + The parameter contains more than one character. + + + 指定された を使用して、 に変換します + + と等価の + 変換する 値。 + 世界協定時刻 (UTC) 日付を使用している場合に、日付を現地時間に変換するか、または UTC のままにするかを指定する 値の 1 つ。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。メモ   文字列は、W3C 勧告の XML dateTime 型のサブセットに準拠している必要があります。詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + 変換前の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 はこの形式に対して妥当性が検査されます。 + + is null. + + or is an empty string or is not in the specified format. + + + 指定した を等価の に変換します。 + 指定した文字列と等価の + 変換する文字列。 + + に変換可能な形式の配列。 の各形式には、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 文字列 は、これらの形式のいずれかに対して妥当性が検査されます。 + + + + を等価の に変換します。 + 文字列と等価の Decimal。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Double。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Guid。 + 変換する文字列。 + + + + を等価の に変換します。 + 文字列と等価の Int16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Int64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の SByte。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の Single。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + に変換します。 + Boolean の文字列形式。つまり "true" または "false"。 + 変換する値。 + + + + に変換します。 + Byte の文字列形式。 + 変換する値。 + + + + に変換します。 + Char の文字列形式。 + 変換する値。 + + + 指定された を使用して、 に変換します。 + + と等価の + 変換する 値。 + + 値を処理する方法を指定する 値の 1 つ。 + The value is not valid. + The or value is null. + + + 指定した に変換します。 + 指定した 表現。 + 変換される 。 + + + 指定した を指定した形式の に変換します。 + 指定した の指定した形式での 表現。 + 変換される 。 + 変換後の の形式。フォーマット パラメーターには、W3C 勧告の XML dateTime 型の任意のサブセットを指定できます。(詳細については、http://www.w3.org/TR/xmlschema-2/#dateTime を参照してください)。 + + + + に変換します。 + Decimal の文字列形式。 + 変換する値。 + + + + に変換します。 + Double の文字列形式。 + 変換する値。 + + + + に変換します。 + Guid の文字列形式。 + 変換する値。 + + + + に変換します。 + Int16 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int32 の文字列形式。 + 変換する値。 + + + + に変換します。 + Int64 の文字列形式。 + 変換する値。 + + + + に変換します。 + SByte の文字列形式。 + 変換する値。 + + + + に変換します。 + Single の文字列形式。 + 変換する値。 + + + + に変換します。 + TimeSpan の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt16 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt32 の文字列形式。 + 変換する値。 + + + + に変換します。 + UInt64 の文字列形式。 + 変換する値。 + + + + を等価の に変換します。 + 文字列と等価の TimeSpan。 + 変換する文字列。文字列の形式は、W3C『XML Schema Part 2: Datatypes』の期間に関する勧告に準拠している必要があります。 + + is not in correct format to represent a TimeSpan value. + + + + を等価の に変換します。 + 文字列と等価の UInt16。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt32。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + を等価の に変換します。 + 文字列と等価の UInt64。 + 変換する文字列。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な名前であることを検証します。 + 有効な XML 名の場合は、その名前。 + 検証対象となる名前。 + + is not a valid XML name. + + is null or String.Empty. + + + W3C 勧告『Extended Markup Language』に照らし合わせて、名前が有効な NCName であることを検証します。NCName は、コロンを入れることができない名前です。 + 有効な NCName の場合は、その名前。 + 検証対象となる名前。 + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C 勧告『XML Schema Part 2: Datatypes』に照らし合わせて、文字列が有効な NMTOKEN であることを検証します。 + 有効な NMTOKEN の場合は、名前トークン。 + 検証する文字列。 + The string is not a valid name token. + + is null. + + + 文字列引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列インスタンスを返します。 + 引数のすべての文字が有効な公開識別子の文字の場合、渡された文字列を返します。 + 検証対象の識別子が格納されている 。 + + + 文字列引数のすべての文字が有効な空白文字の場合、渡された文字列インスタンスを返します。 + 文字列引数のすべての文字が有効な空白文字の場合は渡された文字列インスタンスを返し、それ以外の場合は null を返します。 + 検証する 。 + + + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 文字列引数の中にあるすべての文字とサロゲート ペア文字が有効な XML 文字である場合は、渡された文字列が返されます。それ以外の場合は、見つかった最初の無効な文字に関する情報を含む XmlException がスローされます。 + 検証対象の文字が格納されている 。 + + + 文字列と の間で変換を行うときに、時刻の値をどのように処理するかを指定します。 + + + 現地時刻として処理します。 オブジェクトが世界協定時刻 (UTC: Coordinated Universal Time) を表す場合、これを現地時刻に変換します。 + + + 変換を行うときに、タイム ゾーン情報が保持されます。 + + + + を文字列に変換する場合は、現地時刻として処理します。 + + + UTC として処理します。 オブジェクトが現地時刻を表す場合は、UTC に変換します。 + + + 最後の例外に関する詳細情報を返します。 + + + XmlException クラスの新しいインスタンスを初期化します。 + + + 指定したエラー メッセージを使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + + + XmlException クラスの新しいインスタンスを初期化します。 + エラー状態の説明。 + XmlException をスローした (存在する場合)。この値は、null の場合もあります。 + + + 指定したメッセージ、内部例外、行番号、行の位置を使用して、XmlException クラスの新しいインスタンスを初期化します。 + エラーの説明。 + 現在の例外の原因である例外。この値は、null の場合もあります。 + エラーの発生場所を示す行番号。 + エラーの発生場所を示す行の位置。 + + + エラーの発生場所を示す行番号を取得します。 + エラーの発生場所を示す行番号。 + + + エラーの発生場所を示す行の位置を取得します。 + エラーの発生場所を示す行の位置。 + + + 現在の例外を説明するメッセージを取得します。 + 例外の原因を説明するエラー メッセージ。 + + + 名前空間を解決し、コレクションに追加および削除して、これらの名前空間に対するスコープ管理を提供します。 + + + + を指定して、 クラスの新しいインスタンスを初期化します。 + 使用する 。 + null is passed to the constructor + + + 指定した名前空間をコレクションに追加します。 + 追加する名前空間に関連付けるプリフィックス。String.Empty を使用して、既定の名前空間を追加します。メモ XML Path Language (XPath) 式の名前空間の解決に を使用する場合は、プレフィックスを指定する必要があります。XPath 式にプレフィックスが含まれていない場合、名前空間 URI (Uniform Resource Identifier) は、空の名前空間であると見なされます。XPath 式および の詳細については、 メソッドおよび メソッドの説明を参照してください。 + 追加する名前空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 既定の名前空間の名前空間 URI を取得します。 + 既定の名前空間の名前空間 URI を返します。既定の名前空間がない場合は String.Empty を返します。 + + + + 内の名前空間を反復処理するために使用する列挙子を返します。 + + によって格納されているプレフィックスを含む + + + 現在スコープ内にある名前空間を列挙するために使用できる、プレフィックスをキーとした、名前空間の名前のコレクションを取得します。 + 現在スコープ内にある名前空間とプレフィックスのペアのコレクション。 + 返される名前空間ノードの種類を指定する列挙値。 + + + 提供されたプリフィックスに現在のプッシュされたスコープに対して定義された名前空間があるかどうかを示す値を取得します。 + 定義された名前空間がある場合は true。それ以外の場合は false。 + 検索する対象の名前空間のプリフィックス。 + + + 指定したプリフィックスの名前空間 URI を取得します。 + + の名前空間 URI を返します。マップされた名前空間がない場合は null を返します。返される文字列は最小単位に分割されます。最小単位に分割された文字列の詳細については、 クラスを参照してください。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間に一致するようにするには、String.Empty を渡します。 + + + 指定した名前空間 URI に対して宣言されたプリフィックスを検索します。 + 一致するプリフィックス。割り当てられたプリフィックスがない場合、メソッドは String.Empty を返します。null 値を指定した場合、null が返されます。 + プリフィックスに対して解決する名前空間。 + + + このオブジェクトに関連付けられている を取得します。 + このオブジェクトが使用する + + + 名前空間スコープをスタックからポップします。 + スタックに名前空間スコープが残されている場合は true。ポップする名前空間がそれ以上ない場合は false。 + + + 名前空間スコープをスタックにプッシュします。 + + + 指定したプリフィックスの指定した名前空間を削除します。 + 名前空間のプリフィックス。 + 指定したプリフィックスに対して削除する名前空間。削除された名前空間は、現在の名前空間スコープに由来しています。現在のスコープ外の名前空間は無視されます。 + The value of or is null. + + + 名前空間スコープを定義します。 + + + 現在のノードのスコープに定義されているすべての名前空間。この名前空間には、常に暗黙的に宣言される xmlns:xml 名前空間が含まれます。返される名前空間の順序は定義されません。 + + + 常に暗黙的に宣言される xmlns:xml 名前空間を除く、現在のノードのスコープに定義されているすべての名前空間。返される名前空間の順序は定義されません。 + + + 現在のノードでローカルに定義されているすべての名前空間。 + + + 最小単位に分割された文字列オブジェクトのテーブル。 + + + + クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。長さが 0 の場合は、String.Empty が返されます。 + 追加する名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列を最小単位に分割し、XmlNameTable に追加します。 + 新しく最小単位に分割された文字列。既に存在している場合は既存の文字列。 + 追加する名前。 + + は null なので、 + + + 派生クラスでオーバーライドされると、指定した配列内の指定した範囲の文字と同じ文字を含む、最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 が 0 の場合は、String.Empty が返されます。 + 検索対象の名前を格納している文字配列。 + 名前の最初の文字を指定する配列の、0 から始まるインデックス番号。 + 名前の文字数。 + 0 > または >= .Lengthまたは > .Length =0 の場合は、上記の条件によって例外がスローされることはありません。 + + < 0 + + + 派生クラスでオーバーライドされると、指定した文字列と同じ値を含む最小単位に分割された文字列を取得します。 + 最小単位に分割された文字列。文字列がまだ最小単位に分割されていない場合は null。 + 検索する名前。 + + は null なので、 + + + ノードの型を指定します。 + + + 属性 (例 : id='123')。 + + + CDATA セクション (例 : <![CDATA[my escaped text]]>)。 + + + コメント (例 : <!-- my comment -->)。 + + + ドキュメント ツリーのルートして、XML ドキュメント全体へのアクセスを実現するドキュメント オブジェクト。 + + + ドキュメント フラグメント。 + + + 次のようなタグで示されるドキュメント型宣言 (例 : <!DOCTYPE...>)。 + + + 要素 (例 : <item>)。 + + + 終了要素タグ (例 : </item>)。 + + + + を呼び出した結果、XmlReader がエンティティ置換の末尾に到達したときに返されます。 + + + エンティティ宣言 (例 : <!ENTITY...>)。 + + + エンティティへの参照 (例 : &num;)。 + + + Read メソッドが呼び出されなかった場合に、 によって返されます。 + + + ドキュメント型宣言内の表記 (例 : <!NOTATION...>)。 + + + 処理命令 (例 : <?pi test?>)。 + + + 混合コンテンツ モデル内のマークアップ間にある空白、または xml:space="preserve" スコープ内の空白。 + + + ノードのテキストの内容。 + + + マークアップ間の空白。 + + + XML 宣言 (例 : <?xml version='1.0'?>)。 + + + XML フラグメントを解析するために が必要とするコンテキスト情報をすべて提供します。 + + + + 、ベース URI、xml:lang、xml:space、ドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD サブセットはエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、ベース URI、xml:lang、xml:space、エンコーディング、およびドキュメント型のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + ドキュメント型宣言の名前。 + パブリック識別子。 + システム識別子。 + 内部 DTD サブセット。DTD はエンティティ解決に使用され、ドキュメント検証には使用されません。 + XML フラグメントのベース URI (フラグメントの読み込み元の場所)。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、および xml:space のそれぞれの値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + + 、xml:lang、xml:space、およびエンコーディングを指定して、XmlParserContext クラスの新しいインスタンスを初期化します。 + 文字列を最小単位に分割するために使用する 。このパラメーターが null の場合は、 を構築するために使用される名前テーブルが代わりに使用されます。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + 名前空間情報を検索するために使用する 。または null。 + xml:lang スコープ。 + xml:space スコープを示す 値。 + エンコーディングの設定を示す オブジェクト。 + + が、 を構築するために使用される XmlNameTable と異なります。 + + + ベース URI を取得または設定します。 + DTD ファイルを解決するために使用するベース URI。 + + + ドキュメント型宣言の名前を取得または設定します。 + ドキュメント型宣言の名前。 + + + エンコーディングの種類を取得または設定します。 + エンコーディングの種類を示す オブジェクト。 + + + 内部 DTD サブセットを取得または設定します。 + 内部 DTD サブセット。たとえば、このプロパティは、<!DOCTYPE doc [...]> の角かっこの中のすべての内容を返します。 + + + + を取得または設定します。 + XmlNamespaceManager。 + + + 文字列を最小単位に分割するために使用される を取得します。最小単位に分割された文字列の詳細については、 のトピックを参照してください。 + XmlNameTable。 + + + パブリック識別子を取得または設定します。 + パブリック識別子。 + + + システム識別子を取得または設定します。 + システム識別子。 + + + 現在の xml:lang スコープを取得または設定します。 + 現在の xml:lang スコープ。スコープ内に xml:lang がない場合は、String.Empty が返されます。 + + + 現在の xml:space スコープを取得または設定します。 + xml:space スコープを示す 値。 + + + XML 限定名を表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定した名前を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + + 指定した名前と名前空間を使用して、 クラスの新しいインスタンスを初期化します。 + + オブジェクトの名前として使用するローカル名。 + + オブジェクトの名前空間。 + + + 空の を提供します。 + + + 指定した オブジェクトが、現在の オブジェクトと等しいかどうかを判断します。 + 2 つのオブジェクトが同じインスタンス オブジェクトである場合は true。それ以外の場合は false。 + 比較対象の 。 + + + + のハッシュ コードを返します。 + このオブジェクトのハッシュ コード。 + + + + が空かどうかを示す値を取得します。 + 名前と名前空間が空の文字列である場合は true。それ以外の場合は false。 + + + + の限定名の文字列形式を取得します。 + 限定名の文字列形式。オブジェクトに対して名前が定義されていない場合は String.Empty。 + + + + の名前空間の文字列形式を取得します。 + 名前空間の文字列形式。オブジェクトに対して名前空間が定義されていない場合は String.Empty。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が同じである場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + 2 つの オブジェクトを比較します。 + 2 つのオブジェクトの名前の値および名前空間の値が異なっている場合は true。それ以外の場合は false。 + 比較対象の 。 + 比較対象の 。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + + + + の文字列値を返します。 + namespace:localname の形式の の文字列値。オブジェクトに名前空間が定義されていない場合、このメソッドはローカル名だけを返します。 + オブジェクトの名前です。 + オブジェクトの名前空間。 + + + XML データへの高速で非キャッシュの前方向アクセスを提供するリーダーを表します。この種類の .NET Framework ソース コードを参照して、次を参照してください。、参照ソースです。 + + + XmlReader クラスの新しいインスタンスを初期化します。 + + + 派生クラスでオーバーライドされると、現在のノードの属性数を取得します。 + 現在のノードにある属性の数。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのベース URI を取得します。 + 現在のノードのベース URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + がバイナリ コンテンツ用の読み取りメソッドを実装するかどうかを示す値を取得します。 + バイナリ コンテンツ用の読み取りメソッドを実装する場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドを実装しているかどうかを示す値を取得します。 + true if the implements the method; otherwise false. + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このリーダーがエンティティを解析および解決できるかどうかを示す値を取得します。 + リーダーがエンティティを解析および解決できる場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 新たに作成インスタンスの既定の設定で指定されたストリームを使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + + + 新たに作成インスタンスは、指定したストリームおよび設定を使用します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成インスタンスを解析するための指定したストリーム、設定、およびコンテキスト情報を使用しています。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているストリーム。 は、バイト順マークや、エンコードに関するその他の記号を探すため、ストリームの先頭バイトをスキャンします。エンコーディングが確認された場合、そのエンコーディングを使用してストリームの読み込みを続行し、入力を (Unicode) 文字のストリームとして解析する処理を継続します。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーを使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + + 値が null です。 + + + 新たに作成、指定されたテキスト リーダーと設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定です。この値は、null の場合もあります。 + + 値が null です。 + + + 新たに作成を解析するための指定されたテキスト リーダー、設定、およびコンテキスト情報を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データの読み出し元のテキスト リーダー。テキスト リーダーは Unicode 文字のストリームを返すため、XML リーダーはデータ ストリームのデコードに XML 宣言に指定されたエンコーディングを使用しません。 + 新しい設定インスタンス。この値は、null の場合もあります。 + XML フラグメントの解析に必要なコンテキスト情報。コンテキスト情報には、エンコーディング、名前空間スコープ、現在の xml:lang スコープと xml:space スコープ、ベース URI、および文書型定義に使用する を格納できます。この値は、null の場合もあります。 + + 値が null です。 + + プロパティと プロパティの両方に値が設定されています(これらの NameTable プロパティのいずれか 1 つだけを設定して使用できます)。 + + + 指定された URI で新しい インスタンスを作成します。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 クラスは、パスを正規データ形式に変換するときに使用されます。 + + 値が null です。 + + には、XML データの場所へのアクセスに必要なアクセス許可がありません。 + URI で指定されたファイルが存在しません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成指定された URI および設定を使用してインスタンス。 + ストリーム内の XML データの読み取りに使用するオブジェクト。 + XML データを格納しているファイルの URI。 オブジェクトの オブジェクトは、パスを正規データ形式に変換するときに使用されます。 が null の場合は、新しい オブジェクトが使用されます。 + 新しい設定インスタンス。この値は、null の場合もあります。 + + 値が null です。 + URI で指定されたファイルが見つかりません。 + Windows ストア アプリのための .NET または汎用性のあるクラス ライブラリで、基本クラスの例外 を代わりにキャッチします。URI 形式が正しくありません。 + + + 新たに作成、指定した XML リーダーと設定を使用してインスタンス。 + ラップされているオブジェクトには、指定されたオブジェクトです。 + 基になる XML リーダーとして使用するオブジェクト。 + 新しい設定インスタンス。 オブジェクトの準拠レベルは、基になるリーダーの準拠レベルと一致するか、または に設定する必要があります。 + + 値が null です。 + + オブジェクトが、基になるリーダーの準拠レベルと一致しない準拠レベルを指定しています。または基になる の状態または の状態にあります。 + + + 派生クラスでオーバーライドされると、XML ドキュメント内の現在のノードの深さを取得します。 + XML ドキュメント内の現在のノードの深さ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーがストリームの末尾に配置されているかどうかを示す値を取得します。 + ストリームの末尾にリーダーが配置されている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。このメソッドは、リーダーを移動しません。 + 属性のインデックス。インデックスの値は、0 から始まります。最初の属性のインデックスは 0 です。 + 該当する がありません。負の値以外で、属性コレクションのサイズよりも小さくなければなりません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。 + 属性の限定名。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。属性が見つからないか、値が String.Empty の場合、null が返されます。このメソッドは、リーダーを移動しません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + は null です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードのテキスト値を非同期に取得します。 + 現在のノードの値。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードに属性があるかどうかを示す値を取得します。 + 現在のノードが属性を持っている場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが を持つことができるかどうかを示す値を取得します。 + リーダーが現在配置されているノードが Value を持つことができる場合は true。それ以外の場合は false。false の場合、ノードは String.Empty の値を持ちます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが DTD またはスキーマで定義された既定値から生成された属性かどうかを示す値を取得します。 + 現在のノードが、DTD またはスキーマで定義された既定値から生成された値を持つ属性である場合は true。属性値が明示的に設定された場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードが空の要素 (<MyElement/> など) かどうかを示す値を取得します。 + 現在のノードが /> で終わる要素である ( が XmlNodeType.Element に等しい) 場合は true。それ以外の場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 文字列引数が有効な XML 名かどうかを示す値を返します。 + 名前が有効な場合は true。それ以外の場合は false。 + 検証対象の名前。 + + 値が null です。 + + + 文字列引数が有効な XML 名トークンかどうかを示す値を返します。 + 有効な名前トークンの場合は true。それ以外の場合は false。 + 検証対象の名前トークン。 + + 値が null です。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうかをテストします。 + + が開始タグまたは空の要素タグを見つけた場合は true。XmlNodeType.Element 以外のノード型が見つかった場合は false。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティが、指定した引数と一致するかどうかをテストします。 + 見つかったノードが要素であり、Name プロパティが指定した文字列と一致する場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の Name プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の Name プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + を呼び出し、現在のコンテンツ ノードが開始タグまたは空の要素タグかどうか、また、見つかった要素の プロパティと プロパティが、指定した文字列と一致するかどうかをテストします。 + 見つかったノードが要素の場合は true。XmlNodeType.Element 以外のノード型が見つかった場合、または要素の LocalName および NamespaceURI プロパティが指定した文字列と一致しない場合は false。 + 見つかった要素の LocalName プロパティと一致する文字列。 + 見つかった要素の NamespaceURI プロパティと一致する文字列。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性の値を取得します。 + 指定した属性の値。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定した および の属性の値を取得します。 + 指定した属性の値。指定した属性が見つからない場合は null が返されます。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのローカル名を取得します。 + プリフィックスを削除した現在のノードの名前。たとえば、LocalName は、要素 <bk:book> の book です。名前を持たないノード型 (Text、Comment など) の場合、このプロパティは String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の要素のスコープの名前空間プリフィックスを解決します。 + プリフィックスの割り当て先の名前空間 URI。条件に合うプリフィックスが見つからない場合は null。 + 解決する対象となる名前空間 URI を持つプリフィックス。既定の名前空間と一致させるには、空の文字列を渡します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、指定したインデックスの属性に移動します。 + 属性のインデックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターの値が負数です。 + + + 派生クラスでオーバーライドされると、指定した の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 派生クラスでオーバーライドされると、指定した および の属性に移動します。 + 属性が見つかった場合は true。それ以外の場合は false。false の場合、リーダーの位置は変更されません。 + 属性のローカル名。 + 属性の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 現在のノードがコンテンツ (空白でないテキスト、CDATA、Element、EndElement、EntityReference、または EndEntity) ノードかどうかを確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。リーダーは、ProcessingInstruction、DocumentType、Comment、Whitespace、または SignificantWhitespace の型のノードをスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + 入力ストリームで検出された正しくない XML。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードがコンテンツ ノードであるかどうかを非同期的に確認します。ノードがコンテンツ ノードでない場合、リーダーは、次のコンテンツ ノードまたはファイルの末尾までスキップします。 + メソッドが見つけた現在のノードの 。リーダーが入力ストリームの末尾に到達した場合は XmlNodeType.None。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の属性ノードを含む要素に移動します。 + リーダーが属性の位置に配置されている場合は true で、属性を所有している要素の位置にリーダーが移動します。リーダーが属性の位置に配置されていない場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、最初の属性に移動します。 + 属性が存在する場合は true で、リーダーが最初の属性へ移動します。それ以外の場合は false で、リーダーの位置が変更されません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、次の属性に移動します。 + 次の属性が存在する場合は true。それ以上、属性が存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの限定名を取得します。 + 現在のノードの限定名。たとえば、Name は、要素 <bk:book> の bk:book です。返される名前は、ノードの によって異なります。リストされた値を返すノード型を次に示します。その他のすべてのノード型は、空の文字列を返します。ノード型名前 Attribute属性の名前。 DocumentTypeドキュメントの種類の名前。 Elementタグ名。 EntityReference参照されたエンティティの名前。 ProcessingInstruction処理命令の対象。 XmlDeclarationリテラル文字列 xml。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーが配置されているノードの名前空間 URI (W3C の名前空間の仕様における定義に準拠) を取得します。 + 現在のノードの名前空間 URI。それ以外の場合は空の文字列。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、この実装に関連付けられている を取得します。 + ノード内の最小単位に分割された文字列を取得できる XmlNameTable。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードの型を取得します。 + 現在のノードの型を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードに関連付けられている名前空間プリフィックスを取得します。 + 現在のノードに関連付けられた名前空間プリフィックス。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、ストリームから次のノードを読み取ります。 + true次のノードが正常に読み取られた場合それ以外の場合、falseです。 + XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + ストリームから次のノードを非同期に読み取ります。 + 次のノードが正常に読み取られた場合は true。それ以上読み取る対象となるノードが存在しない場合は false。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、属性値を解析して、1 つ以上の Text、EntityReference、または EndEntity の各ノードに格納します。 + 返すノードがある場合は true。初めて呼び出すときにリーダーの位置が属性ノード上にない場合、またはすべての属性値が読み込まれている場合は、false。misc="" などの空の属性は、値 true を持つ単一のノードと一緒に String.Empty を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。たとえば、 オブジェクトを xs:string に変換するときにこれを使用できます。この値は、null の場合もあります。 + 内容が、指定した型の正しい形式になっていません。 + 試行されたキャストが無効です。 + + 値が null です。 + 現在のノードは、サポートされているノード型ではありません。詳細については、次の表を参照してください。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された型のオブジェクトとして内容を非同期に読み取ります。 + 要求された型に変換された、連結されたテキストの内容または属性値。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、Base64 でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + コンテンツを読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + + は、現在のノードではサポートされていません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + コンテンツを非同期に読み取り、BinHex でデコードされたバイナリ バイトを返します。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を Boolean として読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + 現在の位置における オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、倍精度浮動小数点数として読み取ります。 + 倍精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置のテキストの内容を、単精度浮動小数点数として読み取ります。 + 現在の位置における単精度浮動小数点数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 32 ビット符号付き整数として読み取ります。 + 32 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を 64 ビット符号付き整数として読み取ります。 + 64 ビット符号付き整数としてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を として非同期に読み取ります。 + 最も適切な共通言語ランタイム (CLR) オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして読み取ります。 + + オブジェクトとしてのテキストの内容。 + 試行されたキャストが無効です。 + 文字列書式が無効です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の位置でテキストの内容を オブジェクトとして非同期に読み取ります。 + + オブジェクトとしてのテキストの内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として返します。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、要素の内容を要求された型として読み込みます。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。メモ   .NET Framework 3.5 のリリースでは、 パラメーターの値に 型を指定できるようになりました。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + Decimal.MaxValue を読み取りました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素の内容を要求された型として非同期に読み取ります。 + 要求された型のオブジェクトに変換された要素の内容。 + 返される値の型。 + 型変換に関連する名前空間プレフィックスの解決に使用される オブジェクト。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、Base64 の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 要素を読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + 値が null です。 + 現在のノードは要素ノードではありません。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + 要素には混合コンテンツが含まれます。 + コンテンツを要求された型に変換できません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 要素を非同期に読み取り、BinHex の内容をデコードします。 + バッファーに書き込まれたバイト数。 + 結果として得られるテキストのコピー先のバッファー。この値を null にすることはできません。 + バッファー内の結果のコピー開始位置を示すオフセット。 + バッファーにコピーする最大バイト数。コピーされた実際のバイト数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を倍精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を倍精度浮動小数点数として返します。 + 倍精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を単精度浮動小数点数として返します。 + 単精度浮動小数点数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を単精度浮動小数点数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 32 ビット符号付き整数として返します。 + 32 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 32 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を 64 ビット符号付き整数として返します。 + 64 ビット符号付き整数としての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を 64 ビット符号付き整数に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み込み、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み込んで内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を要求された型に変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を として返します。 + 最も適切な型のボックス化された共通言語ランタイム (CLR) オブジェクト。 プロパティは、適切な CLR 型を判断します。内容がリスト型として型指定されている場合、このメソッドは適切な型のボックス化されたオブジェクトの配列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在の要素を読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定されたローカル名と名前空間 URI が現在の要素のものと一致することを確認し、現在の要素を読み取って、内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + 要素のローカル名。 + 要素の名前空間 URI。 + + が要素に配置されません。 + 現在の要素には、子要素が含まれています。または要素の内容を オブジェクトに変換できません。 + 引数に null を渡してメソッドが呼び出されました。 + 指定されたローカル名と名前空間 URI は、現在読み取り中の要素と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在の要素を非同期に読み取り、その内容を オブジェクトとして返します。 + + オブジェクトとしての要素の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが終了タグで、リーダーを次のノードに進めることを確認します。 + 現在のノードが終了タグでないか、入力ストリームで正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、マークアップを含むすべての内容を文字列として読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。現在のノードが要素でも属性でもない場合は、空の文字列が返されます。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + マークアップを含むすべてのコンテンツを文字列として非同期に読み取ります。 + 現在のノード内の、マークアップを含むすべての XML の内容。現在のノードが子を持っていない場合は、空の文字列が返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、このノードとそのすべての子を表す内容 (マークアップを含む) を読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + XML が整形式ではありませんでした。または、XML の解析中にエラーが発生しました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + このノードとその子を表すコンテンツをマークアップを含めて非同期に読み取ります。 + リーダーが要素ノードまたは属性ノードに配置されている場合、このメソッドは、現在のノードおよびそのすべての子の、マークアップを含む、XML の内容をすべて返します。それ以外の場合は、空の文字列を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 現在のノードが要素であるか調べ、リーダーを次のノードに進めます。 + 入力ストリームで、正しくない XML が検出されました。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素の限定名。 + 入力ストリームで、正しくない XML が検出されました。または要素の が指定した と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のコンテンツ ノードが、指定した を持つ要素で、リーダーを次のノードに進めることを確認します。 + 要素のローカル名。 + 要素の名前空間 URI。 + 入力ストリームで、正しくない XML が検出されました。または見つかった要素の プロパティと プロパティが指定した引数と一致しません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、リーダーの状態を取得します。 + リーダーの状態を指定する列挙値の 1 つ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードおよびそのすべての子孫ノードを読み取るために使用できる、新しい XmlReader インスタンスを返します。 + 新しい XML リーダー インスタンスの設定です。呼び出す、メソッド呼び出しの前に現在のノードで、新しいリーダーを配置する、メソッドです。 + XML リーダーではありません、このメソッドが呼び出されると、要素に配置されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 指定された修飾名を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。 が呼び出されたときに が要素に配置されていない場合、このメソッドは false を返し、 の位置を変更しません。 + 移動先となる要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して を次の子孫要素に進めます。 + 一致する子孫要素が見つかった場合は true。それ以外の場合は false。一致する子孫要素が見つからない場合、要素の終了タグ ( が XmlNodeType.EndElement) に が配置されます。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 移動先となる要素のローカル名。 + 移動先となる要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名の要素が見つかるまで読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素の限定名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI が見つかるまで要素を読み込みます。 + 一致する要素が見つかる場合は true。それ以外の場合は false になり、 がファイルの末尾に置かれます。 + 要素のローカル名。 + 要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + 指定された修飾名を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素の修飾名。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + パラメーターは空の文字列です。 + + + 指定されたローカル名と名前空間 URI を使用して XmlReader を次の兄弟要素に進めます。 + 一致する兄弟要素が見つかった場合は true。それ以外の場合は false。一致する兄弟要素が見つからない場合、親要素の終了タグ ( が XmlNodeType.EndElement) に XmlReader が配置されます。 + 移動先となる兄弟要素のローカル名。 + 移動先となる兄弟要素の名前空間 URI。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + 両方のパラメーター値が null です。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを読み込みます。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + 現在のノードに値がありません ( が false)。 + + 値が null です。 + バッファー内のインデックス、またはインデックスとカウントの合計値が、割り当てられているバッファー サイズを超えています。 + + 実装が、このメソッドをサポートしていません。 + XML データは、整形式ではありません。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + XML ドキュメントに埋め込まれたテキストの大量のストリームを非同期に読み取ります。 + バッファー内へ読み取られた文字数。それ以上テキストの内容がない場合は、値として 0 が返されます。 + テキストの内容が書き込まれるバッファーとして機能する文字の配列。この値を null にすることはできません。 + + が結果のコピーを開始できる、バッファー内のオフセット。 + バッファーにコピーする最大文字数。コピーされた実際の文字数は、このメソッドから返されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、EntityReference ノードのエンティティ参照を解決します。 + リーダーが EntityReference ノードに配置されていません。つまり、このリーダーの実装では、エンティティを解決できません。 は false を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + Gets the object used to create this instance. + このリーダーのインスタンスを作成するために使用した オブジェクト。 メソッドを使用しないでこのリーダーを作成した場合、このプロパティは null を返します。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子をスキップします。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの子を非同期にスキップします。 + 現在のノード。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + 非同期メソッドは、 フラグを true に設定せずに呼び出されました。この場合、非同期メソッドを使用するには XmlReaderSettings.Async を true に設定する必要があることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在のノードのテキスト値を取得します。 + 返される値は、ノードの によって異なります。返す値を持つノード型の一覧を次の表に示します。これ以外のノード型はすべて String.Empty を返します。ノード型値 Attribute属性の値。 CDATACDATA セクションの内容。 Commentコメントの内容。 DocumentType内部サブセット。 ProcessingInstructionターゲットを含まない、全体の内容。 SignificantWhitespace混合コンテンツ モデル内のマークアップ間の空白。 Textテキスト ノードの内容。 Whitespaceマークアップ間の空白。 XmlDeclaration宣言の内容。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 現在のノードの共通言語ランタイム (CLR) 型を取得します。 + ノードの型指定された値に対応する CLR 型。既定値は、System.String です。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを取得します。 + + 値のいずれか。xml:space スコープが存在しない場合、このプロパティは既定の XmlSpace.None に設定されます。 + + メソッドは、前の非同期操作が終了する前に呼び出されました。この場合、非同期操作が既に進行中であることを示すメッセージと共に がスローされます。 + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + 文字のチェックを行うかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。メモ がテキスト データの処理を行う場合は、プロパティの設定に関係なく、XML 名とテキストの内容が有効であることを常にチェックします。 を false に設定すると、文字エンティティ参照に対する文字のチェック機能がオフになります。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + リーダーを閉じるときに基になるストリームまたは を閉じる必要があるかどうかを示す値を取得または設定します。 + リーダーを閉じるときに基になるストリームまたは を閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + + が従う準拠のレベルを取得または設定します。 + XML リーダーが適用する準拠のレベルを指定する列挙値のいずれか。既定値は、 です。 + + + DTD の処理を決定する値を取得または設定します。 + DTD の処理を決定する列挙値の 1 つ。既定値は、 です。 + + + コメントを無視するかどうかを示す値を取得または設定します。 + コメントを無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 処理命令を無視するかどうかを示す値を取得または設定します。 + 処理命令を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + 意味のない空白を無視するかどうかを示す値を取得または設定します。 + 空白を無視する場合は true。それ以外の場合は false。既定値は、false です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + 行番号オフセット。既定値は 0 です。 + + + + オブジェクトの行番号オフセットを取得または設定します。 + ラインの位置のオフセット。既定値は 0 です。 + + + エンティティの展開時に許容されるドキュメント内の最大文字数を示す値を取得または設定します。 + エンティティの展開時に許容される最大文字数。既定値は 0 です。 + + + XML ドキュメントの最大文字数を示す値を取得または設定します。ゼロ (0) の値は、XML ドキュメントのサイズに制限がないことを示します。0 以外の値は、最大サイズを文字数で示します。 + XML ドキュメント内の最大文字数。既定値は 0 です。 + + + 最小単位に分割された文字列の比較に使用する を取得または設定します。 + この オブジェクトを使用して作成されたすべての インスタンスで使用する、最小単位に分割されたすべての文字列を格納する 。既定値は、null です。この値が null の場合、作成された インスタンスは、新しい空の を使用します。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + 現在の xml:space スコープを指定します。 + + + xml:space スコープと default は等価です。 + + + xml:space スコープがありません。 + + + xml:space スコープと preserve は等価です。 + + + XML データが格納されたストリームまたはファイルを、高速かつ非キャッシュで前方のみに生成する方法を提供するライターを表します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 指定されたストリームを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + The value is null. + + + ストリームと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先のストリーム。 は、XML 1.0 テキスト構文を書き込み、指定されたストリームにそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の は、XML 1.0 テキスト構文を書き込み、指定された にそれを付加します。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された を使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + + オブジェクト。 + 書き込み先の で書き込まれた内容が、 に付加されます。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + 指定された オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + The value is null. + + + + オブジェクトと オブジェクトを使用して新しい インスタンスを作成します。 + 指定された オブジェクトをラップする オブジェクト。 + 基になるライターとして使用する オブジェクト。 + 新しい インスタンスを構成するために使用される オブジェクト。これが null である場合は、既定の設定で が使用されます。 メソッドと組み合わせて使用する場合は、 プロパティを使って、正しい設定の割り当てられた オブジェクトを取得する必要があります。これにより、作成された オブジェクトに正しい出力設定が適用されます。 + The value is null. + + + + クラスの現在のインスタンスによって使用されているすべてのリソースを解放します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + によって使用されているアンマネージ リソースを解放し、オプションでマネージ リソースも解放します。 + マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バッファー内のデータをすべて基になるストリームにフラッシュし、基になるストリームもフラッシュします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バッファー内のデータをすべて基になるストリームに非同期にフラッシュし、基になるストリームもフラッシュします。 + 非同期の Flush 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間 URI の現在の名前空間スコープで定義された最も近いプリフィックスを返します。 + 一致するプリフィックス。現在のスコープに一致する名前空間 URI が見つからない場合は null。 + 検索対象のプリフィックスを持つ名前空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + この インスタンスを作成するために使用された オブジェクトを取得します。 + このライターのインスタンスを作成するために使用した オブジェクト。このライターが メソッドを使用して作成されなかった場合、このプロパティは null を返します。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスによってオーバーライドされると、 の現在の位置で見つかったすべての属性を書き込みます。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + の現在の位置で見つかったすべての属性を非同期に書き込みます。 + 非同期の WriteAttributes 操作を表すタスク。 + 属性のコピー元の XmlReader。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名と値の属性を書き込みます。 + 属性のローカル名。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性のローカル名。 + 属性に関連付ける名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したプリフィックス、ローカル名、名前空間 URI、および値の属性を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して属性を非同期に書き込みます。 + 非同期の WriteAttributeString 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + 属性の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したバイナリ バイトを Base64 としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを base64 として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBase64 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定されたバイナリ バイトを BinHex としてエンコードし、その結果生成されるテキストを書き込みます。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したバイナリ バイトを BinHex として非同期にエンコードし、その結果生成されるテキストを書き込みます。 + 非同期の WriteBinHex 操作を表すタスク。 + エンコードするバイト配列。 + 書き込むバイトの開始を示すバッファー内の位置。 + 書き込むバイト数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを含む <![CDATA[...]]> ブロックを書き込みます。 + CDATA ブロック内に配置するテキスト。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを格納する <![CDATA[...]]> ブロックを非同期に書き込みます。 + 非同期の WriteCData 操作を表すタスク。 + CDATA ブロック内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した Unicode 文字値の文字エンティティを強制的に生成します。 + 文字エンティティを生成する Unicode 文字。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した Unicode 文字値の文字エンティティを非同期に強制的に生成します。 + 非同期の WriteCharEntity 操作を表すタスク。 + 文字エンティティを生成する Unicode 文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、一度に 1 つのバッファーにテキストを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 一度に 1 つのバッファーにテキストを非同期に書き込みます。 + 非同期の WriteChars 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したテキストを格納している <!--...--> コメントを書き込みます。 + コメント内に配置するテキスト。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストを含むコメント <!--...--> を非同期に書き込みます。 + 非同期の WriteComment 操作を表すタスク。 + コメント内に配置するテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前とオプションの属性を含む DOCTYPE 宣言を書き込みます。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定された名前とオプション属性を使用して DOC 宣言を非同期に書き込みます。 + 非同期の WriteDocType 操作を表すタスク。 + DOCTYPE の名前。これを空にすることはできません。 + null でない場合は、PUBLIC "pubid" "sysid" も書き込みます。 は、指定した引数の値に置き換えられます。 + + が null で が null でない場合は、SYSTEM "sysid" を書き込みます。 は、この引数の値に置き換えられます。 + null でない場合は、[subset] を書き込みます。subset は、この引数の値に置き換えられます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を書き込みます。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、名前空間 URI、および値を使用して要素を非同期に書き込みます。 + 非同期の WriteElementString 操作を表すタスク。 + 要素のプレフィックス。 + 要素のローカル名。 + 要素の名前空間 URI。 + 要素の値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、前の 呼び出しを閉じます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 前の 呼び出しを非同期に閉じます。 + 非同期の WriteEndAttribute 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、開いている任意の要素または属性を閉じ、ライターを Start 状態に戻します。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 開いている要素または属性を非同期に閉じ、ライターを Start 状態に戻します。 + 非同期の WriteEndDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、&name; などのエンティティ参照を書き込みます。 + エンティティ参照の名前。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + エンティティ参照を &name; として非同期的に書き込みます。 + 非同期の WriteEntityRef 操作を表すタスク。 + エンティティ参照の名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、1 つの要素を閉じ、対応する名前空間スコープをポップします。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 1 つの要素を非同期に閉じ、対応する名前空間スコープをポップします。 + 非同期の WriteFullEndElement 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であるようにします。 + 書き込む名前。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な名前であることを確認し、それを非同期に書き込みます。 + 非同期の WriteName 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定した名前を書き込み、その名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であるようにします。 + 書き込む名前。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した名前が W3C 勧告『XML 1.0』(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) に準拠した有効な NmToken であることを確認し、それを非同期に書き込みます。 + 非同期の WriteNmToken 操作を表すタスク。 + 書き込む名前。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターにコピーし、リーダーを次の兄弟の開始位置に移動します。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、リーダーのデータをすべてライターに非同期にコピーし、リーダーを次の兄弟の開始位置に移動します。 + 非同期の WriteNode 操作を表すタスク。 + 読み取り元の 。 + XmlReader の既定の属性をコピーする場合は true。それ以外の場合は false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、<?name text?> など、名前とテキストの間に空白が入った処理命令を書き込みます。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前とテキストの間にスペースがある処理命令を、次のように非同期的に書き込みます: <?name text?>。 + 非同期の WriteProcessingInstruction 操作を表すタスク。 + 処理命令の名前。 + 処理命令に含めるテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、名前空間の限定名を書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 書き込むローカル名。 + 名前の名前空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 名前空間の修飾名を非同期に書き込みます。このメソッドは、指定した名前空間のスコープ内にあるプレフィックスを検索します。 + 非同期の WriteQualifiedName 操作を表すタスク。 + 書き込むローカル名。 + 名前の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、手動で文字バッファーから生のマークアップを書き込みます。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、手動で文字列から生のマークアップを書き込みます。 + 書き込むテキストを格納している文字列。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 文字バッファーから手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字配列。 + 書き込むテキストの開始を示すバッファー内の位置。 + 書き込む文字数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 文字列から手動で生のマークアップを非同期に書き込みます。 + 非同期の WriteRaw 操作を表すタスク。 + 書き込むテキストを格納している文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 指定されたローカル名を使用して属性の開始を書き込みます。 + 属性のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたローカル名および名前空間 URI を使用して属性の開始を書き込みます。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定されたプリフィックス、ローカル名、および名前空間 URI を使用して属性の開始を書き込みます。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定されたプレフィックス、ローカル名、および名前空間 URI を使用して属性の開始を非同期に書き込みます。 + 非同期の WriteStartAttribute 操作を表すタスク。 + 属性の名前空間プレフィックス。 + 属性のローカル名。 + 属性の名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、バージョン "1.0" の XML 宣言とスタンドアロン属性を書き込みます。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + バージョン "1.0" で XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + バージョン "1.0" とスタントアロン属性を使用して XML 宣言を非同期に書き込みます。 + 非同期の WriteStartDocument 操作を表すタスク。 + true の場合は "standalone=yes"、false の場合は "standalone=no" を書き込みます。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、指定したローカル名の開始タグを書き込みます。 + 要素のローカル名。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間に関連付けます。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。この名前空間が既にスコープ内にあり、関連付けられたプリフィックスを持つ場合、ライターは、そのプリフィックスも自動的に書き込みます。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した開始タグを書き込み、指定した名前空間とプリフィックスに関連付けます。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した開始タグを非同期に書き込み、指定した名前空間とプレフィックスに関連付けます。 + 非同期の WriteStartElement 操作を表すタスク。 + 要素の名前空間プリフィックス。 + 要素のローカル名。 + 要素に関連付ける名前空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、ライターの状態を取得します。 + + 値のいずれか。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定したテキスト内容を書き込みます。 + 書き込むテキスト。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定したテキストの内容を非同期に書き込みます。 + 非同期の WriteString 操作を表すタスク。 + 書き込むテキスト。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、サロゲート文字ペアのサロゲート文字エンティティを生成し、書き込みます。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + サロゲート文字ペアのサロゲート文字エンティティを非同期に生成して書き込みます。 + 非同期の WriteSurrogateCharEntity 操作を表すタスク。 + 下位サロゲート。この値は、0xDC00 から 0xDFFF の範囲内にある必要があります。 + 上位サロゲート。この値は、0xD800 から 0xDBFF の範囲内にある必要があります。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + オブジェクト値を書き込みます。 + 書き込むオブジェクト値。メモ   .NET Framework 3.5 のリリースでは、このメソッドは をパラメーターとして受け入れます。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 単精度浮動小数点数を書き込みます。 + 書き込む単精度浮動小数点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 値を書き込みます。 + 書き込む 値。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、指定した空白を書き込みます。 + 空白文字の文字列。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定した空白を非同期に書き込みます。 + 非同期の WriteWhitespace 操作を表すタスク。 + 空白文字の文字列。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 派生クラスでオーバーライドされると、現在の xml:lang スコープを取得します。 + 現在の xml:lang スコープ。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 派生クラスでオーバーライドされると、現在の xml:space スコープを表す を取得します。 + 現在の xml:space スコープを表す XmlSpace。値説明 Nonexml:space スコープが存在しない場合は、これが既定値になります。Default現在のスコープは、xml:space="default" です。Preserve現在のスコープは、xml:space="preserve" です。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + メソッドで作成された オブジェクトでサポートする一連の機能を指定します。 + + + + クラスの新しいインスタンスを初期化します。 + + + 非同期 メソッドを の特定のインスタンスで使用できるかどうかを示す値を取得または設定します。 + 非同期メソッドを使用できる場合は true。それ以外の場合は false。 + + + ドキュメント内のすべての文字が W3C の「XML 1.0 Recommendation (XML 1.0 勧告)」の「2.2 Characters (2.2 文字)」に準拠していることを XML ライターがチェックする必要があるかどうかを示す値を取得または設定します。 + 文字をチェックする場合は true。それ以外の場合は false。既定値は、true です。 + + + + インスタンスのコピーを作成します。 + 複製された オブジェクト。 + + + + を呼び出したときに、 が、基になるストリームまたは も閉じる必要があるかどうかを示す値を取得または設定します。 + 基になるストリームまたは も閉じる場合は true。それ以外の場合は false。既定値は、false です。 + + + XML ライターが XML 出力をチェックする準拠のレベルを取得または設定します。 + 準拠のレベル (ドキュメント、フラグメント、自動検出) を指定する列挙値のいずれか。既定値は、 です。 + + + 使用するテキスト エンコーディングの種類を取得または設定します。 + 使用するテキスト エンコーディング。既定値は、Encoding.UTF8 です。 + + + 要素にインデントを設定するかどうかを示す値を取得または設定します。 + 各要素を新しい行に書き込んでインデントを設定する場合は true、それ以外の場合は false。既定値は、false です。 + + + インデント処理を行うときに使用する文字列を取得または設定します。この設定は、 プロパティが true に設定されている場合に使用します。 + インデント処理を行うときに使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は 2 つのスペースです。 + The value assigned to the is null. + + + XML コンテンツの書き込み時に、重複する名前空間宣言を で削除するかどうかを示す値を取得または設定します。既定の動作では、ライターの名前空間リゾルバーに存在するすべての名前空間宣言がライターによって出力されます。 + + で重複する名前空間宣言を削除するかどうかを指定するための 列挙体。 + + + 改行に使用する文字列を取得または設定します。 + 改行に使用する文字列。これには任意の文字列値を設定できます。ただし、有効な XML にするには、空白、タブ、復帰、ライン フィードなどの有効な空白文字だけを指定する必要があります。既定値は \r\n (復帰、改行) です。 + The value assigned to the is null. + + + 出力内の改行を正規化するかどうかを示す値を取得または設定します。 + + 値のいずれか。既定値は、 です。 + + + 新しい行に属性を書き込むかどうかを示す値を取得または設定します。 + 個々の行に属性を書き込む場合に true、それ以外の場合は false。既定値は、false です。メモ プロパティ値が false の場合、この設定は無効です。 を true に設定すると、各属性は、新しい行にインデントを 1 レベル増やして記述されます。 + + + XML 宣言を省略するかどうかを示す値を取得または設定します。 + XML 宣言を省略する場合は true、それ以外の場合は false。既定値は false で、XML 宣言が書き込まれます。 + + + 設定クラスのメンバーを既定値にリセットします。 + + + + メソッドが呼び出されるときに がすべての閉じられていない要素タグに終了タグを追加するかどうかを示す値を取得または設定します。 + 閉じられていない要素タグがすべて閉じられる場合は true。それ以外の場合は false。既定値は true です。 + + + W3C (World Wide Web Consortium) の『XML Schema Part 1: Structures』および『XML Schema Part 2: Datatypes』の仕様で指定されている XML スキーマのインメモリ表現です。 + + + 属性または要素を、名前空間プレフィックスで修飾する必要があるかどうかを示します。 + + + スキーマには、要素および属性の形式が指定されません。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要があります。 + + + 要素および属性は、名前空間プレフィックスで修飾する必要はありません。 + + + XML シリアル化および逆シリアル化のカスタム書式を提供します。 + + + このメソッドは予約されているため、使用できません。IXmlSerializable インターフェイスを実装する場合、このメソッドから null (Visual Basic では Nothing) を返す必要があります。また、カスタム スキーマの指定が要求されている場合は、このクラスに を適用します。 + + メソッドによって生成され メソッドによって処理されるオブジェクトの XML 表現を記述する + + + オブジェクトの XML 表現からオブジェクトを生成します。 + オブジェクトの逆シリアル化元である ストリーム。 + + + オブジェクトを XML 表現に変換します。 + オブジェクトのシリアル化先の ストリーム。 + + + 型に適用された場合、XML スキーマを返す型の静的メソッドの名前と、型のシリアル化を制御する (または匿名型の ) を格納します。 + + + 型の XML スキーマを提供する静的メソッドの名前を受け取って、 クラスの新しいインスタンスを初期化します。 + 実装する必要がある静的メソッドの名前。 + + + ターゲット クラスがワイルドカードかどうか、またはクラスのスキーマに xs:any 要素のみが含まれているかどうかを判断する値を取得または設定します。 + クラスがワイルドカードの場合、またはスキーマに xs:any 要素のみが含まれている場合は true。それ以外の場合は false。 + + + 型の XML スキーマおよびその XML スキーマ データ型の名前を提供する静的メソッドの名前を取得します。 + XML スキーマを返すために XML インフラストラクチャによって呼び出されるメソッドの名前。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..9be6f63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml @@ -0,0 +1,2766 @@ + + + + System.Xml.ReaderWriter + + + + 만들어진 개체에서 수행할 입력 또는 출력 검사 수준을 지정합니다. + + + + 또는 개체가 문서 또는 조각 검사의 수행 여부를 자동으로 확인하고 적합한 검사를 수행합니다.다른 또는 개체를 래핑하면 외부 개체는 추가 규칙 검사를 수행하지 않습니다.내부 개체에서만 규칙 검사를 수행합니다.규격 수준을 결정하는 데 대한 자세한 내용은 속성을 참조하세요. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 1.0 문서에 대한 규칙을 준수합니다. + + + XML 데이터는 W3C가 정의한 대로 올바른 형식의 XML 조각입니다. + + + DTD 처리 옵션을 지정합니다. 열거형은 클래스에서 사용됩니다. + + + DOCTYPE 요소가 무시됩니다.DTD 처리가 수행되지 않습니다. + + + DTD가 발견되면 DTD가 금지되었다는 메시지와 함께 이 throw되도록 지정합니다.이것은 기본적인 동작입니다. + + + 클래스에서 줄과 위치 정보를 반환할 수 있는 인터페이스를 제공합니다. + + + 클래스에서 줄 정보를 반환할 수 있는지 여부를 나타내는 값을 가져옵니다. + + 을 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 현재 줄 번호를 가져옵니다. + 현재 줄 번호이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 현재 줄 위치를 가져옵니다. + 현재 줄 위치이거나, 예를 들어 에서 false를 반환하는 경우와 같이 줄 정보가 없는 경우에는 0입니다. + + + 접두사 및 네임스페이스 매핑 집합에 읽기 전용으로 액세스하는 데 사용됩니다. + + + 현재 범위 내에 정의된 접두사-네임스페이스 매핑 컬렉션을 가져옵니다. + 현재 범위 내의 네임스페이스가 포함된 입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 값입니다. + + + 지정된 접두사에 매핑된 네임스페이스 URI를 가져옵니다. + 접두사에 매핑된 네임스페이스 URI이거나, 접두사가 네임스페이스 URI에 매핑되지 않은 경우 null입니다. + 찾을 네임스페이스 URI의 접두사입니다. + + + 지정된 네임스페이스 URI에 매핑된 접두사를 가져옵니다. + 네임스페이스 URI에 매핑된 접두사이거나, 네임스페이스 URI가 접두사에 매핑되지 않은 경우 null입니다. + 찾을 접두사의 네임스페이스 URI입니다. + + + + 에서 중복된 네임스페이스 선언을 제거할지 여부를 지정합니다. + + + 중복된 네임스페이스 선언을 제거하지 않도록 지정합니다. + + + 중복된 네임스페이스 선언을 제거하도록 지정합니다.중복된 네임스페이스를 제거하려면 접두사와 네임스페이스가 일치해야 합니다. + + + 단일 스레드 을 구현합니다. + + + NameTable 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다.이 0이면 String.Empty가 반환됩니다. + 추가할 문자열이 포함된 문자 배열입니다. + 문자열의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 문자열에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 문자열을 원자화하여 이를 NameTable에 추가합니다. + 원자화된 문자열이거나 NameTable에 이미 있을 경우 기존 문자열입니다. + 추가할 문자열입니다. + + 가 null입니다. + + + 주어진 배열의 지정된 문자 범위와 같은 문자가 포함된 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.이 0이면 String.Empty가 반환됩니다. + 찾을 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 >= .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 지정된 값을 가진 원자화된 문자열을 가져옵니다. + 원자화된 문자열이거나 문자열이 이미 원자화되지 않은 경우에는 null입니다. + 찾을 이름입니다. + + 가 null입니다. + + + 줄 바꿈을 처리하는 방법을 지정합니다. + + + 새 줄 문자를 엔터티화합니다.이 설정을 사용하면 정규화 에서 출력을 읽을 경우 모든 문자가 유지됩니다. + + + 새 줄 문자를 변경하지 않습니다.이 경우에는 입력과 출력이 같습니다. + + + + 속성에 지정된 문자와 일치하도록 새 줄 문자를 바꿉니다. + + + 판독기의 상태를 지정합니다. + + + + 메서드가 호출되었습니다. + + + 파일 끝에 성공적으로 도달했습니다. + + + 읽기 작업을 계속할 수 없는 오류가 발생했습니다. + + + Read 메서드가 호출되지 않았습니다. + + + Read 메서드가 호출되었습니다.판독기에 메서드가 추가로 호출될 수 있습니다. + + + + 의 상태를 지정합니다. + + + 특성 값을 쓰고 있음을 나타냅니다. + + + + 메서드가 이미 호출되었음을 나타냅니다. + + + 요소 내용을 쓰고 있음을 나타냅니다. + + + 요소 시작 태그를 쓰고 있음을 나타냅니다. + + + 예외가 throw되어 가 잘못된 상태에 있습니다. 메서드를 호출하여 상태로 설정할 수 있습니다.이외의 경우 메서드를 호출하면 이 throw됩니다. + + + 프롤로그를 쓰고 있음을 나타냅니다. + + + Write 메서드가 아직 호출되지 않았음을 나타냅니다. + + + XML 이름을 인코딩 및 디코딩하고 공용 언어 런타임 형식과 XSD(XML 스키마 정의) 언어 형식 사이의 변환 메서드를 제공합니다.데이터 형식을 변환할 때 반환되는 값은 로캘과 무관합니다. + + + 이름을 디코딩합니다.이 메서드는 메서드 및 메서드와 반대로 수행합니다. + 디코딩한 이름입니다. + 변환될 이름입니다. + + + 이름을 올바른 XML 로컬 이름으로 변환합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + 이름을 올바른 XML 이름으로 변환합니다. + 잘못된 문자가 이스케이프 문자열로 바뀐 이름을 반환합니다. + 변환할 이름입니다. + + + XML 사양에 따라 올바른 이름인지 확인합니다. + 인코딩된 이름입니다. + 인코딩할 이름입니다. + + + + 을 해당하는 값으로 변환합니다. + Boolean 값, 즉 true 또는 false입니다. + 변환할 문자열입니다. + + is null. + + does not represent a Boolean value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Byte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 단일 문자를 나타내는 Char입니다. + 변환할 단일 문자가 포함된 문자열입니다. + The value of the parameter is null. + The parameter contains more than one character. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + UTC(Coordinated Universal Time) 날짜를 현지 시간으로 변환할지 아니면 UTC로 유지할지 지정하는 값 중 하나입니다. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다.참고   이 문자열은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분을 준수해야 합니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이 형식을 사용하여 문자열 의 유효성을 검사합니다. + + is null. + + or is an empty string or is not in the specified format. + + + 제공된 을 해당 으로 변환합니다. + 제공된 문자열에 해당하는 입니다. + 변환할 문자열입니다. + + 를 변환할 수 있는 형식의 배열입니다.의 각 형식은 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. 이러한 형식 중 하나를 사용하여 문자열 의 유효성을 검사합니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Decimal 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Double 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Guid 값입니다. + 변환할 문자열입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Int64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 SByte 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 Single 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 으로 변환합니다. + Boolean에 대한 문자열 표현, 즉 "true" 또는 "false"입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Byte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Char의 문자열 표현입니다. + 변환할 값입니다. + + + 지정된 를 사용하여 으로 변환합니다. + + 에 해당하는 값입니다. + 변환할 값입니다. + + 값 처리 방법을 지정하는 값 중 하나입니다. + The value is not valid. + The or value is null. + + + 제공된 으로 변환합니다. + 제공된 표현입니다. + 변환될 입니다. + + + 제공된 을 지정된 형식의 으로 변환합니다. + 제공된 을 지정된 형식으로 나타낸 입니다. + 변환될 입니다. + + 를 변환할 대상 형식입니다.형식 매개 변수는 W3C 권장 사항 중 XML dateTime 형식에 대한 부분이 될 수 있습니다.자세한 내용은 http://www.w3.org/TR/xmlschema-2/#dateTime을 참조하십시오. + + + + 으로 변환합니다. + Decimal의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Double의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Guid의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Int64의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + SByte의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + Single의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + TimeSpan의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt16의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt32의 문자열 표현입니다. + 변환할 값입니다. + + + + 으로 변환합니다. + UInt64의 문자열 표현입니다. + 변환할 값입니다. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 TimeSpan 값입니다. + 변환할 문자열입니다.형식 문자열은 기간에 대한 W3C XML Schema Part 2: Datatypes 권장 사항을 준수해야 합니다. + + is not in correct format to represent a TimeSpan value. + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt16 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt32 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + + 을 해당하는 값으로 변환합니다. + 문자열에 해당하는 UInt64 값입니다. + 변환할 문자열입니다. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 해당 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 이름인지 확인합니다. + 이름입니다. 단, 이름이 올바른 XML 이름인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is not a valid XML name. + + is null or String.Empty. + + + 이름이 W3C Extended Markup Language 권장 사항에 따라 올바른 NCName인지 확인합니다.NCName은 콜론이 포함될 수 없는 이름입니다. + 이름입니다. 단, 이름이 올바른 NCName인 경우에 한합니다. + 유효성을 확인할 이름입니다. + + is null or String.Empty. + + is not a valid non-colon name. + + + W3C XML Schema Part2: Datatypes 권장 사항을 기준으로 문자열이 올바른 NMTOKEN인지 확인합니다. + 이름 토큰입니다. 단, 문자열이 올바른 NMTOKEN인 경우에 한합니다. + 확인할 문자열입니다. + The string is not a valid name token. + + is null. + + + 문자열 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열 인스턴스를 반환합니다. + 인수에 있는 모든 문자가 올바른 공용 ID 문자이면 전달된 문자열을 반환합니다. + 유효성을 검사할 ID가 포함된 입니다. + + + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환합니다. + 문자열 인수에 있는 모든 문자가 올바른 공백 문자이면 전달된 문자열 인스턴스를 반환하고, 그렇지 않으면 null을 반환합니다. + 확인할 입니다. + + + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 문자열 인수의 모든 문자와 서로게이트 쌍 문자가 올바른 XML 문자인 경우 전달된 문자열을 반환하고 그렇지 않으면 첫 번째 잘못된 문자에 대한 정보로 XmlException을 throw합니다. + 확인할 문자가 포함된 입니다. + + + 문자열과 사이에 변환할 때 시간 값을 처리하는 방법을 지정합니다. + + + 현지 시간으로 처리합니다. 개체가 UTC(Coordinated Universal Time)를 나타내면 값을 현지 시간으로 변환합니다. + + + 변환할 때 표준 시간대 정보를 유지합니다. + + + + 을 문자열로 변환하는 경우 값을 현지 시간으로 처리합니다. + + + UTC로 처리합니다. 개체가 현지 시간을 나타내면 값을 UTC로 변환합니다. + + + 마지막 예외에 대한 자세한 정보를 반환합니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 오류 메시지를 사용하여 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + + + XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 조건에 대한 설명입니다. + XmlException을 throw한 입니다.이 값은 null일 수 있습니다. + + + 지정된 메시지, 내부 예외, 줄 번호 및 줄 위치를 갖는 XmlException 클래스의 새 인스턴스를 초기화합니다. + 오류 설명입니다. + 현재 예외의 원인이 되는 예외입니다.이 값은 null일 수 있습니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 오류가 발생한 곳을 나타내는 줄 번호를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 번호입니다. + + + 오류가 발생한 곳을 나타내는 줄 위치를 가져옵니다. + 오류가 발생한 곳을 나타내는 줄 위치입니다. + + + 현재 예외를 설명하는 메시지를 가져옵니다. + 예외에 대한 이유를 설명하는 오류 메시지입니다. + + + 컬렉션에 대한 네임스페이스를 확인, 추가 및 제거하고 이 네임스페이스에 대한 범위 관리를 제공합니다. + + + 지정된 을 사용하여 클래스의 새 인스턴스를 초기화합니다. + 사용할 입니다. + null is passed to the constructor + + + 지정된 네임스페이스를 컬렉션에 추가합니다. + 추가할 네임스페이스와 관련된 접두사입니다.기본 네임스페이스를 추가하려면 String.Empty를 사용합니다.참고XPath(XML Path Language) 식에서 네임스페이스를 확인하는 데 를 사용할 경우에는 접두사를 지정해야 합니다.XPath 식에 접두사가 없으면 네임스페이스 URI(Uniform Resource Identifier)를 빈 네임스페이스로 간주합니다.XPath 식 및 에 대한 자세한 내용은 메서드를 참조하세요. + 추가할 네임스페이스입니다. + The value for is "xml" or "xmlns". + The value for or is null. + + + 기본 네임스페이스의 네임스페이스 URI를 가져옵니다. + 기본 네임스페이스의 네임스페이스 URI를 반환하거나, 기본 네임스페이스가 없을 경우에는 String.Empty를 반환합니다. + + + + 에서 네임스페이스를 반복하는 데 사용할 열거자를 반환합니다. + + 가 저장하는 접두사가 포함된 입니다. + + + 현재 범위 내에 있는 네임스페이스를 열거하는 데 사용할 수 있는 접두사가 붙은 네임스페이스 이름 컬렉션을 가져옵니다. + 현재 범위 내에 있는 네임스페이스 및 접두사 쌍 컬렉션입니다. + 반환할 네임스페이스 노드의 형식을 지정하는 열거형 값입니다. + + + 제공한 접두사에 현재 푸시된 범위에 정의한 네임스페이스가 있는지를 나타내는 값을 가져옵니다. + 정의된 네임스페이스가 있으면 true이고, 그렇지 않으면 false입니다. + 찾으려는 네임스페이스의 접두사입니다. + + + 지정된 접두사의 네임스페이스 URI를 가져옵니다. + + 의 네임스페이스 URI를 반환하거나, 매핑된 네임스페이스가 없을 경우에는 null을 반환합니다.반환되는 문자열은 원자화됩니다.원자화된 문자열에 대한 자세한 내용은 클래스를 참조하세요. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 String.Empty를 전달합니다. + + + 지정된 네임스페이스 URI에 대해 선언한 접두사를 찾습니다. + 일치하는 접두사입니다.매핑된 접두사가 없으면 메서드에서 String.Empty를 반환합니다.null 값이 제공되면 null이 반환됩니다. + 접두사에 대해 확인할 네임스페이스입니다. + + + 이 개체와 연결된 을 가져옵니다. + 이 개체에서 사용한 입니다. + + + 스택에서 네임스페이스 범위를 팝합니다. + 스택에 네임스페이스 범위가 남아 있으면 true이고, 팝할 네임스페이스가 없으면 false입니다. + + + 스택에 네임스페이스 범위를 푸시합니다. + + + 지정된 접두사의 지정된 네임스페이스를 제거합니다. + 네임스페이스의 접두사입니다. + 지정된 접두사의 제거할 네임스페이스입니다.네임스페이스는 현재 네임스페이스 범위에서 제거됩니다.현재 범위를 벗어난 네임스페이스는 무시됩니다. + The value of or is null. + + + 네임스페이스 범위를 정의합니다. + + + 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.여기에는 항상 암시적으로 선언되는 xmlns:xml 네임스페이스가 포함됩니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 항상 암시적으로 선언되는 xmlns:xml 네임스페이스를 제외하고 현재 노드의 범위에서 정의된 모든 네임스페이스입니다.반환되는 네임스페이스의 순서는 정의되지 않습니다. + + + 현재 노드에서 로컬로 정의된 모든 네임스페이스입니다. + + + 원자화된 문자열 개체의 테이블입니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다.길이가 0이면 String.Empty가 반환됩니다. + 추가할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 인덱스이며 배열에서 0부터 시작합니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정한 문자열을 원자화하여 이를 XmlNameTable에 추가합니다. + 원자화된 새 문자열이거나 이미 문자열이 존재하는 경우 기존 문자열입니다. + 추가할 이름입니다. + + 가 null입니다. + + + 파생 클래스에서 재정의할 경우 지정된 배열에 있는 지정된 범위의 문자와 같은 문자를 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다.가 0이면 String.Empty가 반환됩니다. + 검색할 이름이 포함된 문자 배열입니다. + 이름의 첫 번째 문자를 지정하는 배열의 0부터 시작하는 인덱스입니다. + 이름에 있는 문자의 수입니다. + 0 > 또는 >= .Length 또는 > .Length 위의 경우 =0이면 예외가 throw되지 않습니다. + + < 0 + + + 파생 클래스에서 재정의할 경우 지정된 문자열과 같은 값을 포함하는 원자화된 문자열을 가져옵니다. + 문자열이 이미 원자화되지 않은 경우 원자화된 문자열 또는 null입니다. + 검색할 이름입니다. + + 가 null입니다. + + + 노드 형식을 지정합니다. + + + 특성입니다(예를 들어, id='123'). + + + CDATA 섹션입니다(예를 들어, <![CDATA[my escaped text]]>). + + + 주석입니다(예를 들어, <!-- my comment -->). + + + 문서 트리의 루트인 문서 개체를 사용하여 전체 XML 문서에 액세스할 수 있습니다. + + + 문서 단편입니다. + + + 다음 태그를 사용한 문서 형식 선언입니다(예를 들어, <!DOCTYPE...>). + + + 요소입니다(예를 들어, <item>). + + + 끝 요소 태그입니다(예를 들어, </item>). + + + + 의 호출 결과 XmlReader가 대체 엔터티 끝에 도달했을 때 반환됩니다. + + + 엔터티 선업입니다(예를 들어, <!ENTITY...>). + + + 엔터티 참조입니다(예를 들어, &num;). + + + Read 메서드가 호출되지 않은 경우 에 의해 반환됩니다. + + + 문서 형식 선언 표기법입니다(예를 들어, <!NOTATION...>). + + + 처리 명령입니다(예를 들어, <?pi test?>). + + + 복합 콘텐츠 모델에서 태그들 사이의 공백 또는 xml:space="preserve" 범위 내의 공백입니다. + + + 노드의 텍스트 내용입니다. + + + 태그들 사이의 공백입니다. + + + XML 선언입니다(예를 들어, <?xml version='1.0'?>). + + + + 에서 XML 조각을 구문 분석할 때 필요한 모든 컨텍스트 정보를 제공합니다. + + + 지정된 , , 기본 URI, xml:lang, xml:space 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD 하위 집합은 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , 기본 URI, xml:lang, xml:space, 인코딩 및 문서 형식 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + 문서 형식 선언의 이름입니다. + public 식별자입니다. + 시스템 식별자입니다. + 내부 DTD 하위집합입니다.DTD는 개체 확인에 사용되며 문서 유효성 검사에는 사용되지 않습니다. + XML 조각의 기본 URI(로드된 조각이 저장된 위치)입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang 및 xml:space 값을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 지정된 , , xml:lang, xml:space 및 인코딩을 사용하여 XmlParserContext 클래스의 새 인스턴스를 초기화합니다. + 문자열을 원자화하는 데 사용할 입니다.null인 경우 을 생성할 때 사용한 이름 테이블이 대신 사용됩니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + 네임스페이스 정보를 찾는 데 사용할 또는 null입니다. + xml:lang 범위입니다. + xml:space 범위를 나타내는 값입니다. + 인코딩 설정을 표시하는 개체입니다. + + 을 만드는 데 사용한 XmlNameTable과 다른 경우 + + + 기본URI를 가져오거나 설정합니다. + DTD 파일 확인에 사용할 기본 URI입니다. + + + 문서 형식 선언의 이름을 가져오거나 설정합니다. + 문서 형식 선언의 이름입니다. + + + 인코딩 형식을 가져오거나 설정합니다. + 인코딩 형식을 나타내는 개체입니다. + + + 내부 DTD 하위 집합을 가져오거나 설정합니다. + 내부 DTD 하위집합입니다.예를 들어, 이 속성은 대괄호 <!DOCTYPE doc [...]> 사이에 있는 모든 것을 반환합니다. + + + + 를 가져오거나 설정합니다. + XmlNamespaceManager + + + 문자열을 원자화할 때 사용하는 을 가져옵니다.원자화된 문자열에 대한 자세한 내용은 을 참조하십시오. + XmlNameTable + + + public 식별자를 가져오거나 설정합니다. + public 식별자입니다. + + + 시스템 식별자를 가져오거나 설정합니다. + 시스템 식별자입니다. + + + 현재 xml:lang 범위를 가져오거나 설정합니다. + 현재 xml:lang 범위입니다.범위에 xml:lang이 없으면 String.Empty가 반환됩니다. + + + 현재 xml:space 범위를 가져오거나 설정합니다. + xml:space 범위를 나타내는 값입니다. + + + 정규화된 XML 이름을 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 이름을 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + + 지정된 이름과 네임스페이스를 사용하여 클래스의 새 인스턴스를 초기화합니다. + + 개체의 이름으로 사용할 로컬 이름입니다. + + 개체의 네임스페이스입니다. + + + 을 제공합니다. + + + 지정된 개체가 현재 개체와 같은지 여부를 확인합니다. + 두 개체가 같은 인스턴스 개체이면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + + + + 에 대한 해시 코드를 반환합니다. + 이 개체에 대한 해시 코드입니다. + + + + 가 비어 있는지 여부를 나타내는 값을 가져옵니다. + 이름과 네임스페이스가 빈 문자열이면 true이고, 그렇지 않으면 false입니다. + + + + 의 정규화된 이름에 대한 문자열 표현을 가져옵니다. + 정규화된 이름의 문자열 표현이거나, 개체에 정의된 이름이 없는 경우 String.Empty입니다. + + + + 의 네임스페이스에 대한 문자열 표현을 가져옵니다. + 네임스페이스의 문자열 표현이거나, 개체에 정의된 네임스페이스가 없는 경우 String.Empty입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 같으면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + 개체를 비교합니다. + 두 개체의 이름과 네임스페이스 값이 다르면 true이고, 그렇지 않으면 false입니다. + 비교할 입니다. + 비교할 입니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + + + + 의 문자열 값을 반환합니다. + namespace:localname 형식의 문자열 값입니다.개체에 정의된 네임스페이스가 없으면 이 메서드는 로컬 이름만 반환합니다. + 개체의 이름입니다. + 개체의 네임스페이스입니다. + + + 빠르고, 캐시되지 않으며 앞으로만 이동 가능한 XML 데이터 액세스를 제공하는 판독기를 나타냅니다.이 형식에 대 한.NET Framework 소스 코드를 찾아보려면 참조는 참조 원본. + + + XmlReader 클래스의 새 인스턴스를 초기화합니다. + + + 파생 클래스에서 재정의되면 현재 노드에 포함된 특성 수를 가져옵니다. + 현재 노드에 포함된 특성의 수입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 기본 URI를 가져옵니다. + 현재 노드의 기본 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 가 이진 콘텐츠 읽기 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + 이진 콘텐츠 읽기 메서드를 구현하면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 구현하는지 여부를 나타내는 값을 가져옵니다. + true if the implements the method; otherwise false. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 판독기가 엔터티를 구문 분석하고 확인할 수 있는지를 나타내는 값을 가져옵니다. + 판독기가 엔터티를 구문 분석하고 확인할 수 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 새로 만듭니다 인스턴스에서 지정 된 스트림에 사용 하 여 기본 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + + + 새로 만듭니다 인스턴스에 지정 된 스트림 및 설정을 사용 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다.는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 인스턴스에서 지정된 된 스트림, 설정 및 컨텍스트 정보를 사용 하 여 구문 분석 합니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터가 포함된 스트림입니다. 는 스트림의 첫 번째 바이트를 검색하여 바이트 순서 표시나 다른 인코딩 기호를 찾습니다.인코딩이 확인되면 이 인코딩을 사용하여 스트림을 읽고, 입력을 문자 스트림(유니코드)으로 구문 분석하는 작업이 수행됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + + 값이 null인 경우 + + + 새로 만듭니다 설정과 지정 된 텍스트 판독기를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 .이 값은 null일 수 있습니다. + + 값이 null인 경우 + + + 새로 만듭니다 구문 분석에 대 한 지정한 텍스트 판독기, 설정 및 컨텍스트 정보를 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 읽어올 텍스트 판독기입니다.텍스트 판독기는 유니코드 문자 스트림을 반환하므로 XML 선언에 지정된 인코딩은 XML 판독기가 데이터 스트림을 디코딩하는 데 사용되지 않습니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + XML 조각을 구문 분석하는 데 필요한 컨텍스트 정보입니다.컨텍스트 정보에는 사용할 , 인코딩, 네임스페이스 범위, 현재 xml:lang과 xml:space 범위, 기본 URI 및 문서 종류 정의가 포함될 수 있습니다.이 값은 null일 수 있습니다. + + 값이 null인 경우 + + 속성 모두에 값이 포함된 경우.이러한 NameTable 속성 중 하나만 설정하여 사용할 수 있습니다. + + + 지정된 URI를 사용하여 새 인스턴스를 만듭니다. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 클래스는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다. + + 값이 null인 경우 + XML 데이터의 위치에 액세스할 수 있는 충분한 권한이 에 없는 경우 + URI가 나타내는 파일이 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 지정 된 URI 및 설정을 사용 하 여 인스턴스. + 스트림의 XML 데이터를 읽는 데 사용되는 개체입니다. + XML 데이터를 포함하는 파일의 URI입니다. 개체에 지정된 개체는 경로를 정규 데이터 표현으로 변환하는 데 사용됩니다.가 null이면 새 개체가 사용됩니다. + 새 설정을 인스턴스.이 값은 null일 수 있습니다. + + 값이 null인 경우 + URI로 지정된 파일을 찾을 수 없는 경우 + Windows 스토어 앱용 .NET 또는 이식 가능한 클래스 라이브러리에서 대신 기본 클래스 예외 를 catch합니다.URI 형식이 잘못된 경우 + + + 새로 만듭니다 설정과 지정 된 XML 판독기를 사용 하 여 인스턴스. + 래핑된 개체 주위 지정 된 개체입니다. + 내부 XML 판독기로 사용할 개체입니다. + 새 설정을 인스턴스. 개체의 규칙 수준은 내부 판독기의 규칙 수준과 일치하거나 로 설정되어야 합니다. + + 값이 null인 경우 + + 개체에 지정된 규칙 수준이 내부 판독기의 규칙 수준과 일치하지 않는 경우또는내부 의 상태가 또는 인 경우 + + + 파생 클래스에서 재정의되면 XML 문서에서 현재 노드의 수준을 가져옵니다. + XML 문서의 현재 노드 수준입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 스트림의 끝에 배치되었는지를 나타내는 값을 가져옵니다. + 판독기가 스트림의 맨 끝에 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 인덱스입니다.인덱스는 0부터 시작합니다.첫 번째 특성의 인덱스는 0입니다. + + 이 범위에서 벗어난 경우.음수가 아니어야 하며 특성 컬렉션의 크기보다 작아야합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.지정된 특성이 없거나 값이 String.Empty이면 null이 반환됩니다.이 메서드는 판독기를 이동하지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + + 가 null인 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 값을 비동기적으로 가져옵니다. + 현재 노드의 값입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드에 특성이 있는지를 나타내는 값을 얻습니다. + 현재 노드에 특성이 있으면 true이고, 그렇지 않으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드에 가 있는지 여부를 나타내는 값을 가져옵니다. + 현재 판독기가 위치한 노드에 Value가 있으면 true이고, 그렇지 않으면 false입니다.false인 경우 노드의 값은 String.Empty입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성인지를 나타내는 값을 가져옵니다. + 현재 노드가 DTD나 스키마에서 정의한 기본값에서 생성된 값을 가진 특성이면 true이고, 특성 값이 명시적으로 설정되었으면 false 입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드가 <MyElement/>와 같은 빈 요소인지 여부를 나타내는 값을 가져옵니다. + 현재 노드가 />로 끝나는 요소(이 XmlNodeType.Element인 경우)이면 true이고, 그렇지 않으면false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 문자열 인수가 유효한 XML 이름인지를 나타내는 값을 반환합니다. + 유효한 이름이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름입니다. + + 값이 null인 경우 + + + 문자열 인수가 유효한 XML 이름 토큰인지를 나타내는 값을 반환합니다. + 유효한 이름 토큰이면 true이고, 그렇지 않으면 false입니다. + 유효성을 검사할 이름 토큰입니다. + + 값이 null인 경우 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 테스트합니다. + + 가 시작 태그나 빈 요소 태그를 찾으면 true이고, XmlNodeType.Element 이외의 노드 형식을 찾으면 false입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이고 Name 속성이 지정된 문자열과 일치하면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소 Name 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 Name 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. + 테스트한 결과 현재 노드가 요소이면 true이고,XmlNodeType.Element 이외의 노드 형식을 찾거나 요소의 LocalName 및 NamespaceURI 속성이 지정된 문자열과 일치하지 않으면 false입니다. + 찾은 요소의 LocalName 속성과 일치하는 문자열입니다. + 찾은 요소의 NamespaceURI 속성과 일치하는 문자열입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성의 값을 가져옵니다. + 지정된 특성의 값을 반환합니다.특성이 없으면 null이 반환됩니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 로컬 이름을 가져옵니다. + 접두사를 제거한 현재 노드의 이름입니다.예를 들어, LocalName은 <bk:book> 요소에 대한 book입니다.이름이 없는 노드 형식(예: Text, Comment 등)의 경우 이 속성은 String.Empty를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 요소의 범위에서 네임스페이스 접두사를 확인합니다. + 접두사가 매핑되는 네임스페이스 URI이거나 일치하는 접두사가 없는 경우 null입니다. + 확인할 네임스페이스 URI의 접두사입니다.기본 네임스페이스와 일치시키려면 빈 문자열을 전달합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성으로 이동합니다. + 특성의 인덱스입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수에 음수 값이 있습니다. + + + 파생 클래스에서 재정의되면 지정된 이 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 파생 클래스에서 재정의되면 지정된 가 있는 특성으로 이동합니다. + 특성이 있으면 true이고, 그렇지 않으면 false입니다.false이면, 판독기의 위치는 변경되지 않습니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 현재 노드가 콘텐츠 노드(공백 없는 텍스트, CDATA, Element, EndElement, EntityReference 또는 EndEntity)인지 여부를 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다.판독기는 ProcessingInstruction, DocumentType, Comment, Whitespace 또는 SignificantWhitespace 같은 형식의 노드를 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드가 콘텐츠 노드인지를 비동기적으로 확인합니다.해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다. + 메서드를 사용하여 찾은 현재 노드의 이거나 판독기가 입력 스트림의 끝에 도달한 경우에는 XmlNodeType.None입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 특성 노드를 포함하는 요소로 이동합니다. + 판독기가 특성에 있으면(특성이 있는 요소로 판독기가 이동하면) true이고, 판독기가 특성에 없으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 첫 번째 특성으로 이동합니다. + 특성이 있으면(판독기가 첫 번째 특성으로 이동하면) true이고, 그렇지 않으면(판독기의 위치가 바뀌지 않으면) false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 다음 특성으로 이동합니다. + 다음 특성이 있으면 true이고, 더 이상 특성이 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 정규화된 이름을 가져옵니다. + 현재 노드의 정규화된 이름입니다.예를 들어, Name은 <bk:book> 요소에 대한 bk:book입니다.반환되는 이름은 노드의 에 따라 달라집니다.다음 노드 형식은 나열된 값을 반환합니다.기타 모든 노드 형식은 빈 문자열을 반환합니다.노드 형식 이름 Attribute특성의 이름입니다. DocumentType문서 형식 이름입니다. Element태그 이름입니다. EntityReference참조된 엔터티의 이름입니다. ProcessingInstruction처리 명령의 대상입니다. XmlDeclaration리터럴 문자열 xml입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기가 배치된 노드의 네임스페이스 URI를 W3C 네임스페이스 사양에 정의된 대로 가져옵니다. + 현재 노드의 네임스페이스 URI이거나 빈 문자열입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 이 구현과 관련된 을 가져옵니다. + 노드 내에 있는 문자열의 원자화된 버전을 가져올 수 있도록 하는 XmlNameTable입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드의 형식을 가져옵니다. + 현재 노드의 형식을 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 노드와 관련된 네임스페이스 접두사를 가져옵니다. + 현재 노드와 관련된 네임스페이스 접두사입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 스트림에서 다음 노드를 읽습니다. + true다음 노드를 읽었으면 하는 경우 그렇지 않은 경우 false. + XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 스트림에서 다음 노드를 비동기적으로 읽습니다. + 다음 노드를 읽었으면 true이고, 더 이상 읽을 노드가 없으면 false입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 하나 이상의 Text, EntityReference 또는 EndEntity 노드로 특성 값을 구문 분석합니다. + 반환할 노드가 있으면 true입니다.처음 호출할 때 판독기가 Attribute 노드에 있거나 모든 특성 값을 읽었으면 false입니다.misc=""와 같은 빈 특성은 true를 반환하며 이것은 단일 노드가 String.Empty의 값을 갖는 것을 의미합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다.예를 들어, 개체를 xs:string으로 변환할 때 이 개체를 사용할 수 있습니다.이 값은 null일 수 있습니다. + 콘텐츠가 대상 형식에 맞지 않는 형식인 경우 + 시도된 캐스팅이 잘못된 경우 + + 값이 null인 경우 + 현재 노드가 지원되는 노드 형식이 아닌 경우.자세한 내용은 아래 표를 참조하십시오. + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정한 형식의 개체로 콘텐츠를 비동기적으로 읽습니다. + 요청된 형식으로 변환된 특성 값 또는 연결된 텍스트 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 Base64 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 콘텐츠를 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + + 가 현재 노드에서 지원되지 않는 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 콘텐츠를 비동기적으로 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 Boolean으로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 배정밀도 부동 소수점 숫자로 읽습니다. + 텍스트 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 단정밀도 부동 소수점 숫자로 읽습니다. + 현재 위치의 텍스트 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 32비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 부호 있는 64비트 정수로 읽습니다. + 텍스트 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 로 비동기적으로 읽습니다. + 텍스트 콘텐츠에 해당하는 가장 적합한 CLR(공용 언어 런타임) 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 시도된 캐스팅이 잘못된 경우 + 문자열 형식이 올바르지 않은 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 위치의 텍스트 콘텐츠를 개체로 읽습니다. + 텍스트 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 요소 콘텐츠를 요청된 형식으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다.참고  .NET Framework 3.5 릴리스에서는 매개 변수 값이 형식이 될 수 있습니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + Decimal.MaxValue를 읽는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소 콘텐츠를 요청된 형식으로 비동기적으로 읽습니다. + 요청된 형식의 개체로 변환된 요소 콘텐츠입니다. + 반환될 값의 형식입니다. + 형식 변환과 관련된 모든 네임스페이스 접두사를 확인하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 Base64 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 요소를 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + + 값이 null인 경우 + 현재 노드가 요소 노드가 아닌 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + 요소가 혼합 콘텐츠를 포함하는 경우 + 요소를 요청한 형식으로 변환할 수 없는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 요소를 비동기적으로 읽고 BinHex 콘텐츠를 디코딩합니다. + 버퍼에 쓴 바이트 수입니다. + 결과 텍스트를 복사해 넣을 버퍼입니다.이 값은 null일 수 없습니다. + 버퍼에 넣을 결과 복사가 시작되는 오프셋입니다. + 버퍼에 복사할 최대 바이트 수입니다.복사된 실제 바이트 수가 이 메서드에서 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 배정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 배정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. + 요소 콘텐츠에 해당하는 단정밀도 부동 소수점 숫자입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 단정밀도 부동 소수점 숫자로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 32비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 32비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 32비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 32비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 부호 있는 64비트 정수로 콘텐츠를 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 64비트 정수로 반환합니다. + 요소 콘텐츠에 해당하는 부호 있는 64비트 정수입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 부호 있는 64비트 정수로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 요청한 형식으로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 로 반환합니다. + 가장 적합한 형식의 boxed CLR(공용 언어 런타임) 개체입니다.적합한 CLR 형식은 속성에 따라 결정됩니다.콘텐츠가 목록 형식이면 이 메서드는 적합한 형식의 boxed 개체 배열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + + 가 요소에 배치되지 않은 경우 + 현재 요소에 자식 요소가 포함된 경우또는요소 콘텐츠를 개체로 변환할 수 없는 경우 + 메서드가 null 인수를 사용하여 호출된 경우 + 지정한 로컬 이름과 네임스페이스 URI가 읽고 있는 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하지 않는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 요소를 비동기적으로 읽고 콘텐츠를 개체로 반환합니다. + 요소 콘텐츠에 해당하는 개체입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 콘텐츠 노드가 끝 태그인지 확인하고 판독기를 다음 노드로 이동합니다. + 현재 노드가 끝 태그가 아니거나 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 태그를 포함한 모든 콘텐츠를 문자열로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다.현재 노드가 요소나 특성이 아니면 빈 문자열이 반환됩니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 태그를 포함한 모든 콘텐츠를 문자열로 비동기적으로 읽습니다. + 태그를 포함한 모든 현재 노드의 XML 콘텐츠입니다.현재 노드에 자식이 없으면 빈 문자열이 반환됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 태그를 포함하여 이 노드 및 모든 자식 노드를 나타내는 콘텐츠를 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + XML의 형식이 잘못되었거나 XML을 구문 분석하는 동안 오류가 발생한 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 이 노드 및 이 노드의 모든 자식을 나타내는 태그를 포함한 콘텐츠를 비동기적으로 읽습니다. + 판독기가 요소 또는 특성 노드에 배치되면 이 메서드는 태그를 포함해 현재 노드와 모든 자식 노드의 xml 콘텐츠를 모두 반환하고, 그렇지 않으면 빈 문자열을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 현재 노드가 요소인지 확인하고 판독기를 다음 노드로 진행합니다. + 입력 스트림에 잘못된 XML이 있는 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 을 가진 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 정규화된 이름입니다. + 입력 스트림에 잘못된 XML이 있는 경우 또는 이 요소의 는 주어진 에 매치되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 콘텐츠 노드가 지정된 가 있는 요소인지 확인하고 판독기를 다음 노드로 이동합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 입력 스트림에 잘못된 XML이 있는 경우또는검색된 요소의 속성은 주어진 인수와 일치하지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 판독기의 상태를 가져옵니다. + 판독기 상태를 지정하는 열거형 값 중 하나입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드와 해당 하위 노드 전체를 읽는 데 사용되는 새 XmlReader 인스턴스를 반환합니다. + 로 설정 된 새 XML 판독기 인스턴스 .호출 된 메서드를 호출 하기 전에 현재 노드 였던 노드에 새 판독기가 배치는 메서드. + 이 메서드가 호출 될 때 XML 판독기 요소에 배치 되지 않습니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 지정된 정규화 이름을 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.를 호출했을 때 가 요소에 배치되어 있지 않으면 이 메서드가 false를 반환하고 의 위치는 변경되지 않습니다. + 판독기를 이동할 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 하위 요소로 를 이동합니다. + 일치하는 하위 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 하위 요소가 없으면 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 가 배치됩니다.If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 판독기를 이동할 요소의 로컬 이름입니다. + 판독기를 이동할 하위 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화된 이름의 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름 및 네임스페이스 URI를 사용하는 요소를 찾을 때까지 읽습니다. + 일치하는 요소가 있으면 true이고, 그렇지 않으면 false이고 가 파일 끝에 도달합니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + 지정된 정규화 이름을 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 정규화된 이름입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 매개 변수가 빈 문자열인 경우 + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 형제 요소로 XmlReader를 이동합니다. + 일치하는 형제 요소가 있으면 true이고, 그렇지 않으면 false입니다.일치하는 형제 요소가 없으면 부모 요소의 끝 태그, 즉 이 XmlNodeType.EndElement인 태그에 XmlReader가 배치됩니다. + 판독기를 이동할 형제 요소의 로컬 이름입니다. + 판독기를 이동할 형제 요소의 네임스페이스 URI입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + 두 매개 변수 값이 모두 null인 경우 + + + XML 문서에 포함된 큰 텍스트 스트림을 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 현재 노드에 값이 없는 경우, 즉 가 false인 경우 + + 값이 null인 경우 + 버퍼 내의 인덱스 또는 인덱스와 개수를 합한 값이 할당된 버퍼 크기보다 큰 경우 + 구현된 에서 이 메서드를 지원하지 않는 경우 + XML 데이터가 올바른 형식이 아닌 경우 + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + XML 문서에 포함된 큰 텍스트 스트림을 비동기적으로 읽습니다. + 버퍼로 읽어온 문자 수입니다.텍스트 콘텐츠가 더 이상 없으면 0이 반환됩니다. + 텍스트 콘텐츠를 쓸 버퍼 역할을 하는 문자 배열입니다.이 값은 null일 수 없습니다. + + 가 버퍼 내에서 결과 복사를 시작할 수 있는 오프셋입니다. + 버퍼에 복사할 최대 문자 수입니다.이 메서드는 복사된 실제 문자 수를 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 EntityReference 노드에 대한 엔터티 참조를 확인합니다. + 판독기가 EntityReference 노드에 배치되지 않고 판독기의 이 구현에서 엔터티를 확인할 수 없는 경우(가 false를 반환하는 경우) + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + Gets the object used to create this instance. + 이 판독기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 판독기를 만들지 않은 경우 이 속성은 null을 반환합니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 건너뜁니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 자식을 비동기적으로 건너뜁니다. + 현재 노드입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + 플래그를 true로 설정하지 않고 비동기 메서드가 호출되었습니다.이 경우 은 “비동기 메서드를 사용하려면 XmlReaderSettings.Async를 true로 설정하십시오.”라는 메시지와 함께 throw됩니다. + + + 파생 클래스에서 재정의되면 현재 노드의 텍스트 값을 가져옵니다. + 반환되는 값은 노드의 에 따라 달라집니다.다음 표에서는 반환할 값이 있는 노드 형식을 보여 줍니다.다른 모든 노드 형식은 String.Empty를 반환합니다.노드 형식 값 Attribute특성 값입니다. CDATACDATA 섹션의 콘텐츠입니다. Comment주석의 콘텐츠입니다. DocumentType내부 하위 집합입니다. ProcessingInstruction대상을 제외한 전체 콘텐츠입니다. SignificantWhitespace혼합된 콘텐츠 모델의 태그 간 공백입니다. Text텍스트 노드의 내용입니다. Whitespace태그 사이의 공백입니다. XmlDeclaration선언의 내용입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 현재 노드의 CLR(공용 언어 런타임) 형식을 가져옵니다. + 노드의 형식화된 값에 해당하는 CLR 형식입니다.기본값은 System.String입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 가져옵니다. + + 값 중 하나입니다.xml:space 범위가 존재하지 않으면 이 속성은 기본적으로 XmlSpace.None으로 설정됩니다. + 이전 비동기 작업이 완료되기 전에 메서드가 호출되었습니다.이 경우 "비동기 작업이 이미 진행 중"이라는 메시지와 함께 이 throw됩니다 + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지 여부를 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + 문자 검사를 수행할지를 나타내는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다.참고텍스트 데이터를 처리할 경우 는 이 속성의 설정에 상관없이 XML 이름 및 텍스트 콘텐츠의 유효성을 항상 검사합니다.를 false로 설정하면 문자 엔터티 참조에 대해 문자 검사가 수행되지 않습니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫을지 여부를 나타내는 값을 가져오거나 설정합니다. + 판독기를 닫을 때 내부 스트림 또는 를 함께 닫으면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 에 적용할 규칙 수준을 가져오거나 설정합니다. + XML 판독기를 적용할 규칙 수준을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + DTD 처리를 결정하는 값을 가져오거나 설정합니다. + DTD 처리를 결정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 주석을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 주석을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 처리 명령을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 처리 명령을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 유효하지 않은 공백을 무시할지를 나타내는 값을 가져오거나 설정합니다. + 공백을 무시하면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + + 개체의 줄 번호 오프셋을 가져오거나 설정합니다. + 줄 번호 오프셋입니다.기본값은 0입니다. + + + + 개체의 줄 위치 오프셋을 가져오거나 설정합니다. + 선 위치 오프셋입니다.기본값은 0입니다. + + + 문서에서 엔터티 확장 후의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다. + 확장된 엔터티의 최대 허용 문자 수입니다.기본값은 0입니다. + + + XML 문서의 최대 허용 문자 수를 나타내는 값을 가져오거나 설정합니다.값 0은 XML 문서 크기에 제한이 없음을 의미합니다.0이 아닌 값은 최대 크기(문자 수)를 지정합니다. + XML 문서의 최대 허용 문자 수입니다.기본값은 0입니다. + + + 원자화된 문자열을 비교하는 데 사용할 을 가져오거나 설정합니다. + 개체를 사용하여 만든 모든 인스턴스에서 사용하는 원자화된 문자열 전체가 저장되는 입니다.기본값은 null입니다.이 값이 null이면 인스턴스는 비어 있는 새 을 사용합니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + 현재 xml:space 범위를 지정합니다. + + + xml:space 범위가 default입니다. + + + xml:space 범위가 없습니다. + + + xml:space 범위가 preserve입니다. + + + XML 데이터가 포함된 스트림 또는 파일을 생성할 수 있도록 빠르고, 앞으로만 이동 가능하며, 캐시되지 않은 방법을 제공하는 작성기를 나타냅니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 지정된 스트림을 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + The value is null. + + + 스트림과 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 작성하려는 스트림입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 스트림에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.는 XML 1.0 텍스트 구문을 쓴 후 지정된 에 추가합니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + The value is null. + + + + 개체를 사용하여 새 인스턴스를 만듭니다. + + 개체입니다. + 쓰기에 사용할 입니다.가 쓰는 콘텐츠는 에 추가됩니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + The value is null. + + + 지정된 개체를 사용하여 새 인스턴스를 만듭니다. + 지정된 개체를 래핑하는 개체입니다. + 내부 작성기로 사용할 개체입니다. + 인스턴스를 구성하는 데 사용되는 개체입니다.값이 null이면 기본 설정이 지정된 이 사용됩니다. 메서드와 함께 사용되는 경우 속성을 사용하여 올바른 설정을 포함하는 개체를 가져와야 합니다.이에 따라 만들어진 개체가 올바른 출력 설정을 갖게 됩니다. + The value is null. + + + + 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. + 관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버퍼에 있는 항목을 내부 스트림으로 플러시하고 내부 스트림도 플러시합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버퍼에 있는 모든 내용을 내부 스트림으로 비동기적으로 플러시하고 내부 스트림도 플러시합니다. + 비동기 Flush 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스 URI의 현재 네임스페이스 범위에 정의된 가장 비슷한 접두사를 반환합니다. + 일치하는 접두사이거나 현재 범위에 일치하는 네임스페이스 URI가 없는 경우 null입니다. + 찾으려는 접두사를 가진 네임스페이스 URI입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 인스턴스를 만드는 데 사용되는 개체를 가져옵니다. + 이 작성기 인스턴스를 만드는 데 사용되는 입니다. 메서드를 사용하여 작성기를 만들지 않은 경우 이 속성은 null을 반환합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 의 현재 위치에 있는 모든 특성을 작성합니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 의 현재 위치에서 찾은 모든 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributes 작업을 나타내는 작업입니다. + 특성을 복사할 원본 XmlReader입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름 및 값이 있는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 로컬 이름입니다. + 특성에 연결할 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 갖는 특성을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 특성을 비동기적으로 작성합니다. + 비동기 WriteAttributeString 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + 특성 값 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 Base64로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 Base64로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBase64 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이진 바이트를 BinHex로 인코딩하고 결과 텍스트를 작성합니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 바이너리 바이트를 BinHex로 비동기적으로 인코딩하고 결과 텍스트를 작성합니다. + 비동기 WriteBinHex 작업을 나타내는 작업입니다. + 인코딩할 바이트 배열입니다. + 쓸 바이트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 바이트 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 <![CDATA[...]]> 블록을 작성합니다. + CDATA 블록 내부에 배치할 텍스트입니다. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 <![CDATA[...]]> 블록을 비동기적으로 작성합니다. + 비동기 WriteCData 작업을 나타내는 작업입니다. + CDATA 블록 내부에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 유니코드 문자 값의 문자 엔터티를 생성하게 합니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 유니코드 문자 값에 대한 문자 엔터티가 비동기적으로 생성되도록 합니다. + 비동기 WriteCharEntity 작업을 나타내는 작업입니다. + 문자 엔터티를 생성할 유니코드 문자입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 번에 한 버퍼씩 텍스트를 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 번에 한 버퍼씩 텍스트를 비동기적으로 씁니다. + 비동기 WriteChars 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 텍스트가 포함된 주석(<!--...-->)을 작성합니다. + 주석 내에 배치할 텍스트입니다. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 텍스트를 포함하는 주석<!--...-->을 비동기적으로 작성합니다. + 비동기 WriteComment 작업을 나타내는 작업입니다. + 주석 내에 배치할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 이름 및 선택적 특성이 있는 DOCTYPE 선언을 작성합니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 이름과 선택적 특성을 사용하여 DOCTYPE 선언을 비동기적으로 작성합니다. + 비동기 WriteDocType 작업을 나타내는 작업입니다. + DOCTYPE의 이름입니다.이 이름은 비어 있지 않아야 합니다. + null이 아닌 경우 PUBLIC "pubid" "sysid"도 씁니다. 여기서 는 지정된 인수 값으로 바뀝니다. + + 가 null이고 가 null이 아닌 경우 SYSTEM "sysid"를 씁니다. 여기서 는 이 인수 값으로 바뀝니다. + null이 아닌 경우 하위 집합이 이 인수 값으로 대체되는 [subset]을 작성합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 작성합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 씁니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름, 네임스페이스 URI 및 값을 사용하여 요소를 비동기적으로 작성합니다. + 비동기 WriteElementString 작업을 나타내는 작업입니다. + 요소의 접두사입니다. + 요소의 로컬 이름입니다. + 요소의 네임스페이스 URI입니다. + 요소의 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 이전 호출을 닫습니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이전 호출을 비동기적으로 닫습니다. + 비동기 WriteEndAttribute 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 열려 있는 모든 요소나 특성을 닫고 작성기를 다시 시작 상태로 설정합니다. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 열려 있는 모든 요소나 특성을 비동기적으로 닫고 작성기를 시작 상태로 설정합니다. + 비동기 WriteEndDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 &name; 같이 엔터티 참조를 작성합니다. + 엔터티 참조의 이름입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 엔터티 참조를 &name;으로 비동기적으로 작성합니다. + 비동기 WriteEntityRef 작업을 나타내는 작업입니다. + 엔터티 참조의 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 한 요소를 닫고 해당 네임스페이스 범위를 팝합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 한 요소를 비동기적으로 닫고 해당 네임스페이스 범위를 팝합니다. + 비동기 WriteFullEndElement 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 이름이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteName 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 NmToken이 되도록 지정된 이름을 작성합니다. + 작성할 이름입니다. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + W3C XML 1.0 권장 사항(http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name)에 따라 유효한 NmToken이 되도록 지정된 이름을 비동기적으로 작성합니다. + 비동기 WriteNmToken 작업을 나타내는 작업입니다. + 작성할 이름입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 판독기에서 작성기로 모든 항목을 비동기적으로 복사하고 판독기를 다음 형제 노드의 시작 부분으로 이동합니다. + 비동기 WriteNode 작업을 나타내는 작업입니다. + 읽을 입니다. + XmlReader에서 기본 특성을 복사하려면 true이고, 그렇지 않으면 false입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 <?name text?> 같이 이름과 텍스트 사이에 공백이 있는 처리 명령을 작성합니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 이름과 텍스트 사이의 공백을 사용하여 처리 명령을 비동기적으로 씁니다(예: <?name text?>). + 비동기 WriteProcessingInstruction 작업을 나타내는 작업입니다. + 처리 명령의 이름입니다. + 처리 명령에 포함할 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 네임스페이스로 한정된 이름을 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 네임스페이스로 한정된 이름을 비동기적으로 작성합니다.이 메서드는 지정된 네임스페이스의 범위에 속하는 접두사를 찾습니다. + 비동기 WriteQualifiedName 작업을 나타내는 작업입니다. + 작성할 로컬 이름입니다. + 이름의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 문자 버퍼에서 원시 태그를 직접 작성합니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 문자열에서 원시 태그를 직접 작성합니다. + 작성할 텍스트를 포함하는 문자열입니다. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 문자 버퍼에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 쓸 텍스트가 포함된 문자 배열입니다. + 쓸 텍스트의 시작을 나타내는 버퍼 내의 위치입니다. + 쓸 문자 수입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 문자열에서 직접 원시 태그를 비동기적으로 작성합니다. + 비동기 WriteRaw 작업을 나타내는 작업입니다. + 작성할 텍스트를 포함하는 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 지정된 로컬 이름을 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 로컬 이름과 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 작성합니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 접두사, 로컬 이름 및 네임스페이스 URI를 사용하여 특성의 시작 부분을 비동기적으로 작성합니다. + 비동기 WriteStartAttribute 작업을 나타내는 작업입니다. + 특성의 네임스페이스 접두사입니다. + 특성의 로컬 이름입니다. + 특성의 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"인 XML 선언을 작성합니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 버전이 "1.0"이고 독립형 특성이 포함된 XML 선언을 작성합니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 버전 "1.0"을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 버전 "1.0"과 독립형 특성을 사용하여 XML 선언을 비동기적으로 작성합니다. + 비동기 WriteStartDocument 작업을 나타내는 작업입니다. + true이면 "standalone=yes"로 쓰고, false이면 "standalone=no"로 씁니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 지정된 로컬 이름을 사용하여 시작 태그를 작성합니다. + 요소의 로컬 이름입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스에 연결합니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다.이 네임스페이스가 이미 범위에 있고 관련된 접두사가 있는 경우 작성기는 해당 접두사도 자동으로 작성합니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 시작 태그를 작성하고 지정된 네임스페이스 및 접두사에 연결합니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 지정된 시작 태그를 비동기적으로 작성하고 주어진 네임스페이스 및 접두사와 연결합니다. + 비동기 WriteStartElement 작업을 나타내는 작업입니다. + 요소의 네임스페이스 접두사입니다. + 요소의 로컬 이름입니다. + 요소와 연결할 네임스페이스 URI입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 작성기의 상태를 가져옵니다. + + 값 중 하나입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되는 경우 지정된 텍스트 콘텐츠를 작성합니다. + 쓸 텍스트입니다. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 텍스트 콘텐츠를 비동기적으로 작성합니다. + 비동기 WriteString 작업을 나타내는 작업입니다. + 쓸 텍스트입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 생성하고 작성합니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 서로게이트 문자 쌍에 대한 서로게이트 문자 엔터티를 비동기적으로 생성하고 작성합니다. + 비동기 WriteSurrogateCharEntity 작업을 나타내는 작업입니다. + 하위 서로게이트입니다.이 값은 0xDC00에서 0xDFFF 사이에 있어야 합니다. + 상위 서로게이트입니다.이 값은 0xD800에서 0xDBFF 사이에 있어야 합니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 개체 값을 씁니다. + 쓸 개체 값입니다.참고   .NET Framework 3.5 릴리스에서 이 메서드는 을 매개 변수로 받습니다. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 단정밀도 부동 소수점 숫자를 씁니다. + 쓸 단정밀도 부동 소수점 숫자입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 값을 씁니다. + 값입니다. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 지정된 공백을 작성합니다. + 공백 문자의 문자열입니다. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 주어진 공백을 비동기적으로 작성합니다. + 비동기 WriteWhitespace 작업을 나타내는 작업입니다. + 공백 문자의 문자열입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 파생 클래스에서 재정의되면 현재 xml:lang 범위를 가져옵니다. + 현재 xml:lang 범위입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 파생 클래스에서 재정의되면 현재 xml:space 범위를 나타내는 를 가져옵니다. + 현재 xml:space 범위를 나타내는 XmlSpace입니다.값 의미 Nonexml:space 범위가 없는 경우 기본값입니다.Default현재 범위가 xml:space="default"입니다.Preserve현재 범위가 xml:space="preserve"입니다. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + + 메서드를 사용하여 만든 개체에서 지원할 기능 집합을 지정합니다. + + + + 클래스의 새 인스턴스를 초기화합니다. + + + 비동기 메서드를 특정 인스턴스에서 사용할 수 있는지를 나타내는 값을 가져오거나 설정합니다. + 비동기 메서드를 사용할 수 있으면 true이고, 그렇지 않으면 false입니다. + + + XML 작성기가 문서의 모든 문자가 W3C XML 1.0 권장 사항의 "2.2 문자"를 따르는지 확인해야 하는 경우 표시하는 값을 가져오거나 설정합니다. + 문자 검사를 하려면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + + 인스턴스의 복사본을 만듭니다. + 복제된 개체입니다. + + + + 메서드를 호출한 경우 가 내부 스트림 또는 도 함께 닫을지를 나타내는 값을 가져오거나 설정합니다. + 내부 스트림 또는 를 함께 닫으려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + XML 작성기가 XML 출력을 확인하는 규칙 수준을 가져오거나 설정합니다. + 규칙 수준(문서, 조각 또는 자동 검색)을 지정하는 열거형 값 중 하나입니다.기본값은 입니다. + + + 사용할 텍스트 인코딩의 형식을 가져오거나 설정합니다. + 사용할 텍스트 인코딩입니다.기본값은 Encoding.UTF8입니다. + + + 요소의 들여쓰기 여부를 나타내는 값을 가져오거나 설정합니다. + 새 줄에 개별 요소를 들여 쓰면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다. + + + 들여쓰기에 사용할 문자열을 가져오거나 설정합니다.이 설정은 속성이 true로 설정된 경우에 사용됩니다. + 들여쓰기에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 공백 두 개입니다. + The value assigned to the is null. + + + XML 콘텐츠를 쓸 때 에서 중복된 네임스페이스 선언을 제거할지를 표시하는 값을 가져오거나 설정합니다.기본 동작은 작성기에서 작성기의 네임스페이스 확인자에 있는 모든 네임스페이스 선언을 출력하는 것입니다. + + 에서 중복된 네임스페이스 선언을 제거할지를 지정하는 데 사용되는 열거형입니다. + + + 줄 바꿈에 사용할 문자열을 가져오거나 설정합니다. + 줄 바꿈에 사용할 문자열입니다.이 속성에 설정할 수 있는 문자열 값에는 제한이 없습니다.그러나 XML을 올바르게 유지하려면 공백 문자, 탭, 캐리지 리턴 또는 줄 바꿈 같은 유효한 공백 문자만 지정해야 합니다.기본값은 \r\n(캐리지 리턴, 줄 바꿈)입니다. + The value assigned to the is null. + + + 줄 바꿈을 출력에 정규화할지를 나타내는 값을 가져오거나 설정합니다. + + 값 중 하나입니다.기본값은 입니다. + + + 특성을 새 줄에 쓸지를 나타내는 값을 가져오거나 설정합니다. + 특성을 개별 줄에 쓰려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다.참고 속성 값이 false인 경우에는 이 설정을 적용해도 효과가 없습니다.를 true로 설정하면 각 특성 앞에 줄 바꿈과 한 수준 들여쓰기가 추가됩니다. + + + XML 선언을 생략할지를 나타내는 값을 가져오거나 설정합니다. + XML 선언을 생략하려면 true이고, 그렇지 않으면 false입니다.기본값은 false로, XML 선언이 작성됩니다. + + + 설정 클래스의 멤버를 해당 기본값으로 다시 설정합니다. + + + + 메서드가 호출될 때 가 닫히지 않은 모든 요소 태그에 닫는 태그를 추가할지를 나타내는 값을 가져오거나 설정합니다. + 닫히지 않은 모든 요소 태그가 닫히면 true이고, 그렇지 않으면 false입니다.기본값은 true입니다. + + + XML 스키마의 메모리 내 표현으로 W3C(World Wide Web Consortium)XML 스키마 파트 1: 구조 및 XML 스키나 파트 2: 데이터 형식 사양을 참조하세요. + + + 특성이나 요소를 네임스페이스 접두사로 한정해야 하는지 여부를 나타냅니다. + + + 스키마에 요소 및 특성 형식을 지정하지 않습니다. + + + 요소와 특성을 네임스페이스 접두사로 한정해야 합니다. + + + 요소와 특성을 네임스페이스 접두사로 한정할 필요는 없습니다. + + + XML serialization 및 deserialization을 위한 사용자 지정 서식을 제공합니다. + + + 이 메서드는 예약되어 있으므로 사용해서는 안 됩니다.IXmlSerializable 인터페이스를 구현할 때 이 메서드에서 null(Visual Basic에서는 Nothing)을 반환해야 하지만 사용자 지정 스키마를 지정해야 하는 경우에는 를 클래스에 적용합니다. + + 메서드에 의해 생성되고 메서드가 사용하는 개체의 XML 표현을 설명하는 입니다. + + + 개체의 XML 표현에서 개체를 생성합니다. + 개체가 deserialize되는 스트림입니다. + + + 개체를 XML 표현으로 변환합니다. + 개체가 serialize되는 스트림입니다. + + + 형식에 적용되는 경우 XML 스키마를 반환하는 형식의 정적 메서드 이름과 형식의 serialization을 제어하는 (익명 형식의 경우 )을 저장합니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드 이름을 가져와서 클래스의 새 인스턴스를 초기화합니다. + 구현되어야 하는 정적 메서드의 이름입니다. + + + 대상 클래스가 와일드카드이거나 클래스의 스키마에 xs:any 요소만 포함되어 있는지 여부를 확인하는 값을 가져오거나 설정합니다. + 클래스가 와일드카드이거나 스키마에 xs:any 요소만 있으면 true이고, 그렇지 않으면 false입니다. + + + 형식의 XML 스키마를 제공하는 정적 메서드의 이름과 해당 XML 스키마 데이터 형식의 이름을 가져옵니다. + XML 스키마를 반환하기 위해 XML 인프라에서 호출하는 메서드의 이름입니다. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..800bf63 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml @@ -0,0 +1,2600 @@ + + + + System.Xml.ReaderWriter + + + + Задает количество проверок ввода-вывода, которые выполняют объекты и . + + + Объект или автоматически определяет, проверять ли весь документ или фрагмент документа, и выполняет соответствующую проверку.В случае использования программы-оболочки для другого объекта или внешний объект не выполняет никаких дополнительных проверок на соответствие.Проверка на соответствие выполняется базовым объектом.Сведения об определении уровня соответствия см. в описании свойств и . + + + Данные XML соответствуют правилам для XML-документов версии 1.0 с правильным форматом в соответствии с определением консорциума W3C. + + + Данные XML являются XML-фрагментом с правильным форматом в соответствии с определением консорциума W3C. + + + Задает параметры обработки DTD.Перечисление используется классом . + + + Элемент DOCTYPE будет проигнорирован.Обработка DTD выполнена не будет. + + + Указывает, что при обнаружении DTD будет создано исключение с сообщением о том, что DTD запрещены.Это поведение установлено по умолчанию. + + + Предоставляет интерфейс, позволяющий классу возвращать информацию о строке и положении в ней. + + + Возвращает значение, определяющее возможность возвращения классом сведений о строке. + Значение true, если могут быть предоставлены свойства и , в противном случае — false. + + + Получает текущий номер строки. + Номер текущей строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Получает текущее положение строки. + Текущее положение строки или значение 0, если информация о строке недоступна (например, метод возвращает значение false). + + + Предоставляет доступ только для чтения к набору сопоставлений префиксов и пространств имен. + + + Получает коллекцию определенных соответствий префиксов и пространств имен, которые в настоящий момент находятся в области. + Объект , содержащий все текущие пространства имен в области. + С помощью значения указывается тип узлов пространства имен, которые следует возвратить. + + + Получает универсальный код ресурса (URI) пространства имен, соответствующий заданному префиксу. + URI пространства имен, сопоставленное с префиксом; null, если префикс не сопоставлен с URI пространства имен. + Префикс, URI пространства имен которого нужно найти. + + + Получает префикс, соответствующий заданному универсальному коду ресурса (URI) пространства имен. + Префикс, сопоставленный URI пространства имен; null если URI пространства имен не сопоставлено с префиксом. + URI пространства имен, префикс которого нужно найти. + + + Указывает, нужно ли удалять дубликаты объявлений в объекте . + + + Указывает, что удалять дубликаты объявлений не будут удалены. + + + Указывает, что дубликаты объявлений будут удалены.Чтобы дубликат пространства имен был удален, должны совпадать префиксы пространств имен. + + + Реализует однопотоковый объект . + + + Инициализирует новый экземпляр класса NameTable. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий добавляемую строку. + Отсчитываемый от нуля индекс в массиве, задающий первый символ строки. + Количество знаков в строке. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Атомизирует заданную строку и добавляет ее к объекту NameTable. + Атомизированная строка или существующая строка, если таковая уже имеется в объекте NameTable. + Строка для добавления. + Параметр имеет значение null. + + + Получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в данном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если значение параметра равно нулю, возвращается поле String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – >= .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + Получает атомизированную строку с заданным значением. + Объект атомизированной строки или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает способ обработки разрывов строк. + + + Символы новой строки преобразовываются.Благодаря этому параметру сохраняются все символы, когда результат читается нормализующим считывателем . + + + Символы новой строки не меняются.Выходные данные совпадают со входными. + + + Знаки новой строки заменяются для обеспечения соответствия со знаком, указанным в свойстве . + + + Задает состояние читателя. + + + Вызван метод . + + + Конец файла успешно достигнут. + + + Произошла ошибка, препятствующая продолжению операции чтения. + + + Метод Read не был вызван. + + + Вызван метод Read.Для читателя можно вызвать дополнительные методы. + + + Задает состояние объекта . + + + Указывает, что значение атрибута записывается. + + + Указывает, что был вызван метод . + + + Указывает, что содержимое элемента записывается. + + + Указывает, что открывающий тег элемента записывается. + + + Было сгенерировано исключение, которое оставило объект в недопустимом состоянии.Можно вызвать метод , чтобы перевести объект в состояние .Вызов любого другого метода приведет к созданию исключения . + + + Указывает, что пролог записывается. + + + Указывает, что метод Write еще не вызван. + + + Кодирует и декодирует имена XML и предоставляет методы для преобразования между типами общеязыковой среды выполнения и типами языков определения схем XML (XSD).При преобразовании типов данных возвращаемые значения не зависят от языкового стандарта. + + + Декодирует имя.Этот метод изменяет действие методов и на обратное. + Декодированное имя. + Преобразуемое имя. + + + Преобразует имя в допустимое локальное имя XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует имя в допустимое имя XML. + Возвращает имя с любыми недопустимыми знаками, замещенными escape-строкой. + Преобразуемое имя. + + + Проверяет допустимость имени на соответствие со спецификацией XML. + Закодированное имя. + Имя для кодирования. + + + Преобразует в эквивалент . + Значение Boolean равно true или false. + Преобразуемая строка. + + is null. + + does not represent a Boolean value. + + + Преобразует в эквивалент . + Эквивалент строки Byte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Значение Char, представляющее отдельный знак. + Строка, содержащая отдельный преобразуемый знак. + The value of the parameter is null. + The parameter contains more than one character. + + + Преобразует в с помощью указанного + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, следует ли преобразовывать данные в локальное время или сохранять их во времени в формате UTC, если дата в формате UTC. + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка.Примечание.   Строка должна соответствовать подмножеству в соответствии с рекомендацией W3C для типа XML dateTime.Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime. + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Формат, из которого преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по этому формату. + + is null. + + or is an empty string or is not in the specified format. + + + Преобразует предоставленное значение в эквивалентное значение . + Эквивалент указанной строки . + Преобразуемая строка. + Массив форматов, из которого можно преобразовать параметр .Каждый формат в параметре может быть любым подмножеством в соответствии с рекомендациями консорциума W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) Строка проверяется по одному из этих форматов. + + + Преобразует в эквивалент . + Эквивалент строки Decimal. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Double. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Guid. + Преобразуемая строка. + + + Преобразует в эквивалент . + Эквивалент строки Int16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Int64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки SByte. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки Single. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует объект в значение типа . + Строковое представление Boolean, то есть true или false. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Byte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Char. + Преобразуемое значение. + + + Преобразует объект в объект с помощью заданного значения . + Эквивалент для значения . + Преобразуемое значение . + Одно из значений , указывающее, как следует обрабатывать значение . + The value is not valid. + The or value is null. + + + Преобразует предоставленную структуру в объект . + Представление для предоставленной структуры . + Преобразуемая структура . + + + Преобразует предоставленную структуру в объект в указанном формате. + Представление в указанном формате предоставленной структуры . + Преобразуемая структура . + Формат, в который преобразуется параметр .Параметр формата может быть любым поднабором в соответствии с рекомендацией W3C для типа XML dateTime.(Дополнительные сведения см. по адресу http://www.w3.org/TR/xmlschema-2/#dateTime.) + + + Преобразует объект в значение типа . + Строковое представление объекта Decimal. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Double. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Guid. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Int64. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта SByte. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта Single. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта TimeSpan. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt16. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt32. + Преобразуемое значение. + + + Преобразует объект в значение типа . + Строковое представление объекта UInt64. + Преобразуемое значение. + + + Преобразует в эквивалент . + Эквивалент строки TimeSpan. + Преобразуемая строка.Формат строки должен соответствовать рекомендации по продолжительности в зависимости от типа данных W3C XML-схемы (часть 2). + + is not in correct format to represent a TimeSpan value. + + + Преобразует в эквивалент . + Эквивалент строки UInt16. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt32. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Преобразует в эквивалент . + Эквивалент строки UInt64. + Преобразуемая строка. + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + Проверяет допустимость имени в соответствии с рекомендацией W3C XML. + Имя, если это допустимое имя XML. + Имя для проверки. + + is not a valid XML name. + + is null or String.Empty. + + + Проверяет, что имя является допустимым именем NCName в соответствии с рекомендациями по XML консорциума W3C.NCName — это имя, которое не может содержать двоеточия. + Указанное имя не является допустимым именем NCName. + Имя для проверки. + + is null or String.Empty. + + is not a valid non-colon name. + + + Проверяет, является ли строка допустимым NMTOKEN, в соответствии с рекомендацией по типам данных W3C XML-схемы (часть 2). + Токен имени, если это допустимый NMTOKEN. + Строка, которую следует проверить. + The string is not a valid name token. + + is null. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками открытых идентификаторов. + Возвращает переданную строку, если все знаки в аргументе являются допустимыми знаками открытых идентификаторов. + Объект , содержащий идентификатор для проверки. + + + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями. + Возвращает экземпляр переданной строки, если все знаки в строковом аргументе являются допустимыми знаками-разделителями; в противном случае возвращает значение null. + Объект для проверки. + + + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Возвращает переданную строку, если все знаки и пары знаков-заполнителей в строковом аргументе являются допустимыми знаками XML; в противном случае создается XmlException со сведениями о первом встретившемся недопустимом знаке. + Объект , содержащий знаки для проверки. + + + Определяет способ обработки значения времени при преобразовании между строками и объектами . + + + Обрабатывать как местное время.Если объект представляет время в формате UTC, оно будет преобразовано в местное время. + + + Данные о часовом поясе необходимо сохранять при преобразовании. + + + Обрабатывать как местное время, если объект преобразовывается в строку. + + + Обрабатывать как время в формате UTC.Если объект представляет местное время, оно будет преобразовано во время в формате UTC. + + + Подробные сведения о последнем исключении. + + + Инициализирует новый экземпляр класса XmlException. + + + Инициализирует новый экземпляр класса XmlException, используя указанное сообщение об ошибке. + Описание ошибки. + + + Инициализирует новый экземпляр класса XmlException. + Описание условий возникновения ошибки. + + , породивший XmlException (при наличии).Это значение может быть равно null. + + + Инициализирует новый экземпляр класса XmlException, используя заданное сообщение, внутреннее исключение, номер строки и позицию в строке. + Описание ошибки. + Исключение, которое вызвало текущее исключение.Это значение может быть равно null. + Номер строки, показывающий, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает номер строки, показывающий, где произошла ошибка. + Номер строки, показывающий, где произошла ошибка. + + + Получает размещение строки, показывающее, где произошла ошибка. + Размещение строки, показывающее, где произошла ошибка. + + + Получает сообщение, которое описывает текущее исключение. + Сообщение об ошибке с объяснением причин исключения. + + + Разрешает, добавляет и удаляет пространства имен из коллекции и обеспечивает управление областью для этих пространств имен. + + + Выполняет инициализацию нового экземпляра класса с заданным объектом . + Используемый . + null is passed to the constructor + + + Добавляет заданное пространство имен в коллекцию. + Префикс, который требуется связать с добавляемым пространством имен.Используйте String.Empty для добавления пространства имен по умолчанию.Примечание.Если объект будет использоваться для разрешения пространств имен в выражении языка XPath, необходимо указать префикс.Если выражение XPath не содержит префикс, предполагается, что универсальным кодом ресурса (URI) для пространства имен является пустое пространство имен.Дополнительные сведения о выражениях языка XPath и см. в разделах с описанием методов и . + Добавляемое пространство имен. + The value for is "xml" or "xmlns". + The value for or is null. + + + Возвращает универсальный код ресурса (URI) для пространства имен по умолчанию. + Возвращает URI для пространства имен по умолчанию или String.Empty, если пространство имен по умолчанию отсутствует. + + + Возвращает перечислитель для выполнения итерации по пространствам имен в объекте . + Перечислитель , содержащий префиксы, которые хранятся объектом . + + + Возвращает коллекцию пространств имен, уникальными идентификаторами которых являются префиксы, используемые для перечисления пространств имен в текущей области видимости. + Коллекция пар префикс-пространство имен в текущей области видимости. + Значение перечисления, указывающее тип узлов пространств имен, которые требуется возвратить. + + + Возвращает значение, указывающее, определено ли пространство имен для указанного префикса в текущей области видимости, занесенной в стек. + Значение true, если пространство имен определено; в противном случае — значение false. + Префикс пространства имен, которое нужно найти. + + + Возвращает URI пространства имен для указанного префикса. + Возвращает универсальный код ресурса (URI) пространства имен для префикса или значение null, если нет сопоставленного пространства имен.Возвращаемая строка является атомизированной.Дополнительные сведения об атомизированных строках см. в описании класса . + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать String.Empty. + + + Находит префикс, объявленный для заданного URI пространства имен. + Соответствующий префикс.Если нет сопоставленного префикса, данный метод возвращает String.Empty.Если предоставляется значение NULL, возвращается то же значение null. + Пространство имен, которое необходимо разрешить для получения префикса. + + + Получает , связанную с данным объектом. + + , используемая данным объектом. + + + Извлекает из стека область видимости пространства имен. + Значение true, если в стеке остались области пространств имен; значение false, если больше нет пространств имен, которые требуется извлечь. + + + Заносит область видимости пространства имен в стек. + + + Удаляет заданное пространство имен с указанным префиксом. + Префикс пространства имен. + Пространство имен, которое требуется удалить по указанному префиксу.Пространство имен удаляется из текущей области видимости пространств имен.Пространства имен вне текущей области видимости игнорируются. + The value of or is null. + + + Определяет область пространства имен. + + + Все пространства имен, определенные в области текущего узла.Сюда входит пространство xmlns:xml, всегда объявляемое неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные в области текущего узла, кроме пространства xmlns:xml, всегда объявляемого неявно.Порядок возвращения пространств имен не задан. + + + Все пространства имен, определенные локально для текущего узла. + + + Таблица атомизированных объектов строки. + + + Инициализирует новый экземпляр класса . + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется.Если параметр length имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий добавляемое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе атомизирует заданную строку и добавляет ее в таблицу XmlNameTable. + Новая атомизированная строка или существующая строка, если таковая уже имеется. + Добавляемое имя. + Параметр имеет значение null. + + + При переопределении в производном классе получает атомизированную строку, содержащую те же символы, что и заданный диапазон символов в заданном массиве. + Атомизированная строка или значение null, если строка еще не атомизирована.Если параметр имеет значение нуль, возвращается String.Empty. + Массив символов, содержащий искомое имя. + Отсчитываемый от нуля индекс в массиве, задающий первый символ имени. + Число символов в имени. + 0 > – или – >= .Length – или – > .Length Вышеприведенные условия не вызывают исключение, если значение =0. + + < 0. + + + При переопределении в производном классе получает атомизированную строку, содержащую то же значение, что и заданная строка. + Атомизированная строка или значение null, если строка еще не атомизирована. + Искомое имя. + Параметр имеет значение null. + + + Задает типа узла. + + + Атрибут (например, id='123' ). + + + Раздел CDATA (например, <![CDATA[my escaped text]]>). + + + Комментарий (например, <!-- my comment --> ). + + + Объект документа, являющийся корневым элементом дерева документов, предоставляет доступ ко всему XML-документу. + + + Фрагмент документа. + + + Объявление типа документа, обозначенное следующим тегом (например, <!DOCTYPE...>). + + + Элемент (например, <item>). + + + Тег конечного элемента (например, </item>). + + + Возвращается, когда объект XmlReader доходит до конца замены сущности в результате вызова . + + + Объявление сущности (например, <!ENTITY...>). + + + Ссылка на сущность (например, &num;). + + + Возвращается объектом , если не был вызван метод Read. + + + Нотация в объявлении типа документа (например, <!NOTATION...>). + + + Инструкция по обработке (например, <?pi test?>). + + + Пробел между элементами разметки в смешанной модели содержимого или пробел в области xml:space="preserve". + + + Текстовое содержимое узла. + + + Пробел между разметкой. + + + Объявление XML (например, <?xml version='1.0'?>). + + + Предоставляет все контекстные данные, необходимые для анализа фрагмента XML. + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.Набор DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , базового URI, xml:space, xml:lang, кодировки и значений типов документов. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Имя объявления типа документа. + Открытый идентификатор. + Идентификатор системы. + Внутренний набор DTD.DTD используется для разрешения сущностей, но не для проверки документа. + Базовый URI для фрагмента XML (размещение, из которого загружен фрагмент). + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью заданных значений , , xml:lang и xml:space. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Инициализирует новый экземпляр класса XmlParserContext с помощью указанных значений , , xml:lang, xml:space и кодировки. + Класс , используемый для разъединения строк.Если значение параметра равно null, вместо этого класса используется таблица имен, которая служит для создания .Дополнительные сведения о разъединенных строках см. в разделе . + Класс , используемый для поиска сведений о пространстве имен, или значение null. + Область xml:lang. + Значение , показывающее область xml:space. + Объект , показывающий параметр кодировки. + Параметр отличается от таблицы XmlNameTable, используемой для создания объекта . + + + Получает или задает базовый URI. + Базовый URI, используемый для разрешения файла DTD. + + + Получает или задает имя объявления типа документа. + Имя объявления типа документа. + + + Получает или задает тип кодировки. + Объект , показывающий тип кодировки. + + + Получает или задает внутренний набор DTD. + Внутренний набор DTD.Например, данное свойство возвращает содержимое между квадратными скобками <!DOCTYPE doc [...]>. + + + Получает или задает объект . + XmlNamespaceManager. + + + Получает класс , используемый для разъединения строк.Дополнительные сведения о разъединенных строках см. в разделе . + XmlNameTable. + + + Получает или задает открытый идентификатор. + Открытый идентификатор. + + + Получает или задает идентификатор системы. + Идентификатор системы. + + + Получает или задает текущую область xml:lang. + Текущая ограниченная область действия xml:lang.Если в области отсутствует xml:lang, возвращается значение String.Empty. + + + Получает или задает текущую область xml:space. + Значение , показывающее область xml:space. + + + Представляет полное имя XML. + + + Инициализирует новый экземпляр класса . + + + Инициализирует новый экземпляр класса с указанным именем. + Локальное имя, используемое в качестве имени объекта . + + + Инициализирует новый экземпляр класса с заданными именем и пространством имен. + Локальное имя, используемое в качестве имени объекта . + Пространство имен для объекта . + + + Предоставляет пустое полное имя . + + + Определяет, равен ли заданный объект текущему объекту . + Значение true, если оба объекта являются одним и тем же объектом экземпляра; в противном случае — значение false. + Объект для сравнения. + + + Возвращает хэш-код для . + Хэш-код объекта. + + + Получает значение, определяющее, пуст ли объект . + Значение true, если имя и пространство имен представляют собой пустые строки; в противном случае — значение false. + + + Получает строковое представление полного имени объекта . + Строковое представление полного имени или String.Empty, если для объекта не определено имя. + + + Получает строковое представление пространства имен для объекта . + Строковое представление пространства имен или String.Empty, если для объекта не определено пространство имен. + + + Сравнивает два объекта . + Значение true, если у двух объектов совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Сравнивает два объекта . + Значение true, если у двух объектов не совпадают имена и пространства имен; в противном случае — значение false. + Объект для сравнения. + Объект для сравнения. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + + + Возвращает строковое значение полного имени . + Строковое значение полного имени в формате namespace:localname.Если у объекта не определено пространство имен, данный метод вернет только локальное имя. + Имя объекта. + Пространство имен объекта. + + + Предоставляет средство чтения, обеспечивающее быстрый прямой доступ (без кэширования) к данным XML.Чтобы просмотреть исходный код .NET Framework для этого типа, см. ссылки на источник. + + + Инициализирует новый экземпляр класса XmlReader. + + + Когда переопределено в производном классе, возвращает количество атрибутов текущего узла. + Количество атрибутов текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает базовый URI текущего узла. + Базовый URI текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает значение, указывающее, реализует ли объект методы чтения двоичного содержимого. + Значение true, если реализуются методы чтения двоичного содержимого; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, указывающее, реализует ли объект метод . + Значение true, если объект реализует метод ; в противном случае false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, способно ли данное средство чтения выполнять синтаксический анализ и разрешение сущностей. + Значение true, если средство чтения позволяет анализировать и разрешать объекты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Создает новый с помощью указанного потока с параметрами по умолчанию. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + + + Создает новый экземпляра с параметрами и указанного потока. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанные сведения о потоке, параметры и контекст для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Поток, содержащий XML-данные. просматривает первые байты потока в поисках метки порядка следования байтов или другого признака кодировки.Эта кодировка после определения используется в последующем считывании потока, а процедура обработки продолжает анализировать входные данные как поток символов Юникода. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра с помощью модуля чтения указанного текста. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средство чтения XML для декодирования потока данных. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения и параметры. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового .Данное значение может быть null. + Значение параметра — null. + + + Создает новый экземпляра, используя указанный текст чтения, параметры и контекст сведения для синтаксического анализа. + Объект, используемый для чтения XML-данных в потоке. + Модуль чтения текста для чтения XML-данных.Модуль чтения текста возвращает поток символов Юникода, поэтому кодировки, указанной в объявлении XML не используется средством чтения XML для декодирования потока данных. + Параметры для нового экземпляра.Данное значение может быть null. + Сведения о контексте, необходимыми для синтаксического анализа XML-фрагмент.Контекстные сведения могут содержать используемый класс , кодировку, область пространства имен, текущий xml:lang, область xml:space, базовый URI и DTD.Данное значение может быть null. + Значение параметра — null. + Значения присвоены как свойству , так и свойству .(Только одно из этих свойств NameTable можно установить и использовать). + + + Создает новый экземпляр с указанным URI. + Объект, используемый для чтения XML-данных в потоке. + URI для файла, содержащего XML-данные.Класс используется для преобразования пути к классическому формату данных. + Значение параметра — null. + У объекта нет достаточных разрешений для доступа к расположению XML-данных. + Файл, указанный URI, не существует. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанный URI и параметры. + Объект, используемый для чтения XML-данных в потоке. + URI файла с XML-данными.Объект в объекте используется для преобразования пути в стандартный формат данных.Если равно null, используется объект . + Параметры для нового экземпляра.Данное значение может быть null. + Значение параметра — null. + Не удается найти файл, заданный URI. + В .NET для приложений Магазина Windows или переносимой библиотеке классов вместо этого перехватите исключение базового класса .Формат URI является неправильным. + + + Создает новый экземпляра, используя указанное средство чтения XML и параметры. + Объект, который заключается в оболочку вокруг указанного объекта. + Объект, который требуется использовать в качестве базового средства чтения XML. + Параметры для нового экземпляра.Уровень соответствия объекта должен или быть равным уровню соответствия базового средства чтения, или иметь значение . + Значение параметра — null. + Если объект задает уровень соответствия, который не согласован с уровнем соответствия базового средства чтения.-или-Базовый объект находится в состоянии или . + + + Когда переопределено в производном классе, возвращает глубину текущего узла в XML-документе. + Глубина текущего узла в XML-документе. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + trueЧтобы освободить управляемые и неуправляемые ресурсы; false чтобы освободить только неуправляемые ресурсы. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, показывающее, позиционировано ли средство чтения в конец потока. + Значение true, если средство чтения установлено в конец потока; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута.Этот метод не изменяет позицию средства чтения. + Индекс атрибута.Индексация начинается с нуля.(Индекс первого атрибута равен нулю.) + + выходит за пределы допустимого диапазона.Оно должно быть неотрицательным и меньшим, чем размер коллекции атрибутов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null. + Полное имя атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден или значение равно String.Empty, возвращается значение null.Этот метод не изменяет позицию средства чтения. + Локальное имя атрибута. + URI пространства имен атрибута. + + is null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно возвращает значение текущего узла. + Значение текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Возвращает значение, показывающее, имеются ли атрибуты у текущего узла. + Значение true, если текущий узел содержит атрибуты; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, показывающее, имеет ли текущий узел свойство . + Значение true, если узел, на котором расположено средство чтения, может иметь значение Value; в противном случае — false.Если значение равно false, узел принимает значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение, определяющее, является ли текущий узел атрибутом, созданным из значения по умолчанию, определенного в DTD или схеме. + Значение true, если текущий узел является атрибутом, значение которого было создано из значения по умолчанию, определенного в DTD или схеме; значение false, если значение атрибута было задано явно. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение, определяющее, является ли текущий узел пустым элементом (например, <MyElement/>). + Значение true, если текущий узел является элементом (свойство имеет значение XmlNodeType.Element), который заканчивается на />; в противном случае — false. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым именем XML. + Значение true, если имя является допустимым; в противном случае — false. + Имя для проверки. + Значение параметра — null. + + + Возвращает значение, определяющее, является ли строковый аргумент допустимым токеном имени XML. + Значение true, если аргумент является допустимой лексемой имени; в противном случае — false. + Токен имени для проверки. + Значение параметра — null. + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента. + Значение true, если метод находит открывающий тег или пустой тег элемента; значение false, если тип найденного узла отличается от XmlNodeType.Element. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствует ли значение свойства элемента заданному аргументу. + Значение true, если полученный в результате узел является элементом, а свойство Name совпадает с указанной строкой.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойство Name элемента не совпадает с указанной строкой. + Строка противопоставляется значению свойства Name найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Вызывает метод и проверяет, является ли текущий узел содержимого открывающим тегом или пустым тегом элемента, а также соответствуют ли значения свойств и элемента заданным строкам. + Значение true, если полученный в результате узел является элементом.Значение false, если обнаружен узел с типом, отличным от XmlNodeType.Element, или если свойства LocalName и NamespaceURI элемента не совпадают с указанными строками. + Строка, которая противопоставляется значению свойства LocalName найденного элемента. + Строка, которая противопоставляется значению свойства NamespaceURI найденного элемента. + Во входном потоке обнаружен неправильный XML-код. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает значение атрибута по указанному индексу. + Значение указанного атрибута. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанным свойством . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает значение атрибута с указанными свойствами и . + Значение указанного атрибута.Если атрибут не найден, возвращается значение null. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает локальное имя текущего узла. + Имя текущего узла с удаленным префиксом.Например, LocalName имеет значение book для элемента <bk:book>.Для безымянных типов узлов (например, Text, Comment и т. д.) данное свойство возвращает String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, разрешает префикс пространства имен в области видимости текущего элемента. + URI пространства имен, которое отображает префикс, или значение null, если соответствующий префикс не найден. + Префикс, для которого требуется разрешить URI пространства имен.Чтобы сопоставить пространство имен по умолчанию, необходимо передать пустую строку. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к атрибуту с указанным индексом. + Индекс атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр имеет отрицательное значение. + + + При переопределении в производном классе перемещает к атрибуту с указанным . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Полное имя атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + При переопределении в производном классе перемещает к атрибуту с указанными и . + Значение true, если атрибут найден; в противном случае — false.Если значение false, позиция средства чтения не изменяется. + Локальное имя атрибута. + URI пространства имен атрибута. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Проверяет, является ли текущий узел узлом содержимого (текст без пустого пространства, CDATA, Element, EndElement, EntityReference или EndEntity).Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла.Пропускаются узлы следующих типов: ProcessingInstruction, DocumentType, Comment, Whitespace и SignificantWhitespace. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + В асинхронном режиме проверяет, является ли текущий узел узлом содержимого.Если узел не является узлом содержимого, средство чтения пропускает этот узел и переходит к следующему узлу содержимого или в конец файла. + Значение для текущего узла, найденного с помощью метода, или значение XmlNodeType.None, если средство чтения достигло конца потока входных данных. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, переходит к элементу, содержащему текущий узел атрибута. + Значение true, если средство чтения находится на атрибуте (средство чтения перемещается к элементу с этим атрибутом); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к первому атрибуту. + Значение true, если атрибут существует (средство чтения перемещается к первому атрибуту); в противном случае — false (позиция средства чтения не изменяется). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, переходит к следующему атрибуту. + Значение true, если присутствует следующий атрибут; значение false, если другие атрибуты отсутствуют. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает полное имя текущего узла. + Полное имя текущего узла.Например, Name имеет значение bk:book для элемента <bk:book>.Возвращаемое имя зависит от значения свойства узла.Значения возвращаются для представленных ниже типов узлов.Для других типов узлов возвращается пустая строка.Тип узла Имя AttributeИмя атрибута. DocumentTypeИмя типа документа. ElementИмя тега. EntityReferenceИмя сущности, на которую существует ссылка. ProcessingInstructionКонечное приложение инструкции обработки. XmlDeclarationСтрока символов xml. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает URI пространства имен (определенное в спецификации W3C Namespace) узла, на котором расположено средство чтения. + Пространство имен URI текущего узла; в противном случае — пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает класс , связанный с данной реализацией. + Класс XmlNameTable, позволяющий получать в узле разделенную версию строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает тип текущего узла. + Одно из значений перечисления, которые задают тип текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает префикс пространства имен, связанный с текущим узлом. + Префикс пространства имен, связанный с текущим узлом. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе считывает следующий узел из потока. + trueЕсли чтение прошло успешно. в противном случае — false. + При синтаксическом анализе XML возникла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает следующий узел из потока. + Значение true, если чтение прошло успешно; значение false, если отсутствуют узлы для чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разбирает значение атрибута в один или более узлов Text, EntityReference или EndEntity. + Значение true, если присутствуют возвращаемые узлы.Значение false, если средство чтения не расположено на узле атрибута при первом вызове или все значения атрибута считаны.Пустой атрибут (например, misc="") возвращает значение true с отдельным узлом, имеющим значение String.Empty. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое объекта указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов.Например, этот объект можно использовать при преобразовании объекта в xs:string.Данное значение может быть null. + Содержимое имеет неверный формат для типа целевого объекта. + Недопустимая попытка приведения. + Значение параметра — null. + Текущий узел не принадлежит к поддерживаемому типу узлов.Дополнительные сведения приведены в таблице ниже. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое как объект указанного типа. + Объединенное текстовое содержимое или значение атрибута, преобразованное в требуемый тип. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает декодированные из кодировки Base64 двоичные байты. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Метод не поддерживается на текущем узле. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое и возвращает раскодированные двоичные байты BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущей позиции как значение Boolean. + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущем положении как объект . + Содержимое текста в текущей позиции как объект . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как число с плавающей запятой двойной точности. + Текстовое содержимое в виде числа с плавающей запятой двойной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Содержимое текста в текущей позиции как число с плавающей запятой одиночной точности. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 32-разрядное целое число со знаком. + Содержимое как 32-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текстовое содержимое в текущей позиции как 64-разрядное целое число со знаком. + Содержимое как 64-разрядное целое число со знаком. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает содержимое текста в текущей позиции как значение . + Текстовое содержимое как самый подходящий объект CLR. + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое как самый подходящий объект CLR. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Недопустимая попытка приведения. + Недопустимый формат строки. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое текста в текущем положении как объект . + Текстовое содержимое в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает содержимое элемента в качестве требуемого типа. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает содержимое элемента как требуемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения.Примечание.   С выпуском платформы .NET Framework 3.5 значение параметра может иметь тип . + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Чтение значения Decimal.MaxValue. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое элемента как запрашиваемый тип. + Содержимое элемента, преобразованное в требуемый типизированный объект. + Тип возвращаемого значения. + Объект , используемый для разрешения любых префиксов пространств имен, имеющих отношение к преобразованию типов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое Base64. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает элемент и раскодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Значение параметра — null. + Текущий узел не является узлом элемента. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Содержимое элемента — смешанное. + Невозможно преобразовать содержимое в требуемый тип. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает элемент и декодирует содержимое BinHex. + Количество байтов, записанных в буфер. + Буфер, в который копируется полученный текст.Это значение не может быть равно null. + Смещение в буфере, с которого следует начать копировать результат. + Максимальное количество копируемых в буфер байтов.Этот метод возвращает фактическое количество скопированных байтов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект типа . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой двойной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой двойной точности. + Содержимое элемента в виде числа с плавающей запятой двойной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как число с плавающей запятой одиночной точности. + Содержимое элемента в виде числа с плавающей запятой одиночной точности. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в число с плавающей запятой одиночной точности. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 32-разрядного целого числа со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 32-разрядное целое число со знаком. + Содержимое элемента как целое 32-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 32-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Считывает текущий элемент и возвращает содержимое в виде 64-разрядного целого числа со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, совпадают ли указанные локальное имя и URI пространства имен с таковыми для текущего элемента, затем считывает текущий элемент и возвращает содержимое как 64-разрядное целое число со знаком. + Содержимое элемента как целое 64-разрядное целое число со знаком. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента не может быть преобразовано в 64-разрядное знаковое целое число. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Прочитывает текущий элемент и возвращает содержимое в качестве объекта . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента невозможно преобразовать в запрошенный тип. + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Не удается преобразовать содержимое элемента в запрошенный тип. + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Упакованный объект CLR наиболее подходящего типа.Свойство служит для определения подходящего типа CLR.Если содержимое типизировано как тип списка, этот метод возвращает массив упакованных объектов соответствующего типа. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Считывает текущий элемент и возвращает содержимое объекта . + Содержимое элемента в виде объекта . + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет соответствие указанного URI локального имени и пространства имен с URI текущего элемента, затем считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Локальное имя элемента. + Пространство имен URI элемента. + Объект не расположен на элементе. + Текущий элемент содержит дочерние элементы.-или-Содержимое элемента нельзя преобразовать в объект . + Метод вызван с аргументами null. + Указанное локальное имя и URI пространства имен не совпадают с аналогичными параметрами текущего считываемого элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает текущий элемент и возвращает содержимое как объект . + Содержимое элемента в виде объекта . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел содержимого закрывающим тегом, и позиционирует средство чтения на следующий узел. + Текущий узел не является закрывающим тегом или если во входном потоке обнаружен неверный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, считывает как строку все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка.Если текущий узел не является элементом или атрибутом, возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает в виде строки все содержимое, включая разметку. + Все содержимое XML-кода в текущем узле, включая разметку.Если текущий узел не имеет дочерних узлов, возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, считывает содержимое, включая разметку, представляющую этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Неправильный формат XML, или при синтаксическом анализе XML произошла ошибка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает содержимое, включая разметку, представляющее этот узел и все его дочерние узлы. + Если средство чтения позиционировано на узел элемента или атрибута, данный метод возвращает все содержимое XML текущего узла и всех его дочерних узлов, включая разметку; в противном случае возвращается пустая строка. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Проверяет, является ли текущий узел элементом и перемещает модуль чтения к следующему узлу. + В входном потоке обнаружен неправильный XML. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным , и перемещает средство чтения на следующий узел. + Полное имя элемента. + В входном потоке обнаружен неправильный XML. -или- элемента не соответствует заданному . + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Проверяет, является ли текущий узел элементом с заданным и , и перемещает средство чтения на следующий узел. + Локальное имя элемента. + Пространство имен URI элемента. + В входном потоке обнаружен неправильный XML.-или-Свойства и найденного элемента не совпадают с предоставленными аргументами. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Когда переопределено в производном классе, возвращает состояние средства чтения. + Одно из значений перечисления, указывающее состояние модуля чтения. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает новый экземпляр XmlReader, который может использоваться для считывания текущего узла и всех его потомков. + Установить новый экземпляр средства чтения XML .Вызов метод помещает новый модуль чтения на узел, который был текущим перед вызовом метод. + XML чтения не позиционировано на элементе при вызове этого метода. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Переводит к следующему сопоставленному элементу-потомку с указанным проверенным именем. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Полное имя элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит к следующему элементу-потомку с указанным локальным именем и URI пространства имен. + true, если найден сопоставленный элемент-потомок; в противном случае — false.Если сопоставленный дочерний элемент не найден, средство чтения позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента.Если средство чтения не размещено на элементе при вызове метода , последний возвращает значение false и положение не изменяется. + Локальное имя элемента, на который следует переместиться. + URI пространства имен элемента, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Выполняет чтение до обнаружения элемента с указанным полным именем. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Полное имя элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Выполняет чтение до обнаружения указанных локального имени и URI пространства имен. + Значение true, если найден соответствующий элемент; в противном случае —false и перемещение в конец файла. + Локальное имя элемента. + Пространство имен URI элемента. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Переводит XmlReader к следующему сопоставленному родственному элементу с указанным проверенным именем. + true, если найден сопоставленный родственный элемент; в противном случае — false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Полное имя элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Параметр является пустой строкой. + + + Переводит XmlReader к следующему родственному элементу с указанным локальным именем и URI пространства имен. + Значение true, если найден сопоставленный родственный элемент; в противном случае — значение false.Если сопоставленный родственный элемент не найден, средство чтения XmlReader позиционируется на закрывающем теге ( является XmlNodeType.EndElement) родительского элемента. + Локальное имя элемента того же уровня, на который следует переместиться. + Универсальный код ресурса (URI) пространства имен элемента того же уровня, на который следует переместиться. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Оба параметра имеют значение null. + + + Считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + У текущего узла нет значения (значение свойства — false). + Значение параметра — null. + Значение индекса в буфере или сумма значений индекса и счетчика больше, чем выделенный размер буфера. + Реализация не поддерживает данный метод. + Данные XML имеют неправильный формат. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно считывает большие потоки текста, внедренного в XML-документ. + Количество символов, считанных в буфер.По окончании текстового содержимого возвращается нуль. + Массив символов, выполняющий функции буфера, в который записывается текстовое содержимое.Это значение не может быть равно null. + Смещение в буфере, где может начать копировать результаты. + Максимальное количество копируемых в буфер символов.Этот метод возвращает фактическое количество скопированных символов. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + При переопределении в производном классе разрешает ссылки для сущностей для узлов EntityReference. + Средство чтения не расположено на узле EntityReference; эта реализация средства чтения не может разрешить сущности (свойство возвращает значение false). + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Получает объект , используемый для создания данного экземпляра . + Объект , использованный для создания этого экземпляра средства чтения.Если это средство чтения не было создано с помощью метода , это свойство возвращает null. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Пропускает дочерний узел текущего узла. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Асинхронно пропускает дочерние узлы текущего узла. + Текущий узел. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + Асинхронный метод вызван без присвоения флагу значения true.В этом случае вызывается исключение с сообщением "Если требуется использовать асинхронные методы, присвойте свойству XmlReaderSettings.Async значение true". + + + Когда переопределено в производном классе, возвращает текстовое значение текущего узла. + Возвращаемое значение зависит от значения свойства узла.В следующей таблице представлен список возвращаемых типов узлов со значениями.Все прочие типы узлов возвращают значение String.Empty.Тип узла Значение AttributeЗначение атрибута. CDATAСодержимое раздела CDATA. CommentСодержимое комментария. DocumentTypeВнутреннее подмножество. ProcessingInstructionПолное содержимое, исключая конечное приложение. SignificantWhitespaceПустое пространство в разметке модели со смешанным содержимым. TextСодержимое текстового узла. WhitespaceПустое пространство между разметкой. XmlDeclarationСодержимое объявления. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Возвращает тип CLR текущего узла. + Тип CLR, соответствующий типизированному значению узла.Значение по умолчанию — System.String. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + При переопределении в производном классе получает текущую область действия xml:space. + Одно из значений .Если ограниченная область действия xml:space отсутствует, данное свойство принимает значение XmlSpace.None. + Метод вызван до завершения предыдущей асинхронной операции.В этом случае вызывается исключение с сообщением "асинхронная операция уже выполняется". + + + Задает набор функций, которые должны поддерживаться объектом , создаваемым с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если могут использоваться асинхронные методы; в противном случае — значение false. + + + Возвращает или задает значение, показывающее, осуществляется ли проверка символов. + Значение true — проверка осуществляется; в противном случае — false.Значение по умолчанию — true.ПримечаниеЕсли средство чтения обрабатывает текстовые данные, всегда происходит проверка допустимости XML-имен и текстового содержимого независимо от значения этого свойства.Задание свойству значения false отключает проверку символов для ссылок на сущности символов. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли закрыть основной поток или при закрытии средства чтения. + Значение true — закрыть основной поток или при закрытии средства чтения; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия для . + Одно из значений перечисления, указывающее уровень совместимости, который будет обеспечивать средства чтения XML.Значение по умолчанию — . + + + Получает или задает значение, определяющее обработку определений DTD. + Одно из значений перечисления, которое определяет обработку DTD.Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли игнорировать комментарии. + true — игнорировать комментарии; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, указывающее, следует ли игнорировать инструкции по обработке. + true — игнорировать инструкции обработки; в противном случае false.Значение по умолчанию — false. + + + Возвращает или задает значение, определяющее, будут ли игнорироваться незначимые символы-разделители. + Значение true, если пустое пространство будет игнорироваться; в противном случае — false.Значение по умолчанию — false. + + + Возвращает или задает смещение номера строки объекта . + Смещение номера строки.Значение по умолчанию — 0. + + + Возвращает или задает смещение позиции строки объекта . + Смещение позиции строки.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое количество символов в документе, которые возникают вследствие расширения сущностей. + Наибольшее количество символов вследствие расширения сущностей.Значение по умолчанию — 0. + + + Возвращает или задает значение, указывающее максимально допустимое число символов в XML-документе.Нуль (0) означает отсутствие ограничений на размер XML-документа.Значение, не равное нулю, указывает максимальное количество символов. + Максимально допустимое количество символов в XML-документе.Значение по умолчанию — 0. + + + Возвращает или задает таблицу , используемую для разделенных сравнений строк. + Таблица , в которой хранятся все разделенные строки, используемые экземплярами , созданными с помощью объекта .Значение по умолчанию — null.Созданный экземпляр будет использовать новую пустую таблицу , если это значение будет равно null. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Задает текущую область xml:space. + + + Область xml:space соответствует значению default. + + + Нет области xml:space. + + + Область xml:space соответствует значению preserve. + + + Представляет средство записи, обеспечивающее быстрый прямой способ (без кэширования) создания потоков или файлов, содержащих XML-данные. + + + Инициализирует новый экземпляр класса . + + + Создает новый экземпляр с использованием указанного потока. + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + The value is null. + + + Создает новый экземпляр с помощью потока и объекта . + Объект . + Поток, в который будет выполняться запись. записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + + , в которое необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + + , в который необходимо записать.Объект записывает синтаксис текста XML 1.0 и добавляет его к указанному потоку . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + The value is null. + + + Создает новый экземпляр с использованием объектов и . + Объект . + Класс , в который осуществляется запись.Содержимое, записанное методом , добавляется в . + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Создает новый экземпляр с использованием указанного объекта . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + The value is null. + + + Создает новый экземпляр с использованием указанных объектов и . + Возвращает объект , являющийся оболочкой указанного объекта . + Объект , который следует использовать в качестве базового средства записи. + Объект , использованный для настройки нового экземпляра.Если значение равно null, используется с параметрами по умолчанию.Если используется вместе с методом , необходимо использовать свойство для получения объекта с верными параметрами.Это гарантирует правильность параметров выходных данных для объекта . + The value is null. + + + Освобождает все ресурсы, используемые текущим экземпляром класса . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Освобождает неуправляемые ресурсы, используемые объектом , а при необходимости освобождает также управляемые ресурсы. + Значение true позволяет освободить управляемые и неуправляемые ресурсы; значение false позволяет освободить только неуправляемые ресурсы. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, сохраняет в базовый поток содержимое буфера, а также сохраняет основной поток. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает в базовый поток содержимое буфера и сохраняет базовый поток. + Задача, представляющая асинхронную операцию Flush. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает ближайший префикс, определенный в области видимости текущего пространства имен для URI пространства имен. + Соответствующий префикс или значение null, если в текущей области отсутствует соответствующий URI пространства имен. + URI пространства имен, префикс которого нужно найти. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Получает объект , используемый для создания данного экземпляра . + Объект , используемый для создания этого экземпляра модуля записи.Если это средство записи не было создано с помощью метода , это свойство возвращает null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе записывает все атрибуты, найденные в текущей позиции в объекте . + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает все атрибуты, найденные в текущей позиции в объекте . + Задача, представляющая асинхронную операцию WriteAttributes. + XmlReader, из которого происходит копирование атрибутов. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем и значением. + Локальное имя атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным локальным именем, URI пространства имен и значением. + Локальное имя атрибута. + URI пространства имен, который связывается с атрибутом. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает атрибут с указанным префиксом, локальным именем, URI пространства имен и значением. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает атрибут с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteAttributeString. + Префикс пространства имен атрибута. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + Значение атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно преобразует указанный набор двоичных байтов в кодировку Base64 и записывает получившийся текст. + Задача, представляющая асинхронную операцию WriteBase64. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе преобразует указанный набор двоичных байтов как BinHex и выводит получившийся текст. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно кодирует указанные двоичные байты как BinHex и выводит получившийся текст. + Задача, представляющая асинхронную операцию WriteBinHex. + Кодируемый массив байтов. + Позиция в буфере, с которой начинается запись байтов. + Количество записываемых байтов. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает блок <![CDATA[...]]>, содержащий заданный текст. + Текст, записываемый в блок CDATA. + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает блок <![CDATA[...]]>, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteCData. + Текст, записываемый в блок CDATA. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вызывает создание сущности знака для указанного значения знака Юникода. + Знак Юникода, для которого создается сущность знака. + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно инициирует создание сущности знака для указанного значения знака Юникода. + Задача, представляющая асинхронную операцию WriteCharEntity. + Знак Юникода, для которого создается сущность знака. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает содержимое текстового буфера. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает содержимое текстового буфера. + Задача, представляющая асинхронную операцию WriteChars. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает примечание <!--...-->, содержащее заданный текст. + Текст, записываемый в примечание. + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает комментарий <!--...-->, содержащий заданный текст. + Задача, представляющая асинхронную операцию WriteComment. + Текст, записываемый в примечание. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление DOCTYPE с указанным именем и дополнительными атрибутами. + Задача, представляющая асинхронную операцию WriteDocType. + Имя DOCTYPE.Не должно быть пустым. + Если значение не равно нулю, записывается также PUBLIC "pubid" "sysid", где и заменяются значениями заданных аргументов. + Если параметр имеет значение null, а параметр не равен нулю, записывается SYSTEM "sysid", где замещается значением данного аргумента. + Если не равно нулю, записывает [subset], где subset замещается значением данного аргумента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает элемент с заданным локальным именем и значением. + Локальное имя элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным локальным именем, URI пространства имен и значением. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает элемент с заданным префиксом, локальным именем, универсальный кодом ресурса (URI) пространства имен и значением. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает элемент с заданным префиксом, локальным именем, универсальным кодом ресурса (URI) пространства имен и значением. + Задача, представляющая асинхронную операцию WriteElementString. + Префикс элемента. + Локальное имя элемента. + Универсальный код ресурса (URI) пространства имен элемента. + Значение элемента. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе закрывает предыдущий вызов . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает предыдущий вызов . + Задача, представляющая асинхронную операцию WriteEndAttribute. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает все открытые элементы и атрибуты, возвращая средство записи в начальное состояние. + Задача, представляющая асинхронную операцию WriteEndDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе записывает ссылку на сущность в виде &name;. + Имя ссылки на сущность. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает ссылку на сущность в виде &name;. + Задача, представляющая асинхронную операцию WriteEntityRef. + Имя ссылки на сущность. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно закрывает один элемент и извлекает из стека область видимости соответствующего пространства имен. + Задача, представляющая асинхронную операцию WriteFullEndElement. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя его допустимость согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteName. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает указанное имя, гарантируя допустимость NmToken согласно рекомендациям W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Записываемое имя. + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанное имя, гарантируя, что это допустимый NmToken, согласно рекомендации W3C по языку XML версии 1.0 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name). + Задача, представляющая асинхронную операцию WriteNmToken. + Записываемое имя. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно копирует все данные из средства чтения в средство записи и перемещает средство чтения к началу следующего элемента того же уровня. + Задача, представляющая асинхронную операцию WriteNode. + Класс , из которого выполняется чтение. + Значение true, чтобы скопировать атрибуты по умолчанию из XmlReader; в противном случае — значение false. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает инструкцию обработки с пробелом между именем и текстом в следующем виде: <?имя текст?>. + Задача, представляющая асинхронную операцию WriteProcessingInstruction. + Имя инструкции по обработке. + Текст, включаемый в инструкцию по обработке. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе считывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Локальное имя для записи. + URI пространства имен для имени. + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает полное имя пространства имен.Этот метод выполняет поиск префикса для пространства имен в его области. + Задача, представляющая асинхронную операцию WriteQualifiedName. + Локальное имя для записи. + URI пространства имен для имени. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, вручную записывает из буфера символов необработанные данные для разметки . + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, вручную записывает из строки необработанные данные для разметки. + Строка, содержащая текст для записи. + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно, вручную записывает для разметки необработанные данные из буфера символов. + Задача, представляющая асинхронную операцию WriteRaw. + Массив символов, содержащий текст для записи. + Позиция в буфере, с которой начинается запись текста. + Количество символов для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно, вручную записывает необработанные данные для разметки. + Задача, представляющая асинхронную операцию WriteRaw. + Строка, содержащая текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает начало атрибута с заданным локальным именем. + Локальное имя атрибута. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает начало атрибута с заданным локальным именем и URI пространства имен. + Локальное имя атрибута. + Универсальный код ресурса (URI) пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает начало атрибута с указанным префиксом, локальным именем и URI пространства имен. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает начало атрибута с заданным префиксом, локальным именем и универсальным кодом ресурса (URI) пространства имен. + Задача, представляющая асинхронную операцию WriteStartAttribute. + Префикс пространства имен атрибута. + Локальное имя атрибута. + URI пространства имен атрибута. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает объявление XML с номером версии "1.0" и отдельным атрибутом. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает объявление XML с номером версии "1.0". + Задача, представляющая асинхронную операцию WriteStartDocument. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Асинхронно записывает объявление XML с номером версии "1.0". и отдельным атрибутом. + Задача, представляющая асинхронную операцию WriteStartDocument. + Если значение равно true, записывается "standalone=yes"; если false, записывается "standalone=no". + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, записывает открывающий тег с указанным локальным именем. + Локальное имя элемента. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен. + Локальное имя элемента. + URI пространства имен, связываемый с элементом.Если пространство имен уже находится в области видимости и с ним связан префикс, средство записи автоматически запишет этот префикс. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный открывающий тег и связывает его с заданным пространством имен и префиксом. + Задача, представляющая асинхронную операцию WriteStartElement. + Префикс пространства имен элемента. + Локальное имя элемента. + URI пространства имен, связываемый с элементом. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, возвращает состояние средства записи. + Одно из значений . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает заданное текстовое содержимое при переопределении в производном классе. + Текст для записи. + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает заданное текстовое содержимое. + Задача, представляющая асинхронную операцию WriteString. + Текст для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Когда переопределено в производном классе, создает и записывает сущность символа-заместителя для пары символов-заместителей. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно создает и записывает сущность символа-заместителя для пары символов-заместителей. + Задача, представляющая асинхронную операцию WriteSurrogateCharEntity. + Младший заместитель.Значение должно быть в диапазоне от 0xDC00 до 0xDFFF. + Старший заместитель.Значение должно быть в диапазоне от 0xD800 до 0xDBFF. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение объекта. + Значение объекта для записи.Примечание.   С выпуском платформы .NET Framework 3.5 этот метод принимает в качестве параметра. + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает число с плавающей запятой одиночной точности. + Число с плавающей запятой одиночной точности для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Записывает значение . + Значение типа для записи. + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Когда переопределено в производном классе, записывает указанный символ-разделитель. + Строка символов-разделителей. + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Асинхронно записывает указанный символ-разделитель. + Задача, представляющая асинхронную операцию WriteWhitespace. + Строка символов-разделителей. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + При переопределении в производном классе получает текущую область действия xml:lang. + Текущая ограниченная область действия xml:lang. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + При переопределении в производном классе возвращает класс , предоставляющий текущую область xml:space. + Объект XmlSpace, представляющий текущую область xml:space.Значение Значение NoneЗначение, задаваемое по умолчанию, если область xml:space отсутствует.DefaultТекущая область — xml:space=default.PreserveТекущая область — xml:space=preserve. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + Задает набор функций, которые должны поддерживаться объектом , созданным с помощью метода . + + + Инициализирует новый экземпляр класса . + + + Получает или задает значение, указывающее, можно ли использовать асинхронные методы для конкретного экземпляра . + Значение true, если асинхронные методы можно использовать; в противном случае — значение false. + + + Получает или задает значение, указывающее, должно ли средство записи XML выполнять проверку на предмет соответствия всех в документе разделу "2.2 Символы" документа W3C Рекомендации по XML 1.0. + Значение true для выполнения проверки символов; в противном случае — значение false.Значение по умолчанию — true. + + + Создает копию экземпляра . + Точная копия объекта . + + + Возвращает или задает значение, указывающее, следует ли объекту закрывать также и базовый поток или при вызове метода . + Значение true, если следует закрыть базовый поток или ; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает уровень соответствия, на предмет которого средство записи XML проверяет выходные данные XML. + Одно из значений перечисления, указывающее уровень соответствия (документ, фрагмент или автоматическое обнаружение).Значение по умолчанию — . + + + Возвращает или задает тип используемой кодировки текста. + Используемая кодировка текста.Значение по умолчанию — Encoding.UTF8. + + + Возвращает или задает значение, указывающее, следует ли использовать отступ для элементов. + Значение true, если необходимо записывать отдельные элементы в новых строках с отступом; в противном случае — значение false.Значение по умолчанию — false. + + + Возвращает или задает строку символов, используемую для отступов.Этот параметр используется, если значение свойства равно true. + Строка символов, используемая для отступов.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.По умолчанию - два пробела. + The value assigned to the is null. + + + Получает или задает значение, указывающие, должен ли объект при записи содержимого XML удалять дубликаты объявлений пространств имен.По умолчанию средство записи выводит все объявления пространства имен, присутствующие в его сопоставителе пространства имен. + Перечисление , которое указывает, нужно ли удалять дубликаты объявлений пространств имен в объекте . + + + Возвращает или задает строку символов, используемую для разрыва строк. + Строка символов, используемая для разрыва строк.Может принять любое строковое значение.Однако в целях обеспечения корректности XML-кода необходимо использовать только допустимые символы-разделители: символы пробела, табуляции, возврата каретки или перевода строки.Значение по умолчанию — \r\n (возврат каретки, новая строка). + The value assigned to the is null. + + + Возвращает или задает значение, указывающее, следует ли осуществлять нормализацию разрывов строк в выходных данных. + Одно из значений .Значение по умолчанию — . + + + Возвращает или задает значение, указывающее, следует ли записывать атрибуты на новой строке. + Значение true, если необходимо записывать атрибуты в отдельные строки; в противном случае — значение false.Значение по умолчанию — false.ПримечаниеЭтот параметр ни на что не влияет, если значение свойства равно false.Если значение объекта равно true, каждому атрибуту предшествует новая строка и дополнительный уровень отступа. + + + Возвращает или задает значение, определяющее, следует ли опустить XML-объявление. + Значение true, если необходимо пропустить XML-объявление; в противном случае — значение false.Значением по умолчанию является false; XML-объявление записывается. + + + Повторно загружает значения по умолчанию для элементов класса параметров. + + + Получает или задает значение, указывающее, добавляет ли закрывающие теги ко всем незакрытым тегам элементов при вызове метода . + Значение true, если все незакрытые теги элементов будут закрыты; в противном случае — значение false.Значение по умолчанию — true. + + + Встроенное представление схемы XML, как указано в спецификациях консорциума W3C Схема XML. Часть 1: структуры и Схема XML. Часть 2: типы данных. + + + Указывает, требуется ли префикс пространства имен для атрибутов или элементов. + + + Форма элемента и атрибута не указана в схеме. + + + Для элементов и атрибутов необходим префикс пространства имен. + + + Префикс пространства имен для элементов и атрибутов не требуется. + + + Предоставляет пользовательский формат для сериализации и десериализации XML. + + + Этот метод является зарезервированным, и его не следует использовать.При реализации интерфейса IXmlSerializable этот метод должен возвращать значение null (Nothing в Visual Basic), а если необходимо указать пользовательскую схему, то вместо использования метода следует применить к классу. + + , описывающая представление XML объекта, полученного из метода и включенного в метод . + + + Создает объект из представления XML. + Поток , из которого выполняется десериализация объекта. + + + Преобразует объект в представление XML. + Поток , в который выполняется сериализация объекта. + + + При применении к типу сохраняет имя статического метода типа, возвращающего схему XML и (или для анонимных типов), управляющих сериализацией типа. + + + Инициализация нового экземпляра класса , принимая имя статического метода, предоставляющего схему XML типа. + Имя статического метода, который должен быть реализован. + + + Получает или задает значение, определяющее, является ли целевой класс подстановочным классом, или содержит ли схема для класса только элемент xs:any. + true, если класс является подстановочным знаком, или схема содержит только элемент xs:any, в противном случае false. + + + Получает имя статического метода, предоставляющего схему XML типа, и имя его типа данных схемы XML. + Имя метода, вызываемого инфраструктурой XML, для возврата схемы XML. + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..107c2d4 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml @@ -0,0 +1,2665 @@ + + + + System.Xml.ReaderWriter + + + + 指定 对象执行的输入或输出检查的量。 + + + + 对象自动检测是否应该执行文档级别或片段级别检查,并执行相应的检查。如果你正在包装另一个 对象,外层对象不进行任何附加一致性检查。一致性检查只针对基础对象。有关如何确定符合性级别,请参见 属性。 + + + 按 W3C 定义,XML 数据符合格式良好的 XML 1.0 文档 的规则。 + + + 按 W3C 定义,XML 数据为 格式良好的 XML 片段。 + + + 指定用于处理 DTD 的选项。 枚举由 类使用。 + + + 将导致忽略 DOCTYPE 元素。将不发生任何 DTD 处理。 + + + 指定在遇到 DTD 时将引发 ,同时有消息指示禁用 DTD。这是默认行为。 + + + 提供一个接口,使类可以返回行和位置信息。 + + + 获取一个值,该值指示该类是否可返回行信息。 + 如果可以提供 ,则为 true;否则为 false。 + + + 获取当前行号。 + 当前行号;如果没有行信息可用(例如 返回 false),则为 0。 + + + 获取当前行位置。 + 当前行位置;如果没有行信息可用(例如 返回 false),则为 0。 + + + 提供对一组前缀和命名空间映射的只读访问。 + + + 获取当前在范围内的已定义前缀/命名空间映射的集合。 + 一个 ,包含当前在范围内的命名空间。 + 一个 值,指定要返回的命名空间节点的类型。 + + + 获取映射到指定前缀的命名空间 URI。 + 映射到前缀的命名空间 URI;如果前缀未映射到命名空间 URI,则为 null。 + 要查找其命名空间 URI 的前缀。 + + + 获取映射到指定命名空间 URI 的前缀。 + 映射到命名空间 URI 的前缀;如果命名空间 URI 未映射到前缀,则为 null。 + 要查找其前缀的命名空间 URI。 + + + 指定是否在 中移除重复的命名空间声明。 + + + 指定将不移除重复的命名空间声明。 + + + 指定将移除重复的命名空间声明。对于要移除的重复命名空间,前缀和命名空间必须匹配。 + + + 实现单线程 + + + 初始化 NameTable 类的新实例。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。如果 为零,则返回 String.Empty。 + 包含要添加字符串的字符数组。 + 数组中指定字符串第一个字符的从零开始的索引。 + 字符串中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 将指定的字符串原子化,并将其添加到 NameTable。 + 原子化字符串;如果 NameTable 中已存在字符串,则为现有字符串。 + 要添加的字符串。 + + 为 null。 + + + 获取包含相同字符(与给定数组中指定范围的字符相同)的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - >= .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 获取具有指定值的原子化字符串。 + 原子化字符串对象;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定如何处理分行符。 + + + 新行字符已实体化。当通过某个正常化 来读取输出时,此设置将保留所有字符。 + + + 新行字符未更改。输出与输入一样。 + + + 替换新行字符才能与 属性中指定的字符匹配。 + + + 指定读取器的状态。 + + + 已调用 方法。 + + + 已成功到达文件结尾。 + + + 出现错误,阻止读取操作继续进行。 + + + 未调用 Read 方法。 + + + 已调用 Read 方法。可能对读取器调用了其他方法。 + + + 指定 的状态。 + + + 指示正在写入特性值。 + + + 指示已调用 方法。 + + + 指示正在写入元素内容。 + + + 指示正在写入元素开始标记。 + + + 已引发异常,使 仍处于无效状态。可以调用 方法来将 置于 状态。任何其他 方法调用都将导致 + + + 指示正在写入 Prolog。 + + + 指示尚未调用 Write 方法。 + + + 对 XML 名称进行编码和解码,并提供方法在公共语言运行时类型和 XML 架构定义语言 (XSD) 类型之间进行转换。转换数据类型时,返回的值是独立于区域设置的。 + + + 对名称进行解码。该方法完成 方法的反向操作。 + 解码的名称。 + 要转换的名称。 + + + 将名称转换为有效的 XML 本地名称。 + 已编码的名称。 + 要编码的名称。 + + + 将名称转换为有效的 XML 名称。 + 返回名称,任何无效的字符都由转义字符串替换。 + 要转换的名称。 + + + 根据 XML 规范验证该名称是否有效。 + 已编码的名称。 + 要编码的名称。 + + + 转换为等效的 + 一个 Boolean 值,即 true 或 false。 + 要转换的字符串。 + + is null. + + does not represent a Boolean value. + + + 转换为等效的 + 与该字符串等效的 Byte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 代表单个字符的 Char。 + 包含所要转换的单个字符的字符串。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定日期是应该转换为本地时间,还是应该保留为协调通用时间 (UTC)(如果它为 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。“注意”   该字符串必须符合 XML DateTime 类型的 W3C 建议的子集。更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 从中转换 的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 根据此格式验证字符串 。 + + is null. + + or is an empty string or is not in the specified format. + + + 将提供的 转换为等效的 + 与提供的字符串等效的 + 要转换的字符串。 + 可以转换 的格式数组。 中的每个格式均可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) 将根据这些格式中的一个格式验证字符串 。 + + + 转换为等效的 + 与该字符串等效的 Decimal。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Double。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Guid。 + 要转换的字符串。 + + + 转换为等效的 + 与该字符串等效的 Int16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Int64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 SByte。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 Single。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为 + Boolean 的字符串表示形式,即“true”或“false”。 + 要转换的值。 + + + 转换为 + Byte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Char 的字符串表示形式。 + 要转换的值。 + + + 使用指定的 转换为 + + 的等效 + 要转换的 值。 + + 值之一,用于指定如何处理 值。 + The value is not valid. + The or value is null. + + + 将提供的 转换为 + 提供的 表示形式。 + 要转换的 。 + + + 将提供的 转换为指定格式的 + 提供的 的指定格式的 表示形式。 + 要转换的 。 + + 转换为的格式。该格式参数可以是 XML DateTime 类型的 W3C 建议的任何子集。(有关更多信息,请参见 http://www.w3.org/TR/xmlschema-2/#dateTime。) + + + 转换为 + Decimal 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Double 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Guid 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Int64 的字符串表示形式。 + 要转换的值。 + + + 转换为 + SByte 的字符串表示形式。 + 要转换的值。 + + + 转换为 + Single 的字符串表示形式。 + 要转换的值。 + + + 转换为 + TimeSpan 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt16 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt32 的字符串表示形式。 + 要转换的值。 + + + 转换为 + UInt64 的字符串表示形式。 + 要转换的值。 + + + 转换为等效的 + 与该字符串等效的 TimeSpan。 + 要转换的字符串。字符串格式必须符合 W3C XML 架构第 2 部分:持续时间数据类型建议。 + + is not in correct format to represent a TimeSpan value. + + + 转换为等效的 + 与该字符串等效的 UInt16。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt32。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 转换为等效的 + 与该字符串等效的 UInt64。 + 要转换的字符串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根据 W3C 可扩展标记语言建议验证该名称是否是有效的名称。 + 该名称(如果它是有效的 XML 名称)。 + 要验证的名称。 + + is not a valid XML name. + + is null or String.Empty. + + + 根据 W3C 可扩展标记语言建议,验证名称是否是有效的 NCName。NCName 是不能包含冒号的名称。 + 该名称(如果它是有效的 NCName)。 + 要验证的名称。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根据 W3C 的 XML 架构第 2 部分“数据类型建议”,验证字符串是否为有效 NMTOKEN + 名称标记(如果它是有效的 NMTOKEN)。 + 要验证的字符串。 + The string is not a valid name token. + + is null. + + + 如果字符串参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串实例。 + 如果参数中的所有字符都是有效的公共 ID 字符,则返回传入的字符串。 + 包含要验证的 ID 的 。 + + + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例。 + 如果字符串参数中的所有字符都是有效的空白字符,则返回传入的字符串实例;否则返回 null。 + 要验证的 。 + + + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 如果字符串参数中的所有字符和代理项对字符都是有效的 XML 字符,则返回传入的字符串;否则将引发 XmlException 并提供有关遇到的第一个无效字符的信息。 + 包含要验证的字符的 。 + + + 指定在字符串与 之间转换时,如何处理时间值。 + + + 作为本地时间处理。如果 对象表示协调通用时间 (UTC),它将转换为本地时间。 + + + 转换时应保留时区信息。 + + + 如果 要转换为字符串,将作为本地时间处理。 + + + 作为 UTC 处理。如果 对象表示本地时间,它将转换为 UTC。 + + + 返回有关上一个异常的详细信息。 + + + 初始化 XmlException 类的新实例。 + + + 使用指定的错误信息初始化 XmlException 类的新实例。 + 错误说明。 + + + 初始化 XmlException 类的新实例。 + 错误条件的说明。 + 引发 XmlException 的 (如果有的话)。此值可为 null。 + + + 用指定的消息、内部异常、行号和行位置初始化 XmlException 类的新实例。 + 错误说明。 + 导致当前异常的异常。此值可为 null。 + 指示错误发生位置的行号。 + 指示错误发生位置的行位置。 + + + 获取指示错误发生位置的行号。 + 指示错误发生位置的行号。 + + + 获取指示错误发生位置的行位置。 + 指示错误发生位置的行位置。 + + + 获取描述当前异常的消息。 + 解释异常原因的错误信息。 + + + 解析集合的命名空间、向集合添加命名空间和从集合中移除命名空间,以及提供对这些命名空间的范围管理。 + + + 用指定的 初始化 类的新实例。 + 要使用的 。 + null is passed to the constructor + + + 将给定的命名空间添加到集合。 + 与要添加的命名空间关联的前缀。使用 String.Empty 来添加默认命名空间。注意如果 将用于解析 XML 路径语言 (XPath) 表达式中的命名空间,则必须指定前缀。如果 XPath 表达式不包含前缀,则假定命名空间统一资源标识符 (URI) 为空命名空间。有关 XPath 表达式和 的更多信息,请参考 方法。 + 要添加的命名空间。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 获取默认命名空间的命名空间 URI。 + 返回默认命名空间的命名空间 URI;如果没有默认命名空间,则返回 String.Empty。 + + + 返回一个枚举数以用于循环访问 中的命名空间。 + 一个包含 存储的前缀的 + + + 获取被可用于枚举当前范围内的命名空间的前缀键控的命名空间名称的集合。 + 当前范围中的命名空间和前缀对的集合。 + 一个指定要返回的命名空间节点的类型的枚举值。 + + + 获取一个值,该值指示所提供的前缀是否具有为当前推送的范围定义的命名空间。 + 如果定义有命名空间,则为 true;否则为 false。 + 要查找的命名空间的前缀。 + + + 获取指定前缀的命名空间 URI。 + 返回 的命名空间 URI;如果没有映射的命名空间,则返回 null。返回的字符串是原子化的。有关原子化字符串的更多信息,请参见 类。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递 String.Empty。 + + + 查找为给定的命名空间 URI 声明的前缀。 + 匹配的前缀。如果没有映射的前缀,则方法返回 String.Empty。如果提供 null 值,则返回 null。 + 要为前缀解析的命名空间。 + + + 获取与此对象关联的 + 此对象使用的 + + + 将命名空间范围弹出堆栈。 + 如果堆栈上留有命名空间范围,则为 true;如果不再有要弹出的命名空间,则为 false。 + + + 将命名空间范围推送到堆栈上。 + + + 为给定的前缀移除给定的命名空间。 + 命名空间的前缀 + 要为给定的前缀移除的命名空间。所移除的命名空间来自当前的命名空间范围。忽略当前范围以外的命名空间。 + The value of or is null. + + + 定义命名空间范围。 + + + 在当前节点范围内定义的所有命名空间。这包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点范围内定义的所有命名空间,但不包括总是隐式声明的 xmlns:xml 命名空间。未定义返回的命名空间的顺序。 + + + 在当前节点本地定义的所有命名空间。 + + + 原子化字符串对象表。 + + + 初始化 类的新实例。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。如果 length 为零,则返回 String.Empty。 + 包含要添加的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,将指定的字符串原子化并将其添加到 XmlNameTable。 + 新的原子化字符串;如果已存在原子化字符串,则为此现有的原子化字符串。 + 要添加的名称。 + + 为 null。 + + + 当在派生类中被重写时,获取与给定数组中指定范围的字符包含相同字符的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。如果 为零,则返回 String.Empty。 + 包含要查找的名称的字符数组。 + 数组中指定名称第一个字符的从零开始的索引。 + 名称中的字符数。 + 0 > - 或 - >= .Length- 或 - > .Length如果 =0,则上述条件不会导致引发异常。 + + < 0。 + + + 当在派生类中被重写时,获取与指定的字符串包含相同值的原子化字符串。 + 原子化字符串;如果字符串尚未原子化,则为 null。 + 要查找的名称。 + + 为 null。 + + + 指定节点的类型。 + + + 特性(例如,id='123')。 + + + CDATA 节(例如,<![CDATA[my escaped text]]>)。 + + + 注释(例如,<!-- my comment -->)。 + + + 作为文档树的根的文档对象提供对整个 XML 文档的访问。 + + + 文档片段。 + + + 由以下标记指示的文档类型声明(例如,<!DOCTYPE...>)。 + + + 元素(例如,<item>)。 + + + 末尾元素标记(例如,</item>)。 + + + 由于调用 而使 XmlReader 到达实体替换的末尾时返回。 + + + 实体声明(例如,<!ENTITY...>)。 + + + 实体引用(例如,&num;)。 + + + 如果未调用 Read 方法,则由 返回。 + + + 文档类型声明中的表示法(例如,<!NOTATION...>)。 + + + 处理指令(例如,<?pi test?>)。 + + + 混合内容模型中标记间的空白或 xml:space="preserve" 范围内的空白。 + + + 节点的文本内容。 + + + 标记间的空白。 + + + XML 声明(例如,<?xml version='1.0'?>)。 + + + 提供 分析 XML 片段所需的所有上下文信息。 + + + 用指定的 、基 URI、xml:lang、xml:space 和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 子集用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、基 URI、xml:lang、xml:space、编码和文档类型值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + 文档类型声明的名称。 + public 标识符。 + 系统标识符。 + 内部 DTD 子集。DTD 用于实体解析,而不能用于文档验证。 + XML 片段的基 URI(从其加载片段的位置)。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang 和 xml:space 值初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + + 与用来构造 的 XmlNameTable 不同。 + + + 用指定的 、xml:lang、xml:space 和编码初始化 XmlParserContext 类的新实例。 + 用于将原子化字符串的 。如果这为 null,则改用用于构造 的名称表。有关原子化字符串的更多信息,请参见 。 + 用于查找命名空间信息的 ,或者为 null。 + xml:lang 范围。 + 一个 值,指示 xml:space 范围。 + 一个 对象,指示编码方式设置。 + + 与用来构造 的 XmlNameTable 不同。 + + + 获取或设置基 URI。 + 用于解析 DTD 文件的基 URI。 + + + 获取或设置文档类型声明的名称。 + 文档类型声明的名称。 + + + 获取或设置编码类型。 + 一个 对象,指示编码类型。 + + + 获取或设置内部 DTD 子集。 + 内部 DTD 子集。例如,此属性返回方括号 <!DOCTYPE doc [...]> 之间的所有内容。 + + + 获取或设置 + XmlNamespaceManager。 + + + 获取用于原子化字符串的 。有关原子化字符串的更多信息,请参见 + XmlNameTable。 + + + 获取或设置公共标识符。 + public 标识符。 + + + 获取或设置系统标识符。 + 系统标识符。 + + + 获取或设置当前 xml:lang 范围。 + 当前的 xml:lang 范围。如果范围中没有 xml:lang,则返回 String.Empty。 + + + 获取或设置当前 xml:space 范围。 + 一个 值,指示 xml:space 范围。 + + + 表示 XML 限定名。 + + + 初始化 类的新实例。 + + + 用指定的名称初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + + 用指定的名称和命名空间初始化 类的新实例。 + 要用作 对象的名称的本地名称。 + + 对象的命名空间。 + + + 提供空 + + + 确定指定的 对象是否等同于当前的 + 如果它们两个是相同的实例对象,则为 true;否则为 false。 + 要比较的 。 + + + 返回 的哈希代码。 + 该对象的哈希代码。 + + + 获取一个值,该值指示 是否为空。 + 如果名称和命名空间为空字符串,则为 true;否则为 false。 + + + 获取 的限定名的字符串表示形式。 + 限定名的字符串表示形式,或者如果没有为对象定义名称,则为 String.Empty。 + + + 获取 的命名空间的字符串表示形式。 + 命名空间的字符串表示形式,或者如果没有为对象定义命名空间,则为 String.Empty。 + + + 比较两个 对象。 + 如果两个对象具有相同的名称和命名空间值,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 比较两个 对象。 + 如果两个对象的名称和命名空间值不同,则为 true;否则为 false。 + 要比较的 。 + 要比较的 。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + + + 返回 的字符串值。 + 采用 namespace:localname 格式的 的字符串值。如果对象没有已定义的命名空间,则此方法只返回本地名称。 + 对象的名称。 + 对象的命名空间。 + + + 表示提供对 XML 数据进行快速、非缓存、只进访问的读取器。若要浏览此类型的.NET Framework 源代码,请参阅参考源。 + + + 初始化 XmlReader 类的新实例。 + + + 当在派生类中被重写时,获取当前节点上的属性数。 + 当前节点上的属性数目。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的基 URI。 + 当前节点的基 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现二进制内容读取方法。 + 如果实现二进制内容读取方法,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示 是否实现 方法。 + true if the implements the method; otherwise false. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取一个值,该值指示此读取器是否可以分析和解析实体。 + 如果此读取器可以分析和解析实体,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 创建一个新实例使用默认设置使用指定的流。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + + + 创建一个新具有指定的流和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + + 值为 null。 + + + 创建一个新实例使用指定的流、 设置和上下文信息用于分析。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的流。 对流的前几个字节进行扫描,查找字节顺序标记或其他编码标志。在确定编码方式后,使用该编码方式继续读取流,而处理过程继续将输入内容分析为 (Unicode) 字符流。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置。此值可为 null。 + + 值为 null。 + + + 创建一个新通过使用指定的文本读取器、 设置和上下文信息用于分析的实例。 + 一个用于读取数据流中所含数据的对象。 + 从其中读取 XML 数据的文本读取器。由于文本读取器返回的是 Unicode 字符流,因此,XML 读取器未使用 XML 声明中指定的编码对数据流进行解码。 + 新的设置实例。此值可为 null。 + 分析 XML 片段所需的上下文信息.上下文信息可以包括要使用的 、编码、命名空间范围、当前的 xml:lang 和 xml:space 范围、基 URI 和文档类型定义。此值可为 null。 + + 值为 null。 + + 属性都包含值。(只可以设置并使用这两个 NameTable 属性之中的一个。) + + + 使用指定的 URI 创建一个新的 实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 类用于将路径转换为规范化数据表示形式。 + + 值为 null。 + + 没有访问 XML 数据位置所需的足够权限。 + 由 URI 标识的文件不存在。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 URI 和设置的实例。 + 一个用于读取数据流中所含数据的对象。 + 包含 XML 数据的文件的 URI。 对象上的 对象用于将路径转换为规范化数据表示形式。如果 为 null,则使用新的 对象。 + 新的设置实例。此值可为 null。 + + 值为 null。 + 无法找到由该 URI 指定的文件。 + 在 .NET for Windows Store 应用程序 或 可移植类库 中,请改为捕获基类异常 。URI 格式不正确。 + + + 创建一个新通过使用指定的 XML 读取器和设置的实例。 + 包装的对象周围指定对象。 + 要用作基础 XML 编写器的对象。 + 新的设置实例。 对象的一致性级别要么必须与基础读取器的一致性级别匹配,要么必须设置为 。 + + 值为 null。 + + 对象指定的一致性级别与基础读取器的一致性级别不一致。- 或 -基础 处于 状态。 + + + 当在派生类中被重写时,获取 XML 文档中当前节点的深度。 + XML 文档中当前节点的深度。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 类的当前实例占用的所有资源。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true to release both managed and unmanaged resources; false to release only unmanaged resources. + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示此读取器是否定位在流的结尾。 + 如果此读取器定位在流的结尾,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。此方法不移动读取器。 + 属性的索引。索引是从零开始的。(第一个属性的索引为 0。) + + 超出范围。它必须是非负数且小于特性集合的大小。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。 + 属性的限定名称。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果找不到该属性,或者值为 String.Empty,则返回 null。此方法不移动读取器。 + 属性的本地名称。 + 属性的命名空间 URI。 + + 为 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步获取当前节点的值。 + 当前节点的值。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 获取一个值,该值指示当前节点是否有任何属性。 + 如果当前节点具有属性,则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否可以具有 + 如果读取器当前定位在的节点可以具有 Value,则为 true;否则为 false。如果为 false,则节点值为 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否是从 DTD 或架构中定义的默认值生成的特性。 + 如果当前节点是其值从 DTD 或架构中定义的默认值生成的特性,则为 true;如果特性值是显式设置的,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取一个值,该值指示当前节点是否为空元素(例如 <MyElement/>)。 + 如果当前节点是一个以 /> 结尾的元素( 等于 XmlNodeType.Element),则为 true;否则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回一个值,该值指示字符串参数是否是有效的 XML 名称。 + 如果该名称有效,则为 true;否则为 false。 + 要验证的名称。 + + 值为 null。 + + + 返回一个值,该值指示该字符串参数是否是有效的 XML 名称标记。 + 如果它是有效的名称标记,则为 true;否则为 false。 + 要验证的名称标记。 + + 值为 null。 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记。 + 如果 找到开始标记或空元素标记,则为 true;如果找到不同于 XmlNodeType.Element 的节点类型,则为 false。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的参数匹配。 + 如果生成的节点是一个元素,且 Name 属性与指定的字符串匹配,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 Name 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 Name 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 调用 并测试当前内容节点是否是开始标记或空元素标记,以及所找到元素的 属性是否与给定的字符串匹配。 + 如果生成的节点是一个元素,则为 true。如果找到 XmlNodeType.Element 之外的节点类型,或者元素的 LocalName 和 NamespaceURI 属性与指定的字符串不匹配,则为 false。 + 与找到的元素的 LocalName 属性匹配的字符串。 + 与找到的元素的 NamespaceURI 属性匹配的字符串。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定索引的属性的值。 + 指定的属性的值。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取具有指定 的属性的值。 + 指定的属性的值。如果未找到该属性,则返回 null。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的本地名称。 + 移除了前缀的当前节点的名称。例如,对于元素 <bk:book>,LocalName 为 book。对于没有名称的节点类型(如 Text、Comment 等),该属性返回 String.Empty。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,在当前元素的范围内解析命名空间前缀。 + 前缀映射到的命名空间 URI;如果未找到任何匹配的前缀,则为 null。 + 要解析其命名空间 URI 的前缀。若要匹配默认命名空间,请传递一个空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到具有指定索引的属性。 + 属性的索引。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数为负值。 + + + 当在派生类中被重写时,移动到具有指定 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的限定名称。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 当在派生类中被重写时,移动到具有指定的 的属性。 + 如果找到了属性,则为 true;否则为 false。如果为 false,则读取器的位置未改变。 + 属性的本地名称。 + 属性的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 检查当前节点是否是内容(非空白文本、CDATA、Element、EndElement、EntityReference 或 EndEntity)节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。它跳过以下类型的节点:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步检查当前节点是否为内容节点。如果此节点不是内容节点,则读取器向前跳至下一个内容节点或文件结尾。 + 此方法找到的当前节点的 ;如果读取器已到达输入流的末尾,则为 XmlNodeType.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,移动到包含当前属性节点的元素。 + 如果读取器定位在属性上,则为 true(读取器移动到拥有该属性的元素);如果读取器不是定位在属性上,则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到第一个属性。 + 如果属性存在,则为 true(读取器移动到第一个属性);否则为 false(读取器的位置不改变)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,移动到下一个属性。 + 如果存在下一个属性,则为 true;如果没有其他属性,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的限定名。 + 当前节点的限定名称。例如,对于元素 <bk:book>,Name 为 bk:book。返回的名称取决于节点的 。下列节点类型返回所列的值。所有其他节点类型返回空字符串。节点类型名称 Attribute属性名。 DocumentType文档类型名称。 Element标记名称。 EntityReference引用的实体的名称。 ProcessingInstruction处理指令的目标。 XmlDeclaration字符串 xml。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器定位在其上的节点的命名空间 URI(采用 W3C 命名空间规范中定义的形式)。 + 当前节点的命名空间 URI;否则为空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与该实现关联的 + XmlNameTable,它使您能够获取该节点内字符串的原子化版本。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前节点的类型。 + 指定当前节点的类型的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取与当前节点关联的命名空间前缀。 + 与当前节点关联的命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,从流中读取下一个节点。 + true如果成功,则读取下一个节点否则为false。 + 分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取该流的下一个节点。 + 如果成功读取了下一个节点,则为 true;如果没有其他节点可读取,则为 false。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,将属性值解析为一个或多个 Text、EntityReference 或 EndEntity 节点。 + 如果有可返回的节点,则为 true。如果进行初始调用时读取器不是定位在属性节点上,或者如果已读取了所有属性值,则为 false。如果是空属性(如 misc=""),则返回 true,同时返回值为 String.Empty 的单个节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。例如,将 对象转换为 xs:string 时可以使用此对象。此值可为 null。 + 内容格式不是目标类型的正确格式。 + 试图进行的强制转换无效。 + + 值为 null。 + 当前节点不是所支持的节点类型。有关详细信息,请参见下表。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将内容作为指定类型的对象异步读取。 + 已转换为请求类型的串联文本内容或属性值。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 Base64 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不支持 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取内容并返回 BinHex 解码的二进制字节。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 Boolean 读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为双精度浮点数读取。 + 作为双精度浮点数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为单精度浮点数读取。 + 作为单精度浮点数的当前位置的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 32 位有符号整数读取。 + 作为 32 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 64 位有符号整数读取。 + 作为 64 位有符号整数的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为最适当的公共语言运行时 (CLR) 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将当前位置的文本内容作为 对象读取。 + 作为 对象的文本内容。 + 试图进行的强制转换无效。 + 该字符串格式无效。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将当前位置的文本内容作为 对象异步读取。 + 作为 对象的文本内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后将元素内容作为请求类型读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。“注意”   随着 .NET Framework 3.5 的发布, 参数的值现在可以是 类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 读取 Decimal.MaxValue。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 将元素内容作为请求类型异步读取。 + 转换为请求类型的对象的元素内容。 + 要返回的值的类型。 + 一个 对象,用于解析与类型转换有关的任何命名空间前缀。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 Base64 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + + 值为 null。 + 当前节点不是元素节点。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + 该元素包含混合内容。 + 无法将内容转换成请求的类型。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取元素并对 BinHex 内容进行解码。 + 写入缓冲区的字节数。 + 结果文本复制到的缓冲区。此值不能为 null。 + 缓冲区中的偏移,从这个位置开始将结果复制到缓冲区中。 + 要复制到缓冲区的最大字节数。此方法返回复制的实际字节数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为双精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为双精度浮点数返回。 + 作为双精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为单精度浮点数返回。 + 作为单精度浮点数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -元素内容不能转换为单精度浮点数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 32 位有符号整数返回。 + 作为 32 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 32 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 64 位有符号整数返回。 + 作为 64 位有符号整数的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 64 位有符号整数。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换成请求的类型。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 返回。 + 一个最适当类型的装箱的公共语言运行时 (CLR) 对象。 属性确定了适当的 CLR 类型。如果将内容类型化为列表类型,则此方法返回一个适当类型的装箱对象的数组。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查指定的本地名称和命名空间 URI 与当前元素的本地名称和命名空间 URI 是否匹配,然后读取当前元素,并将内容作为 对象返回。 + 作为 对象的元素内容。 + 元素的本地名称。 + 元素的命名空间 URI。 + + 未定位在元素上。 + 当前元素包含子元素。- 或 -无法将元素内容转换为 对象。 + 使用 null 参数调用此方法。 + 指定的本地名称和命名空间 URI 与所读取的当前元素的本地名称和命名空间 URI 不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取当前元素并将内容作为 对象返回。 + 作为 对象的元素内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前内容节点是否为结束标记并将读取器推进到下一个节点。 + 当前节点不是一个结束标记,或者如果在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,将所有内容(包括标记)当做字符串读取。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。如果当前节点既非元素,也非属性,则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取所有内容,包括作为字符串的标记。 + 当前节点中的所有 XML 内容(包括标记)。如果当前节点没有任何子级,则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,读取表示该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + XML 的格式不良,或分析 XML 时出错。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取包含该节点和所有它的子级的内容(包括标记)。 + 如果读取器定位在元素或属性节点上,此方法将返回当前节点及其所有子级的所有 XML 内容(包括标记);否则返回空字符串。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 检查当前节点是否为元素并将读取器推进到下一个节点。 + 在输入流中遇到不正确的 XML。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的限定名。 + 在输入流中遇到不正确的 XML。- 或 -元素的 不匹配给定的 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 检查当前内容节点是否为具有给定 的元素并将读取器推进到下一个节点。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在输入流中遇到不正确的 XML。- 或 -所找到元素的 属性与给定的参数不匹配。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取读取器的状态。 + 指定读取器的状态的枚举值之一。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 返回新的 XmlReader 实例,此实例可用于读取当前节点及其所有子节点。 + 新的 XML 读取器实例设置为。调用方法将新的读取器定位在调用之前的当前节点上方法。 + XML 读取器不被定位在元素上,当调用此方法。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 前进到下一个具有指定限定名的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。如果调用 时没有将 定位在某个元素上,则此方法返回 false 且 的位置保持不变。 + 要移动到的元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 前进到下一个具有指定的本地名称和命名空间 URI 的子代元素。 + 如果找到匹配的子代元素,则为 true;否则为 false。如果未找到匹配的子元素, 将定位在元素的结束标记( 为 XmlNodeType.EndElement)上。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 要移动到的元素的本地名称。 + 要移动到的元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 一直读取,直到找到具有指定限定名的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 一直读取,直到找到具有指定的本地名称和命名空间 URI 的元素。 + 如果找到匹配的元素,则为 true;否则为 false 且 位于文件的末尾。 + 元素的本地名称。 + 元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 让 XmlReader 前进到下一个具有指定限定名的同级元素。 + 如果找到匹配的同级元素,则为 true;否则为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的限定名。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 参数是空字符串。 + + + 让 XmlReader 前进到下一个具有指定的本地名称和命名空间 URI 的同级元素。 + 如果找到匹配的同级元素,则为 true;否则,为 false。如果没有找到匹配的同级元素,XmlReader 会定位在父元素的结束标记( 为 XmlNodeType.EndElement)上。 + 要移动到的同级元素的本地名称。 + 你希望移动到的同级元素的命名空间 URI。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 两个参数值为 null。 + + + 读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 当前节点没有值( 为 false)。 + + 值为 null。 + 缓冲区中的索引或者索引与计数之和大于分配的缓冲区大小。 + + 实现不支持此方法。 + XML 数据不是格式良好的。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步读取嵌入在 XML 文档中的大量文本流。 + 读取到缓冲区中的字符数。如果不再有文本内容,则返回值零。 + 作为文本内容写入到的缓冲区的字符数组。此值不能为 null。 + 缓冲区中的偏移量, 可以从这个位置开始复制结果。 + 要复制到缓冲区中的最大字符数。此方法返回复制的实际字符数。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,解析 EntityReference 节点的实体引用。 + 读取器未定位在 EntityReference 节点上;该读取器的实现不能解析实体( 返回 false)。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + Gets the object used to create this instance. + 用于创建此读取器实例的 对象。如果此读取器不是使用 方法创建的,则此属性返回 null。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 跳过当前节点的子级。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 异步跳过当前节点的子级。 + 当前节点。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + 调用 异步方法,而无需为 true 设置 标志。在这种情况下,将使用消息 “如果要使用异步方法,设置 XmlReaderSettings.Async 为 true”引发 + + + 当在派生类中被重写时,获取当前节点的文本值。 + 返回的值取决于节点的 。下表列出具有要返回的值的节点类型。所有其他节点类型返回 String.Empty。节点类型值 Attribute属性的值。 CDATACDATA 节的内容。 Comment注释的内容。 DocumentType内部子集。 ProcessingInstruction全部内容(不包括指令目标)。 SignificantWhitespace混合内容模型中标记之间的空白。 Text文本节点的内容。 Whitespace标记之间的空白。 XmlDeclaration声明的内容。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 获取当前节点的公共语言运行时 (CLR) 类型。 + 与节点的类型化值对应的 CLR 类型。默认值为 System.String。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 当在派生类中被重写时,获取当前的 xml:space 范围。 + + 值之一。如果不存在任何 xml:space 范围,则该属性默认值为 XmlSpace.None。 + 在前一个异步操作完成前调用 方法。在这种情况下,将通过消息“异步操作已过程中”引发 + + + 指定在由 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置是否可对特定 实例使用异步 方法。 + 则可以使用异步方法,则为 true;否则,为 false。 + + + 获取或设置一个值,该值指示是否进行字符检查。 + 如果进行字符检查,则为 true;否则为 false。默认值为 true。说明如果 处理文本数据,则无论属性如何设置,读取器将总是检查 XML 名称和文本内容是否有效。将 设置为 false 会禁用对字符实体引用的字符检查。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示当读取器关闭时,是否应关闭基础流或 + 如果当读取器关闭时基础流或 也应关闭,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 将遵循的一致性级别。 + 指定一致性级别(XML 读取器将强制该级别)的枚举值之一。默认值为 + + + 获取或设置确定 DTD 的处理的值。 + 确定 DTD 的处理的枚举值之一。默认值为 + + + 获取或设置一个值,该值指示是否忽略注释。 + 如果忽略注释,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略处理指令。 + 如果忽略处理指令,则为 true;否则为 false。默认值为 false。 + + + 获取或设置一个值,该值指示是否忽略无关紧要的空白区域。 + 如果忽略空白,则为 true;否则为 false。默认值为 false。 + + + 获取或设置 对象的行号偏移量。 + 行号偏移量。默认值为 0。 + + + 获取或设置 对象的行位置偏移量。 + 行位置偏移量。默认值为 0。 + + + 获取或设置一个值,该值指示文档中允许扩展实体产生的最大字符数。 + 扩展实体中允许的最大字符数。默认值为 0。 + + + 获取或设置一个值,该值指明 XML 文档中所允许的最大字符数。零 (0) 值表示对 XML 文档的大小没有限制。非零值指定最大大小(以字符数计)。 + XML 文档中所允许的最大字符数。默认值为 0。 + + + 获取或设置用于原子化字符串比较的 + + ,它存储使用此 对象创建的所有 实例使用的所有原子化字符串。默认值为 null。如果该值为null,创建的 实例将使用新的空 + + + 将设置类的成员重置为各自的默认值。 + + + 指定当前 xml:space 范围。 + + + xml:space 范围等于 default。 + + + 没有 xml:space 范围。 + + + xml:space 范围等于 preserve。 + + + 表示一个写入器,该写入器提供一种快速、非缓存和只进方式以生成包含 XML 数据的流或文件。 + + + 初始化 类的新实例。 + + + 使用指定的流创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + The value is null. + + + 使用流和 对象创建新的 实例。 + + 对象。 + 要对其写入的流。 写入 XML 1.0 文本语法并将其追加到指定的流中。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + The value is null. + + + 使用 对象创建新的 实例。 + + 对象。 + 计划写入的 写入 XML 1.0 文本语法,并将该语法追加到指定 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + The value is null. + + + 使用 对象创建一个新的 实例。 + + 对象。 + 要写入的 。由 写入的内容被追加到 。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + The value is null. + + + 使用指定的 对象创建新的 实例。 + 一个 对象,是指定的 对象周围的包装。 + 要用作基础编写器的 对象。 + 用于配置新 实例的 对象。如果这是 null,则使用具有默认设置的 。如果将 用于 方法,则应使用 属性获取具有正确设置的 对象。这样可以确保所创建的 对象的输出设置是正确的。 + The value is null. + + + 释放由 类的当前实例占用的所有资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 释放由 占用的非托管资源,还可以另外再释放托管资源。 + true 表示释放托管资源和非托管资源;false 表示仅释放非托管资源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,将缓冲区中的所有内容刷新到基础流,并同时刷新基础流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将缓冲区中的所有内容异步刷新到基础流,并同时刷新基础流。 + 表示 Flush 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,返回在当前命名空间范围中为该命名空间 URI 定义的最近的前缀。 + 匹配的前缀;如果未在当前范围内找到匹配的命名空间 URI,则为 null。 + 要查找其前缀的命名空间 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 获取用于创建此 实例的 对象。 + 用于创建此写入器实例的 对象。如果此写入器不是使用 方法创建的,则此属性返回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出在 的当前位置找到的所有属性。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在 的当前位置找到的所有属性。 + 表示 WriteAttributes 异步操作的任务。 + 从其中复制属性的 XmlReader。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称和值的属性。 + 属性的本地名称。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的本地名称、命名空间 URI 和值的属性。 + 属性的本地名称。 + 与属性关联的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出具有指定的前缀、本地名称、命名空间 URI 和值的属性。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出具有指定前缀、本地名称、命名空间 URI 和值的属性。 + 表示 WriteAttributeString 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + 属性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 Base64 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 Base64 并写出结果文本。 + 表示 WriteBase64 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将指定的二进制字节编码为 BinHex 并写出结果文本。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将指定的二进制字节异步编码为 BinHex 并写出结果文本。 + 表示 WriteBinHex 异步操作的任务。 + 要进行编码的字节数组。 + 缓冲区中指示要写入字节的起始位置的位置。 + 要写入的字节数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的 <![CDATA[...]]> 块。 + 要放置在 CDATA 块中的文本。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的 <![CDATA[...]]> 块。 + 表示 WriteCData 异步操作的任务。 + 要放置在 CDATA 块中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为指定的 Unicode 字符值强制生成字符实体。 + 为其生成字符实体的 Unicode 字符。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为指定的 Unicode 字符值异步强制生成字符实体。 + 表示 WriteCharEntity 异步操作的任务。 + 为其生成字符实体的 Unicode 字符。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,以每次一个缓冲区的方式写入文本。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以每次一个缓冲区的方式异步写入文本。 + 表示 WriteChars 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中指示要写入文本的起始位置的位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出包含指定文本的注释 <!--...-->。 + 要放在注释内的文本。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出一个包含指定文本的注释 <!--...-->。 + 表示 WriteComment 异步操作的任务。 + 要放在注释内的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定名称和可选属性的 DOCTYPE 声明。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定名称和可选属性的 DOCTYPE 声明。 + 表示 WriteDocType 异步操作的任务。 + DOCTYPE 的名称。它必须是非空的。 + 如果非 null,则它还将写入 PUBLIC "pubid" "sysid",这里的 用给定参数的值替换。 + 如果 为 null 而 非 null,则它将写入 SYSTEM "sysid",这里的 用此参数的值替换。 + 如果非 null,则它写入 [subset],其中 subset 替换为此参数的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定的本地名称和值的元素。 + 元素的本地名称。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的本地名称、命名空间 URI 和值的元素。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定的前缀、本地名称、命名空间 URI 和值的元素。 + 表示 WriteElementString 异步操作的任务。 + 元素的前缀。 + 元素的本地名称。 + 元素的命名空间 URI。 + 元素的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭上一个 调用。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭前一个 调用。 + 表示 WriteEndAttribute 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭任何打开的元素或属性并将写入器重新设置为起始状态。 + 表示 WriteEndDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,按 &name; 写出实体引用。 + 实体引用的名称。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 按 &name; 异步写出实体引用。 + 表示 WriteEntityRef 异步操作的任务。 + 实体引用的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,关闭一个元素并弹出相应的命名空间范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步关闭一个元素并弹出相应的命名空间范围。 + 表示 WriteFullEndElement 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 要写入的名称。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效名称。 + 表示 WriteName 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 要写入的名称。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出指定的名称,确保它是符合 W3C XML 1.0 建议 (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 的有效 NmToken。 + 表示 WriteNmToken 异步操作的任务。 + 要写入的名称。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,将全部内容从读取器复制到写入器并将读取器移动到下一个同级的开始位置。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 将所有内容从读取器异步复制到写入器并将读取器移动到下一个同级的开头。 + 表示 WriteNode 异步操作的任务。 + 要从其进行读取的 。 + 若要从 XmlReader 中复制默认属性,则为 true;否则为 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出在名称和文本之间带有空格的处理指令,如下所示:<?name text?>。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出在名称和文本之间有空格的处理指令,如下所示:<?name text?>。 + 表示 WriteProcessingInstruction 异步操作的任务。 + 处理指令的名称。 + 要包括在处理指令中的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 要写入的本地名称。 + 名称的命名空间 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出命名空间限定的名称。此方法查找位于给定命名空间范围内的前缀。 + 表示 WriteQualifiedName 异步操作的任务。 + 要写入的本地名称。 + 名称的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,从字符缓冲区手动写入原始标记。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,从字符串手动写入原始标记。 + 包含要写入的文本的字符串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 从字符缓冲区手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符数组。 + 缓冲区中的位置,指示要写入文本的起始位置。 + 要写入的字符数。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 从字符串手动异步写入原始标记。 + 表示 WriteRaw 异步操作的任务。 + 包含要写入的文本的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入具有指定本地名称的属性的开头。 + 属性的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入具有指定本地名称和命名空间 URI 的属性的开头。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入具有指定的前缀、本地名称和命名空间 URI 的属性的开头。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入具有指定前缀、本地名称和命名空间 URI 的属性的开头。 + 表示 WriteStartAttribute 异步操作的任务。 + 属性的命名空间前缀。 + 属性的本地名称。 + 属性的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入版本为“1.0”的 XML 声明和独立的属性。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入版本为“1.0”的 XML 声明。 + 表示 WriteStartDocument 异步操作的任务。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 异步写入版本为“1.0”的 XML 声明和独立的属性。 + 表示 WriteStartDocument 异步操作的任务。 + 如果为 true,则它将写入"standalone=yes";如果为 false,则它将写入"standalone=no"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,写出具有指定的本地名称的开始标记。 + 元素的本地名称。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间关联起来。 + 元素的本地名称。 + 与元素关联的命名空间 URI。如果此命名空间已在范围中并具有关联的前缀,则写入器也将自动写入该前缀。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入指定的开始标记并将其与给定的命名空间和前缀关联起来。 + 表示 WriteStartElement 异步操作的任务。 + 元素的命名空间前缀。 + 元素的本地名称。 + 与元素关联的命名空间 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取写入器的状态。 + + 值之一。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写入给定的文本内容。 + 要写入的文本。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写入给定的文本内容。 + 表示 WriteString 异步操作的任务。 + 要写入的文本。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,为代理项字符对生成并写入代理项字符实体。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 为代理项字符对异步生成并写入代理项字符实体。 + 表示 WriteSurrogateCharEntity 异步操作的任务。 + 低代理项。它必须是介于 0xDC00 和 0xDFFF 之间的值。 + 高代理项。它必须是介于 0xD800 和 0xDBFF 之间的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入对象值。 + 要写入的对象值。注意   随着 .NET Framework 3.5 的发布,该方法接受将 作为参数。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个单精度浮点数。 + 要写入的单精度浮点数。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 写入一个 值。 + 要编写的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,写出给定的空白区域。 + 空格字符的字符串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 异步写出给定的空白区域。 + 表示 WriteWhitespace 异步操作的任务。 + 空格字符的字符串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 当在派生类中被重写时,获取当前的 xml:lang 范围。 + 当前的 xml:lang 范围。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 当在派生类中被重写时,获取表示当前 xml:space 范围的 + 一个表示当前 xml:space 范围的 XmlSpace。值含义 None如果不存在 xml:space 范围,则此为默认值。Default当前范围为 xml:space="default"。Preserve当前范围为 xml:space=“preserve”。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定在 方法创建的 对象上支持的一组功能。 + + + 初始化 类的新实例。 + + + 获取或设置一个值,该值指示是否可对特定的 实例使用异步 方法。 + 如果可以使用异步方法,则为 true;否则为 false。 + + + 获取或设置一个值,该值指示是否应检查 XML 写入器以确保文档中的所有字符都符合 W3C XML 1.0 建议 中的“2.2 字符”部分。 + 如果要检查字符,则为 true,否则为 false。默认值为 true。 + + + 创建 实例的副本。 + 克隆的 对象。 + + + 获取或设置一个值,该值指示调用 是否也应该关闭基础流或 + 如果要关闭基础流或 ,则为 true;否则为 false。默认值为 false。 + + + 获取或设置的 XML 写入器检查 XML 输出的一致性级别。 + 指定一致性级别(文档、片段或自动检测)的枚举值之一。默认值为 + + + 获取或设置要使用的文本编码的类型。 + 要使用的文本编码。默认值为 Encoding.UTF8。 + + + 获取或设置指示是否缩进元素的值。 + 如果在新行上写入单独的元素并将其缩进,则为 true;否则为 false。默认值为 false。 + + + 获取或设置缩进时要使用的字符串。在 属性设置为 true 时使用此设置。 + 缩进时要使用的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为两个空格。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示在写入 XML 内容时 是否应移除重复的命名空间声明。写入器的默认行为是输出写入器的命名空间解析程序中存在的所有命名空间声明。 + 用于指定是否移除 中重复的命名空间声明的 枚举。 + + + 获取或设置要用于换行符的字符串。 + 要用于换行符的字符串。它可以设置为任何字符串值。但是,为了确保 XML 有效,应该只指定有效的空格字符,例如空格、制表符、回车符或换行符。默认值为 \r\n(回车符、新行)。 + The value assigned to the is null. + + + 获取或设置一个值,该值指示是否将输出中的换行符规范化。 + + 值之一。默认值为 + + + 获取或设置一个值,该值指示是否在新行上写入属性。 + 如果要在单独的行上写入属性,则为 true;否则为 false。默认值为 false。说明 属性值为 false时此设置无效。 设置为 true时,每个属性都会预先挂起一个新行和一个额外的缩进级别。 + + + 获取或设置一个值,该值指示是否省略 XML 声明。 + 如果省略 XML 声明,则为 true;否则为 false。默认值为 false,即写入 XML 声明。 + + + 将设置类的成员重置为各自的默认值。 + + + 获取或设置一个值,该值指示在调用 方法时 是否会向所有未关闭的元素标记添加结束标记。 + 如果将结束所有未关闭元素标记,则为 true;否则为 false。默认值为 true。 + + + 一个 XML 架构的内存表示形式,它按照万维网联合会 (W3C) XML 架构第 1 部分进行指定:“结构” 和 XML 架构第 2 部分:“数据类型” 规范。 + + + 指示是否需要用命名空间前缀限定属性或元素。 + + + 架构中不指定元素和属性窗体。 + + + 必须用命名空间前缀限定元素和属性。 + + + 不要求用命名空间前缀限定元素和属性。 + + + 提供面向 XML 序列化和反序列化的自定义格式。 + + + 此方法是保留方法,请不要使用。在实现 IXmlSerializable 接口时,应从此方法返回 null(在 Visual Basic 中为 Nothing),如果需要指定自定义架构,应向该类应用 + + ,描述由 方法产生并由 方法使用的对象的 XML 表示形式。 + + + 从对象的 XML 表示形式生成该对象。 + 对象从中进行反序列化的 流。 + + + 将对象转换为其 XML 表示形式。 + 对象要序列化为的 流。 + + + 应用于某个类型时,存储返回 XML 架构的该类型静态方法的名称和控制该类型序列化的 (对于匿名类型,为 )。 + + + 采用提供类型的 XML 架构的静态方法的名称,初始化 类的新实例。 + 必须实现的静态方法的名称。 + + + 获取或设置一个值,该值确定目标类是通配符,还是该类的架构仅包含一个 xs:any 元素。 + 如果该类是通配符,或者该架构仅包含 xs:any 元素,则为 true;否则为 false。 + + + 获取提供类型的 XML 架构及其 XML 架构数据类型名称的静态方法的名称。 + XML 基础结构调用来返回 XML 架构的方法的名称。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml new file mode 100644 index 0000000..d7f0bf3 --- /dev/null +++ b/packages/System.Xml.ReaderWriter.4.3.0/ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml @@ -0,0 +1,2688 @@ + + + + System.Xml.ReaderWriter + + + + 指定 物件所執行的輸入或輸出檢查數量。 + + + + 物件會自動偵測是否應執行文件或片段檢查,並進行適當的檢查。如果您包裝其他 物件,則外部物件不會執行任何其他的一致性檢查。必須由基礎物件來進行一致性檢查。請參閱 屬性,以取得如何判定符合性層級的詳細資料。 + + + XML 資料使用格式正確的 XML 1.0 文件 編譯,如 W3C 所定義。 + + + XML 資料是格式正確的 XML 片段,如 W3C 所定義。 + + + 指定處理 DTD 的選項。 列舉型別是由 類別所使用。 + + + 導致 DOCTYPE 項目受到忽略。不會發生 DTD 處理。 + + + 指定在遇到 DTD 時擲回 並顯示訊息,說明禁止使用 DTD。這是預設行為。 + + + 提供讓類別能夠傳回行和位置資訊的介面。 + + + 取得值,這個值指出類別是否可以傳回行資訊。 + 如果可以提供 ,則為 true,否則為 false。 + + + 取得目前的行號。 + 目前的行號,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 取得的目前行位置。 + 目前的行位置,如果沒有可用的行資訊 (例如 傳回 false),則為 0。 + + + 提供對一組前置詞和命名空間 (Namespace) 對應的唯讀存取。 + + + 取得定義之前置詞/命名空間對應的集合,目前位於範圍中。 + + ,包含目前範圍內的命名空間。 + + 值,指定要傳回之命名空間節點的型別。 + + + 取得命名空間 URI,對應至指定的前置詞。 + 對應至前置詞的命名空間 URI,如果前置詞未對應至命名空間 URI,則為 null。 + 您要尋找其命名空間 URI 的前置詞。 + + + 取得前置詞,對應至指定的命名空間 URI。 + 對應至命名空間 URI 的前置詞,如果命名空間 URI 未對應至前置詞,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + + 指定是否要移除 中的重複命名空間宣告。 + + + 指定不要移除重複的命名空間宣告。 + + + 指定要移除重複的命名空間宣告。若要移除重複的命名空間,前置詞和命名空間必須相符。 + + + 實作單一執行緒的 + + + 初始化 NameTable 類別的新執行個體。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。如果 為零,則會傳回 String.Empty。 + 包含要加入之字串的字元陣列。 + 陣列中以零起始的索引,指定字串的第一個字元。 + 字串中的字元數。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 將指定的字串原子化,並將其加入至 NameTable。 + 原子化後的字串,如果已經存在於 NameTable 中,則為現有的字串。 + 要加入的字串。 + + 為 null。 + + + 取得包含與指定陣列中指定字元範圍內的字元相同的字串。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 包含要尋找之名稱的字元陣列。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- >= .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 取得具有指定值的原子化字串。 + 原子化字串物件;如果字串尚未原子化,則為 null。 + 要尋找的名稱。 + + 為 null。 + + + 指定如何處理分行符號。 + + + 實體化換行字元。當正規化 來讀取輸出時,這個設定會保留所有字元。 + + + 換行字元未變更。輸出與輸入相同。 + + + 取代換行字元,使其與 屬性中指定的字元相符。 + + + 指定讀取器 (Reader) 的狀態。 + + + 已經呼叫 方法。 + + + 已經順利到達檔案結尾。 + + + 發生錯誤,造成讀取作業無法繼續。 + + + 尚未呼叫 Read 方法。 + + + 已經呼叫 Read 方法。讀取器可能呼叫其他方法。 + + + 指定 的狀態。 + + + 指出正在寫入屬性值。 + + + 指出已呼叫 方法。 + + + 指出正在寫入項目內容。 + + + 指出正在寫入項目開始標記。 + + + 已經擲回例外狀況, 因此處於無效狀態。您可以呼叫 方法,將 置於 狀態下。任何其他 方法呼叫會導致 + + + 指出正在寫入初構 (Prolog)。 + + + 指出尚未呼叫 Write 方法。 + + + 編碼和解碼 XML 名稱,並且提供在 Common Language Runtime 類型和 XML 結構描述定義語言 (XSD) 類型之間轉換的方法。轉換資料類型時,傳回的值與地區設定無關。 + + + 將名稱解碼。這個方法反向執行 方法。 + 解碼的名稱。 + 要轉換的名稱。 + + + 將名稱轉換為有效的 XML 區域名稱。 + 編碼的名稱。 + 要編碼的名稱。 + + + 將名稱轉換為有效的 XML 名稱。 + 傳回以逸出字元取代任何無效字元的名稱。 + 要轉譯的名稱。 + + + 根據 XML 規格驗證確定名稱有效。 + 編碼的名稱。 + 要編碼的名稱。 + + + 轉換成對等的 + Boolean 值,為 true 或 false。 + 要轉換的字串。 + + is null. + + does not represent a Boolean value. + + + 轉換成對等的 + 字串的對等 Byte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + Char,表示單一字元。 + 字串,含有要轉換的單一字元。 + The value of the parameter is null. + The parameter contains more than one character. + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定應將日期轉換為當地時間,或保留為國際標準時間 (UTC) (如果它是 UTC 日期)。 + + is null. + The value is null. + + is an empty string or is not in a valid format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。注意   字串必須符合 XML dateTime 型別的 W3C Recommendation 子集。如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime。 + + is null. + The argument passed to this method is outside the range of allowable values.For information about allowable values, see . + The argument passed to this method does not conform to a subset of the W3C Recommendations for the XML dateTime type.For more information see http://www.w3.org/TR/xmlschema-2/#dateTime. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 的來源格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對這個格式進行驗證。 + + is null. + + or is an empty string or is not in the specified format. + + + 將提供的 轉換成 對等用法。 + 所提供之字串的 對應項。 + 要轉換的字串。 + 轉換 之來源格式的陣列。 中的每個格式,可以是 XML dateTime 型別的 W3C Recommendation 子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 字串 會針對其中一種格式進行驗證。 + + + 轉換成對等的 + 字串的對等 Decimal。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Double。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Guid。 + 要轉換的字串。 + + + 轉換成對等的 + 字串的對等 Int16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Int64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 SByte。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 Single。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成 + Boolean 的字串表示,也就是 "true" 或 "false"。 + 要進行轉換的值。 + + + 轉換成 + Byte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Char 的字串表示。 + 要進行轉換的值。 + + + 使用指定的 ,將 轉換為 + + 的對等 + 要進行轉換的 值。 + 其中一個 值,可指定如何處理 值。 + The value is not valid. + The or value is null. + + + 將提供的 轉換成 + 所提供之 表示。 + 要轉換的 。 + + + 將提供的 轉換成指定格式的 + 以所提供之 指定格式的 表示。 + 要轉換的 。 + + 所要轉換成的格式。格式參數可以是 XML dateTime 型別之 W3C Recommendation 的任何子集(如需詳細資訊,請參閱 http://www.w3.org/TR/xmlschema-2/#dateTime)。 + + + 轉換成 + Decimal 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Double 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Guid 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Int64 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + SByte 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + Single 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + TimeSpan 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt16 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt32 的字串表示。 + 要進行轉換的值。 + + + 轉換成 + UInt64 的字串表示。 + 要進行轉換的值。 + + + 轉換成對等的 + 字串的對等 TimeSpan。 + 要轉換的字串。字串格式必須符合<W3C XML 結構描述第 2 部分:資料型別>對持續期間的建議。 + + is not in correct format to represent a TimeSpan value. + + + 轉換成對等的 + 字串的對等 UInt16。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt32。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 轉換成對等的 + 字串的對等 UInt64。 + 要轉換的字串。 + + is null. + + is not in the correct format. + + represents a number less than or greater than . + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的名稱。 + 名稱 (如果它是有效的 XML 名稱)。 + 要驗證的名稱。 + + is not a valid XML name. + + is null or String.Empty. + + + 根據 W3C Extended Markup Language Recommendation,驗證確定名稱是有效的 NCName。NCName 是不能包含冒號的名稱。 + 名稱 (如果它是有效的 NCName)。 + 要驗證的名稱。 + + is null or String.Empty. + + is not a valid non-colon name. + + + 根據<W3C XML Schema Part2: Datatypes>建議,驗證字串是否為有效的 NMTOKEN。 + 名稱語彙基元 (如果它是有效的 NMTOKEN)。 + 您要驗證的字串。 + The string is not a valid name token. + + is null. + + + 如果字串引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串執行個體。 + 如果引數中的所有字元都是有效的公用 ID 字元,則會傳回傳入的字串。 + 包含要驗證之 ID 的 。 + + + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體。 + 如果字串引數中的所有字元都是有效的空白字元,則會傳回傳入的字串執行個體;否則傳回 null。 + 要驗證的 。 + + + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 如果字串引數中的所有字元及 Surrogate 字組字元都是有效的 XML 字元,則傳回傳入的字串,否則擲回 XmlException,並提供遇到的第一個無效字元的相關資訊。 + 包含要驗證之字元的 。 + + + 指定在字串和 之間轉換時如何處理時間值。 + + + 當做當地時間。如果 物件表示 Coordinated Universal Time (UTC),則將它轉換成當地時間。 + + + 時區資訊應在轉換時保存。 + + + 如果要將 轉換成字串,則當做當地時間。 + + + 當做 UTC。如果 物件表示當地時間,則將它轉換成 UTC。 + + + 傳回有關上次例外狀況的詳細資訊。 + + + 初始化 XmlException 類別的新執行個體。 + + + 使用指定的錯誤訊息,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + + + 初始化 XmlException 類別的新執行個體。 + 錯誤條件的描述。 + 擲回 XmlException 的 (如果有的話)。這個值可以是 null。 + + + 使用指定的訊息、內部例外狀況、行號和行位置,初始化 XmlException 類別的新執行個體。 + 錯誤描述。 + 導致目前例外狀況的例外。這個值可以是 null。 + 指示發生錯誤之位置的行號。 + 指示發生錯誤之位置的行位置。 + + + 取得行號,指出發生錯誤的位置。 + 指示發生錯誤之位置的行號。 + + + 取得行位置,指出發生錯誤的位置。 + 指示發生錯誤之位置的行位置。 + + + 取得描述目前例外狀況的訊息。 + 解釋例外狀況原因的錯誤訊息。 + + + 解析、加入並移除集合的命名空間,並且為這些命名空間提供範圍管理。 + + + 使用指定的 初始化 類別的新執行個體。 + 要使用的 。 + null is passed to the constructor + + + 將指定的命名空間加入集合中。 + 與要加入的命名空間關聯的前置詞。使用 String.Empty 來加入預設命名空間。附註:如果 將用於解析 XML 路徑語言 (XPath) 運算式中的命名空間,則必須指定前置詞。如果 XPath 運算式不包括前置詞,則會假設命名空間統一資源識別項 (URI) 為空命名空間。如需有關 XPath 運算式以及 的詳細資訊,請參考 方法。 + 要加入的命名空間。 + The value for is "xml" or "xmlns". + The value for or is null. + + + 取得預設命名空間的命名空間 URI。 + 傳回預設命名空間的命名空間 URI,若無預設命名空間,則傳回 String.Empty。 + + + 傳回用於逐一查看 中命名空間的列舉值。 + + ,包含 儲存的前置詞。 + + + 取得命名空間名稱集合,會根據前置詞索引,可用於列舉目前在範圍中的命名空間。 + 目前在範圍中的命名空間和前置詞配對集合。 + 列舉值,指定要傳回之命名空間節點的類型。 + + + 取得值,表示提供的前置詞是否具有針對目前推送的範圍中定義的命名空間。 + 如果已經定義命名空間,則為 true,否則為 false。 + 您要尋找的命名空間的前置詞。 + + + 取得指定前置詞的命名空間 URI。 + 傳回 的命名空間 URI;如果無對應的命名空間,則傳回 null。已擷取傳回的字串。如需擷取字串的詳細資訊,請參閱 類別。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送 String.Empty。 + + + 尋找為指定命名空間 URI 宣告的前置詞。 + 符合的前置詞。如果沒有對應的前置詞,此方法會傳回 String.Empty。如果提供了 null 值,則會傳回 null。 + 用來解析前置詞的命名空間。 + + + 取得與這個物件相關的 + + ,由這個物件所使用。 + + + 將命名空間範圍自堆疊取出。 + 如果堆疊上留有命名空間範圍,則為 true,若未取出其他命名空間,則為 false。 + + + 將命名空間範圍推送至堆疊。 + + + 移除指定前置詞的指定命名空間。 + 命名空間的前置詞 + 指定的前置詞中要移除的命名空間。命名空間由目前的命名空間範圍移除。忽略目前範圍以外的命名空間。 + The value of or is null. + + + 定義命名空間範圍。 + + + 目前節點範圍中定義的所有命名空間。這包含 xmlns:xml 命名空間,這個命名空間一定是以隱含方式宣告。尚未定義命名空間傳回的順序。 + + + 目前節點範圍中定義的所有命名空間,但是 xmlns:xml 命名空間 (一定以隱含方式宣告) 除外。尚未定義命名空間傳回的順序。 + + + 目前節點上區域定義的所有命名空間。 + + + 原子化字串物件的資料表。 + + + 初始化 類別的新執行個體。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。如果長度為零,則傳回 String.Empty。 + 字元陣列,包含要加入的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,原子化指定的字串,並將它加入至 XmlNameTable。 + 新的原子化字串或已經存在的現有原子化字串。 + 要加入的名稱。 + + 為 null。 + + + 在衍生類別中覆寫時,取得包含相同字元的原子化字串做為指定陣列中的指定字元範圍。 + 原子化字串,如果字串尚未原子化,則為 null。如果 為零,則會傳回 String.Empty。 + 字元陣列,包含要查詢的名稱。 + 陣列中以零起始的索引,指定名稱的第一個字元。 + 名稱中字元的數目。 + 0 > -或- >= .Length-或- > .Length如果 =0,上述條件就不會造成例外狀況擲回。 + + < 0。 + + + 在衍生類別中覆寫時,取得包含相同值的原子化字串做為指定的字串。 + 原子化字串,如果字串尚未原子化,則為 null。 + 要查詢的名稱。 + + 為 null。 + + + 指定節點的類型。 + + + 屬性 (例如,id='123')。 + + + CDATA 區段 (例如,<![CDATA[my escaped text]]>)。 + + + 註解 (例如,<!-- my comment -->)。 + + + 做為文件樹狀結構的根的文件物件可存取整個 XML 文件。 + + + 文件片段。 + + + 文件類型宣告,以下列標記指示 (例如,<!DOCTYPE...>)。 + + + 項目 (例如,<item>)。 + + + 結尾項目標記 (例如,</item>)。 + + + 當 XmlReader 到達實體 (Entity) 結尾時傳回的資料,取代呼叫 的結果。 + + + 實體宣告 (例如,<!ENTITY...>)。 + + + 實體參考 (例如,&num;)。 + + + 如果尚未呼叫 Read 方法,則由 傳回此資料。 + + + 文件類型宣告中的標記法 (例如,<!NOTATION...>)。 + + + 處理指示 (例如,<?pi test?>)。 + + + 混合內容模型中標記之間的泛空白字元 (White Space),或 xml:space="preserve" 範圍 (Scope) 中的泛空白字元。 + + + 節點的文字內容。 + + + 標記之間的泛空白字元。 + + + XML 宣告 (例如,<?xml version='1.0'?>)。 + + + 提供 剖析 XML 片段所需的所有內容資訊。 + + + 使用指定的 、基底 URI、xml:lang、xml:space 和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 子集用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、基底 URI、xml:lang、xml:space、編碼方式和文件型別的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + 文件型別宣告的名稱。 + 公用識別項。 + 系統識別項。 + 內部 DTD 子集。此 DTD 用於實體解析,而非用於文件驗證。 + XML 片段的基底 URI (載入片段的來源位置)。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang 和 xml:space 的值,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 使用指定的 、xml:lang、xml:space 和編碼方式,初始化 XmlParserContext 類別的新執行個體。 + 用來原子化字串的 。如果這是 null,則改用用來建構 的名稱資料表。如需原子化字串的詳細資訊,請參閱 。 + + ,用來查詢命名空間資訊,或是 null。 + xml:lang 範圍。 + + 值,指出 xml:space 的範圍。 + 指示編碼設定的 物件。 + + 與用來建構 的 XmlNameTable 不是同一個。 + + + 取得或設定基底 URI。 + 用來解析 DTD 檔案的基底 URI。 + + + 取得或設定文件型別宣告的名稱。 + 文件型別宣告的名稱。 + + + 取得或設定編碼類型。 + 指示編碼類型的 物件。 + + + 取得或設定內部 DTD 子集。 + 內部 DTD 子集。例如,這個屬性會傳回介於方括弧 <!DOCTYPE doc [...]> 之間的所有內容。 + + + 取得或設定 + XmlNamespaceManager。 + + + 取得用來原子化字串的 。如需原子化字串的詳細資訊,請參閱 + XmlNameTable。 + + + 取得或設定公用識別項。 + 公用識別項。 + + + 取得或設定系統識別項。 + 系統識別項。 + + + 取得或設定目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。如果範圍內沒有 xml:lang,則會傳回 String.Empty。 + + + 取得或設定目前的 xml:space 範圍。 + + 值,指出 xml:space 的範圍。 + + + 表示 XML 限定名稱 (Qualified Name)。 + + + 初始化 類別的新執行個體。 + + + 使用指定的名稱,初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + + 使用指定的名稱和命名空間,來初始化 類別的新執行個體。 + 做為 物件名稱使用的區域名稱。 + + 物件的命名空間。 + + + 提供空白的 + + + 判斷指定的 物件是否等於目前的 物件。 + 如果這兩個是相同的執行個體物件,則為 true,否則為 false。 + 要比較的 。 + + + 傳回 的雜湊程式碼。 + 這個物件的雜湊程式碼。 + + + 取得值,指出 是否為空白。 + 如果名稱和命名空間為空白字串,則為 true,否則為 false。 + + + 取得 限定名稱的字串表示。 + 限定名稱的字串表示,如果物件並未定義名稱,則為 String.Empty。 + + + 取得 命名空間的字串表示。 + 命名空間的字串表示,如果物件並未定義命名空間,則為 String.Empty。 + + + 比較兩個 物件。 + 如果這兩個物件具有相同的名稱和命名空間值,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 比較兩個 物件。 + 如果這兩個物件的名稱和命名空間值不同,則為 true,否則為 false。 + 要比較的 。 + 要比較的 。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + + + 傳回 的字串值。 + + 的字串值,其格式為 namespace:localname。如果這個物件尚未定義命名空間,則這個方法只傳回區域名稱。 + 物件的名稱。 + 物件的命名空間。 + + + 表示提供快速、非快取、順向 (Forward-only) 存取 XML 資料的讀取器 (Reader)。若要瀏覽此類型的.NET Framework 原始碼,請參閱參考來源。 + + + 初始化 XmlReader 類別的新執行個體。 + + + 在衍生類別中覆寫時,取得目前節點上的屬性數目。 + 目前節點的屬性數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的基底 URI。 + 目前節點的基底 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,這個值表示 是否會實作二進位內容讀取方法。 + 如果實作二進位內容讀取方法,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出 是否會實作 方法。 + true if the implements the method; otherwise false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得值,指出這個讀取器是否可以剖析和解析實體。 + 如果讀取器可以剖析和解析實體,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 建立新執行個體使用指定的資料流,以預設設定。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + + + 建立新具有指定的資料流和設定執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + + + 建立新執行個體使用指定的資料流、 設定和內容資訊進行剖析。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料的資料流。 會掃描資料流的前幾個位元組,以尋找位元組順序標記或其他編碼符號。決定編碼後,會使用該編碼繼續讀取資料流,處理流程也會繼續將輸入剖析成 (Unicode) 字元的資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + + 建立新使用指定的文字讀取器的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + + 值為 null。 + + + 建立新使用指定的文字讀取器和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定。這個值可以是 null。 + + 值為 null。 + + + 建立新剖析使用指定的文字讀取器、 設定和內容資訊的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 要從中讀取 XML 資料的文字閱讀器。因為文字閱讀器會傳回 Unicode 字元的資料流,所以 XML 讀取器不會使用 XML 宣告中所指定的編碼方式,來解碼資料流。 + 新的設定執行個體。這個值可以是 null。 + 剖析 XML 片段所需的內容資訊。內容資訊可以包含要使用的 、編碼方式、命名空間範圍、目前的 xml:lang 和 xml:space 範圍、基底 URI,以及文件類型定義。這個值可以是 null。 + + 值為 null。 + + 屬性都包含值(這些 NameTable 屬性中只有一個可以設定和使用)。 + + + 使用指定的 URI,建立新的 執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 類別是用來將路徑轉換成正式的資料代表。 + + 值為 null。 + + 沒有足夠權限來存取 XML 資料的位置。 + URI 所識別的檔案不存在。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 URI 和設定的執行個體。 + 用以在資料流中讀取 XML 資料的物件。 + 包含 XML 資料之檔案的 URI。 物件上的 物件是用於將路徑轉換成標準資料表示。如果 為 null,則會使用新的 物件。 + 新的設定執行個體。這個值可以是 null。 + + 值為 null。 + 找不到由 URI 指定的檔案。 + 在適用於 Windows 市集應用程式的 .NET 或可攜式類別庫中,反而要攔截基底類別例外狀況 。URI 格式不正確。 + + + 建立新使用指定的 XML 讀取器和設定的執行個體。 + 包裝的物件周圍指定物件。 + 您想要當做基礎 XML 讀取器使用的物件。 + 新的設定執行個體。 物件的一致性層級必須符合基礎讀取器的一致性層級,或是必須設為 。 + + 值為 null。 + 如果 物件指定的一致性層級與基礎讀取器的一致性層級不相符。-或-基礎 處於 狀態。 + + + 在衍生類別中覆寫時,取得 XML 文件中目前節點的深度。 + XML 文件中目前節點的深度。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 類別目前的執行個體所使用的資源全部釋出。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得指出讀取器是否在資料流結尾的值。 + 如果讀取器定位於資料流結尾,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。這個方法不會移動讀取器。 + 屬性的索引。索引以零為起始。(第一個屬性的索引為 0。) + + 超出範圍。它必須是非負值,而且小於屬性集合的大小。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到該屬性或其值為 String.Empty,則傳回 null。這個方法不會移動讀取器。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + + 為 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步取得目前節點的值。 + 目前節點的值。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 取得值,表示目前節點是否具有任何屬性。 + 如果目前節點擁有屬性,則為 true,否則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否具有 + 如果讀取器目前所在節點具有 Value,則為 true,否則為 false。如果為 false,則節點的值為 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為從 DTD 或結構描述中定義的預設值產生的屬性。 + 如果目前節點是 DTD 或結構描述中定義的預設值所產生的屬性,則為 true,如果已經明確設定屬性值,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得值,指出目前節點是否為空項目 (例如,<MyElement/>)。 + true if the current node is an element ( equals XmlNodeType.Element) that ends with />; otherwise, false. + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱。 + 如果名稱有效,則為 true,否則為 false。 + 要驗證的名稱。 + + 值為 null。 + + + 傳回值,指出字串引數是否為有效的 XML 名稱語彙基元。 + 如果它是有效的名稱語彙基元,則為 true,否則為 false。 + 要驗證的名稱語彙基元。 + + 值為 null。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記。 + 如果 找到開頭標記或空項目標記,則為 true,如果找到的節點型別並非 XmlNodeType.Element,則為 false。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,並且 Name 屬性符合指定的字串,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目 Name 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 Name 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 呼叫 並測試目前的內容節點為開頭標記或空項目標記,以及所找到項目的 屬性是否符合指定的引數。 + 如果產生的節點是項目,則為 true。如果找到的節點型別並非 XmlNodeType.Element 或項目的 LocalName 和 NamespaceURI 屬性不符合指定字串,則為 false。 + 字串符合所找到項目的 LocalName 屬性。 + 字串符合所找到項目的 NamespaceURI 屬性。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定索引的屬性值。 + 指定的屬性值。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得具有指定的 的屬性值。 + 指定的屬性值。如果找不到屬性,會傳回 null。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的區域名稱。 + 目前節點名稱的前置詞被移除。例如,對 <bk:book> 項目而言,LocalName 為 book。對於沒有名稱的節點型別 (如 Text、Comment 等),這個屬性會傳回 String.Empty。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,解析目前項目範圍內的命名空間前置詞。 + 前置詞對應的命名空間 URI,如果找不到符合的前置詞,則為 null。 + 您要解析其命名空間 URI 的前置詞。若要符合預設命名空間,請傳送空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至具有指定索引的屬性。 + 屬性的索引。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數的值是負數。 + + + 在衍生類別中覆寫時,移至具有指定之 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的限定名稱 (Qualified Name)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在衍生類別中覆寫時,移至具有指定的 的屬性。 + 如果找到屬性,則為 true,否則為 false。如果 false,則不會變更讀取器的位置。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 檢查目前節點是否為內容 (非空白區文字、CDATA、Element、EndElement、EntityReference 或 EndEntity) 節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。它會略過下列型別的節點:ProcessingInstruction、DocumentType、Comment、Whitespace 或 SignificantWhitespace。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步檢查目前節點是否為內容節點。如果節點並非內容節點,讀取器會先跳至下一個內容節點或檔案結尾。 + 這個方法所找到的目前節點的 ,如果讀取器已經到達輸入資料流的結尾,則為 XmlNodeType.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,移至包含目前屬性節點的項目上。 + 如果讀取器位於屬性 (讀取器移至擁有該屬性的項目) 上,則為 true,如果讀取器不在屬性 (不會變更讀取器的位置),則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至第一個屬性。 + 如果屬性存在 (讀取器移至第一個屬性),則為 true,否則為 false (不會變更讀取器的位置)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,移至下一個屬性。 + 如果有下一個屬性,則為 true,如果沒有其他屬性,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的限定名稱。 + 目前節點的限定名稱。例如,對 <bk:book> 項目而言,Name 為 bk:book。傳回的名稱需視節點的 而定。下列節點類型會傳回所列的值。其他所有節點類型都會傳回空字串。節點類型名稱 Attribute屬性的名稱。 DocumentType文件類型名稱。 Element標記名稱。 EntityReference所參考的實體名稱。 ProcessingInstruction處理指示的目標。 XmlDeclarationxml 常值 (Literal) 字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器所在節點的命名空間 URI (如 W3C 命名空間規格中所定義)。 + 目前節點的命名空間 URI,否則為空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與這個實作相關的 + XmlNameTable 可讓您取得節點中字串的原子化版本。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前節點的類型。 + 其中一個列舉值,指定目前節點的類型。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得與目前節點相關聯的命名空間前置詞。 + 與目前節點相關聯的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,從資料流讀取下一個節點。 + true如果已成功 ; 讀取下一個節點否則, false。 + 剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取資料流中的下一個節點。 + 如果成功讀取下一個節點,則為 true,如果沒有其他節點可讀取,則為 false。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,將屬性值剖析成一個或多個 Text、EntityReference 或 EndEntity 節點。 + 如果傳回節點,則為 true。如果在初次呼叫時讀取器不在屬性節點,或者已經讀取全部屬性值,則為 false。空白的屬性 (例如 misc="") 會對含有 String.Empty 值的單一節點傳回 true。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以指定型别的物件形式讀取內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。例如,將 物件轉換為 xs:string 時,可以使用它。這個值可以是 null。 + 此內容的目標型別之格式不正確。 + 嘗試的轉換無效。 + + 值為 null。 + 目前節點不是受支援的節點型別。如需詳細資訊,請參閱下表。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取做為指定型别之物件的內容。 + 轉換為要求類型的串連文字內容或屬性值。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 Base64 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點上不支援 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取內容,並傳回 BinHex 已解碼的二進位位元組。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以 Boolean 的形式讀取目前位置上的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式讀取目前位置的文字內容。 + 雙精確度浮點數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式讀取目前位置的文字內容。 + 單精確度浮點數形式之目前位置的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 32 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式讀取目前位置的文字內容。 + 64 位元帶正負號之整數形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前位置的文字內容。 + 最合適之 Common Language Runtime (CLR) 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 物件的形式讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 嘗試的轉換無效。 + 字串格式無效。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 物件的形式,非同步讀取目前位置的文字內容。 + + 物件形式的文字內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以要求之類型的形式讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。附註:使用 .NET Framework 3.5 的版本時, 參數的值現在可以是 型別。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 讀取 Decimal.MaxValue。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以要求之類型的形式,非同步讀取項目內容。 + 轉換為要求之類型物件的項目內容。 + 要傳回的值型别。 + + 物件,用來解析任何與型別轉換相關的命名空間前置詞。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 Base64 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + + 值為 null。 + 目前的節點不是項目節點。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + 項目包含混合內容。 + 內容無法轉換成要求的型別。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取項目,並將 BinHex 內容解碼。 + 寫入緩衝區的位元組數目。 + 將產生的文字複製到其中的緩衝區。這個值不能是 null。 + 緩衝區中開始複製結果的位移。 + 要複製至緩衝區中的最大位元組數目。從這個方法傳回所複製的實際位元組數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為雙精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以雙精確度浮點數的形式,讀取目前的項目並傳回內容。 + 雙精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以單精確度浮點數的形式,讀取目前的項目並傳回內容。 + 單精確度浮點數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換為單精確度浮點數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 32 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 32 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 32 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 64 位元帶正負號之整數的形式,讀取目前的項目並傳回內容。 + 64 位元帶正負號之整數形式的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 64 位元帶正負號的整數。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 的形式,讀取目前的項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容無法轉換成要求的型別。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 的形式,非同步讀取目前項目並傳回內容。 + 最合適類型的 Boxed Common Language Runtime (CLR) 物件。 屬性會判斷適當的 CLR 型別。如果內容的類型是清單類型,則這個方法會傳回適當類型之 Boxed 物件的陣列。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查指定的區域名稱和命名空間 URI 是否與目前的項目相符,然後以 物件的形式,讀取目前的項目並傳回內容。 + 做為 物件的項目內容。 + 項目的本機名稱。 + 項目的命名空間 URI。 + + 並不是放置在項目上。 + 目前的項目包含子項目。-或-項目內容不能轉換為 物件。 + 方法是以 null 引數呼叫。 + 指定的區域名稱和命名空間 URI,與目前正在讀取的項目不相符。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取目前項目,並以 物件傳回內容。 + 做為 物件的項目內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查目前節點為結尾標記,並使讀取器前進至下一個節點。 + 目前節點並非結尾標記,或在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,將所有的內容當做字串讀取,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。如果目前節點既不是項目也不是屬性,則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以字串形式非同步讀取所有內容,包括標記。 + 目前節點中所有的 XML 內容,包括標記。如果目前節點沒有子節點,則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,讀取代表這個節點及其所有子節點的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + XML 不是語式正確的,或在剖析 XML 時發生錯誤。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 非同步讀取表示這個節點及其所有子系的內容,包括標記。 + 如果讀取器位於項目或屬性節點上,這個方法會傳回目前節點及其所有子節點的所有 XML 內容,包括標記;否則傳回空字串。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 檢查以確定目前節點為項目,然後使讀取器前進至下一個節點。 + 在輸入資料流中遇到錯誤的 XML。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前節點為具有指定的 的項目,並使讀取器前進至下一個節點。 + 項目的限定名稱。 + 在輸入資料流中遇到錯誤的 XML。-或-項目的 不符合給指定的 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 檢查目前內容節點為具有指定的 的項目,並使讀取器進至下一個節點。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 在輸入資料流中遇到錯誤的 XML。-或-找到的項目的 屬性不符合指定的引數。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得讀取器的狀態。 + 其中一個列舉值,這個值指定讀取器的狀態。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 傳回新的 XmlReader 執行個體,可用於讀取目前的節點及其所有子代 (Descendant)。 + 新的 XML 讀取器執行個體設定為。呼叫方法會將新的讀取器置於呼叫之前為目前的節點方法。 + XML 讀取器未置於項目時呼叫這個方法。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 前進至下一個具有指定限定名稱的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。如果呼叫 時, 並未置於項目上,這個方法會傳回 false,而 的位置不變。 + 您要移至之項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 前進至下一個具有指定區域名稱和命名空間 URI 的子代項目。 + 如果已找到相符的子代項目,則為 true,否則為 false。如果找不到相符的子項目,則 會置於項目的結束標記上 ( 為 XmlNodeType.EndElement)。If the is not positioned on an element when was called, this method returns false and the position of the is not changed. + 您要移至之項目的本機名稱。 + 您要移至之項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 在找到具有指定限定名稱的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 在找到具有指定區域名稱和命名空間 URI 的項目之前讀取。 + 如果已找到相符的項目,則為 true,否則為 false,且 處於檔案結尾 (EOF) 狀態。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 將 XmlReader 前進至下一個具有指定限定名稱的同層級項目。 + 如果已找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的限定名稱。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 參數為空字串。 + + + 將 XmlReader 前進至下一個具有指定區域名稱和命名空間 URI 的同層級項目。 + 如果找到相符的同層級項目,則為 true,否則為 false。如果找不到相符的同層級項目,則 XmlReader 會置於父項目的結束標記上 ( 為 XmlNodeType.EndElement)。 + 您要移至之同層級項目的本機名稱。 + 您要移至之同層級項目的命名空間 URI。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 兩個參數值都是 null。 + + + 讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 目前的節點沒有值 ( 為 false)。 + + 值為 null。 + 緩衝區的索引或是索引 + 計數大於所配置的緩衝區大小。 + + 實作不支援這個方法。 + XML 資料的語式不正確。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式讀取 XML 文件中內嵌之大量文字資料流。 + 讀入緩衝區的字元數目。當不再有文字內容時,會傳回零的值。 + 做為寫入文字內容之緩衝區的字元陣列。這個值不能是 null。 + 緩衝區中 開始複製結果的位移。 + 要複製至緩衝區中的最大字元數目。從這個方法傳回所複製的實際字元數目。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,解析 EntityReference 節點的實體參考。 + 讀取器並非位於 EntityReference 節點上;這個讀取器實作無法解析實體 ( 傳回 false)。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得 物件,用於建立這個 執行個體。 + + 物件,用於建立這個讀取器執行個體。如果未使用 方法建立這個讀取器,則這個屬性會傳回 null。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 略過目前節點的子節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 以非同步的方式略過目前節點的子節點。 + 目前節點。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + 已呼叫 非同步方法,而未將 旗標設定為 true。在此情況下,就會擲回和訊息「如果您想要使用非同步方法,將XmlReaderSettings.Async 設為 true」。 + + + 在衍生類別中覆寫時,取得目前節點的文字值。 + 傳回值需視節點的 而定。下表列出具有傳回值的節點類型。所有其他節點型別都會傳回 String.Empty。節點類型值 Attribute屬性的值。 CDATACDATA 區段的內容。 Comment註解的內容。 DocumentType內部子集。 ProcessingInstruction除了目標之外的完整內容。 SignificantWhitespace在混合內容模型中標記間的泛空白字元。 Text文字節點的內容。 Whitespace標記間的泛空白字元。 XmlDeclaration宣告的內容。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 取得目前節點的 Common Language Runtime (CLR) 類型。 + CLR 類型,對應至節點的具類型值。預設值為 System.String。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 在衍生類別中覆寫時,取得目前的 xml:space 範圍。 + 其中一個 值。如果 xml:space 範圍不存在,這個屬性預設值為 XmlSpace.None。 + 已在上一個非同步作業完成之前呼叫 方法。在此情況下,就會擲回和「非同步作業已在進行中。」訊息。 + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為false。 + + + 取得或設定值,綁表示是否要執行字元檢查。 + true 表示執行字元檢查,否則為 false。預設值為 true。注意事項如果 正在處理文字資料,則它會始終檢查 XML 名稱和文字內容是否有效,而不論屬性設定。將 設為 false 會關閉字元實體參考的字元檢查。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出是否應在關閉讀取器時關閉基礎資料流或 + true 表示關閉讀取器時關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 將遵循的一致性層級。 + 其中一個列舉值,指定 XML 讀取器將強制執行的一致性層級。預設值為 + + + 取得或設定決定 DTD 處理的值。 + 其中一個列舉值,決定 DTD 處理方式。預設值為 + + + 取得或設定值,指出是否忽略註解。 + true 表示忽略註解,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略處理指示。 + true 表示忽略處理指示,否則為 false。預設值為 false。 + + + 取得或設定值,指出是否忽略不重要的空白字元。 + true 表示忽略泛空白字元,否則為 false。預設值為 false。 + + + 取得或設定 物件中的行號位移。 + 行號位移。預設值為 0。 + + + 取得或設定 物件中的行位置位移。 + 行位置位移。預設值為 0。 + + + 取得或設定值,指出文件中產生自展開實體的最大可允許字元數。 + 來自展開實體的最大可允許字元數。預設值為 0。 + + + 取得或設定值,指出 XML 文件中最大可允許字元數。零 (0) 的值表示對 XML 文件大小沒有限制。非零值指定大小上限,以字元為單位。 + XML 文件的最大可允許字元數。預設值為 0。 + + + 取得或設定用於原子化字串比較的 + + ,儲存使用這個 物件建立之所有 執行個體所使用的所有原子化字串。預設值為 null。如果這個值為 null,則建立的 執行個體會使用新的空 + + + 將設定類別的成員重設為其預設值。 + + + 取得目前的 xml:space 範圍。 + + + xml:space 範圍等於 default。 + + + 無 xml:space 範圍。 + + + xml:space 範圍等於 preserve。 + + + 表示寫入器,其可提供快速、非快取的順向方法來產生含有 XML 資料之資料流或檔案。 + + + 初始化 類別的新執行個體。 + + + 使用指定的資料流,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + The value is null. + + + 使用資料流和 物件,建立新 執行個體。 + + 物件。 + 要寫入其中的資料流。 會寫入 XML 1.0 文字語法,並將其附加至指定的資料流。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 會寫入 XML 1.0 文字語法,並將其附加至指定的 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + The value is null. + + + 使用 物件,建立新的 執行個體。 + + 物件。 + 要寫入至其中的 寫入的內容會附加至 。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 使用指定的 ,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + The value is null. + + + 使用指定的 物件,建立新 執行個體。 + + 物件,包裝於指定的 物件附近。 + 您想要當做基礎寫入器使用的 物件。 + 用於設定新 執行個體的 物件。如果是 null,則會使用有預設值的 。如果 正配合 方法使用,您應該使用 屬性,以取得有正確設定的 物件。如此可確保所建立的 物件具有正確的輸出設定。 + The value is null. + + + 類別目前的執行個體所使用的資源全部釋出。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 釋放 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。 + true 表示會同時釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將緩衝區的所有內容清空至基礎資料流,然後清空基礎資料流。 + 表示非同步 Flush 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,傳回最接近命名空間 URI 在目前命名空間範圍中定義的前置詞。 + 命名空間前置詞;如果在目前範圍中找不到符合的命名空間 URI,則為 null。 + 您要尋找其前置詞的命名空間 URI。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 取得 物件,用於建立這個 執行個體。 + 用於建立這個寫入器執行個體的 物件。如果未使用 方法建立這個寫入器,則這個屬性會傳回 null。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出在 的目前位置找到的所有屬性。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + The reader is not positioned on an element, attribute or XmlDeclaration node. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出在 中的目前位置找到的所有屬性。 + 表示非同步 WriteAttributes 作業的工作。 + 要複製屬性的 XmlReader。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定的區域名稱與數值的屬性。 + 屬性的本機名稱。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定區域名稱、命名空間 URI 和值的屬性。 + 屬性的本機名稱。 + 與屬性相關聯的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出具有指定的前置詞、區域名稱、命名空間 URI 及其值的屬性。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + The state of writer is not WriteState.Element or writer is closed. + The xml:space or xml:lang attribute value is invalid. + The or is null. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出具有指定之前置詞、區域名稱、命名空間 URI 和值的屬性。 + 表示非同步 WriteAttributeString 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + 屬性的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 Base64 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 base64 並寫出產生的文字。 + 表示非同步 WriteBase64 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,以 BinHex 格式編碼指定的二進位位元組,並寫出產生的文字。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + + is null. + The writer is closed or in error state. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將指定的二進位位元組編碼為 BinHex 並寫出產生的文字。 + 表示非同步 WriteBinHex 作業的工作。 + 要編碼的位元組陣列。 + 緩衝區中的位置指示要寫入的位元組開頭。 + 要寫入的位元組數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 要放在 CDATA 區塊中的文字。 + The text would result in a non-well formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定文字的 <![CDATA[...]]> 區塊。 + 表示非同步 WriteCData 作業的工作。 + 要放在 CDATA 區塊中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,強制產生指定之 Unicode 字元值的字元實體。 + 要產生字元實體的 Unicode 字元。 + The character is in the surrogate pair character range, 0xd800 - 0xdfff. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式強制產生指定的 Unicode 字元值的字元實體。 + 表示非同步 WriteCharEntity 作業的工作。 + 要產生字元實體的 Unicode 字元。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,一次將文字寫入一個緩衝區。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + + is null. + + or is less than zero.-or-The buffer length minus is less than ; the call results in surrogate pair characters being split or an invalid surrogate pair being written. + The parameter value is not valid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式一次將文字寫入一個緩衝區。 + 表示非同步 WriteChars 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中的位置指示要寫入的文字開頭。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出包含指定文字的註解 <!--...-->。 + 要放入註解中的文字。 + The text would result in a non-well-formed XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出包含指定之文字的註解 <!--...-->。 + 表示非同步 WriteComment 作業的工作。 + 要放入註解中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + This method was called outside the prolog (after the root element). + The value for would result in invalid XML. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定名稱與選擇性屬性的 DOCTYPE 宣告。 + 表示非同步 WriteDocType 作業的工作。 + DOCTYPE 名稱。這必須不是空白的。 + 如果為非 null,它也會寫入 PUBLIC "pubid" "sysid",其中 會替換為指定之引數的值。 + 如果 是 null,而 為非 null,則它會寫入 SYSTEM "sysid",其中 會由這個引數的值所取代。 + 如果非 Null,它會寫入 [subset],其中 subset 由這個引數的值來替代。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱和值的項目。 + 項目的本機名稱。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱、命名空間 URI 和值的項目。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定的前置詞、區域名稱、命名空間 URI 和值的項目。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + The value is null or an empty string.-or-The parameter values are not valid. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、區域名稱、命名空間 URI 和值的項目。 + 表示非同步 WriteElementString 作業的工作。 + 項目的前置詞。 + 項目的本機名稱。 + 項目的命名空間 URI。 + 項目的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,會關閉先前的 呼叫。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉上一個 呼叫。 + 表示非同步 WriteEndAttribute 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + The XML document is invalid. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉任何開啟的項目或屬性,並將寫入器回復開始狀態。 + 表示非同步 WriteEndDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + This results in an invalid XML document. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出如 &name; 的實體參考。 + 實體參考的名稱。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式將實體參考寫出為 &name;。 + 表示非同步 WriteEntityRef 作業的工作。 + 實體參考的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,關閉一個項目並取出對應的命名空間範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式關閉一個項目並取出對應的命名空間範圍。 + 表示非同步 WriteFullEndElement 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 要寫入的名稱。 + + is not a valid XML name; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效名稱。 + 表示非同步 WriteName 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 要寫入的名稱。 + + is not a valid NmToken; or is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的名稱,根據 W3C XML 1.0 Recommendation (http://www.w3.org/TR/1998/REC-xml-19980210#NT-Name) 確定它是有效的 NmToken。 + 表示非同步 WriteNmToken 作業的工作。 + 要寫入的名稱。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + + is null. + + contains invalid characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從讀取器複製所有內容至寫入器,並將讀取器移至下一個同層級 (Sibling) 的開頭。 + 表示非同步 WriteNode 作業的工作。 + 讀取自 。 + 若要從 XmlReader 複製預設屬性,則為 true,否則為 false。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + The text would result in a non-well formed XML document. is either null or String.Empty.This method is being used to create an XML declaration after has already been called. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步方式寫出名稱與文字之間有空白的處理指示,如:<?name text?>。 + 表示非同步 WriteProcessingInstruction 作業的工作。 + 處理指示的名稱。 + 要包含在處理指示中的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + + is either null or String.Empty. is not a valid name. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出命名空間限定名稱。這個方法會查詢在指定之命名空間範圍中的前置詞。 + 表示非同步 WriteQualifiedName 作業的工作。 + 要寫入的區域名稱。 + 這個名稱的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,從字元緩衝區手動寫入未經處理的標記。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + + is null. + + or is less than zero. -or-The buffer length minus is less than . + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,從字串手動寫入未經處理的標記 (Raw Markup)。 + 包含要寫入之文字的字串。 + + is either null or String.Empty. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式從字元緩衝區手動寫入未經處理的標記。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字元陣列。 + 緩衝區中指示要寫入的文字開頭的位置。 + 要寫入的字元數。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式從字串手動寫入未經處理的標記 (Raw Markup)。 + 表示非同步 WriteRaw 作業的工作。 + 包含要寫入之文字的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入具有指定之區域名稱的屬性開頭。 + 屬性的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入具有指定之區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入具有指定的前置詞、區域名稱和命名空間 URI 之屬性的開頭。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入具有指定之前置詞、本機名稱和命名空間 URI 之屬性的開頭。 + 表示非同步 WriteStartAttribute 作業的工作。 + 屬性的命名空間前置詞。 + 屬性的本機名稱。 + 屬性的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,使用「1.0」版寫入 XML 宣告與獨立屬性。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + This is not the first write method called after the constructor. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告。 + 表示非同步 WriteStartDocument 作業的工作。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 以非同步的方式使用「1.0」版寫入 XML 宣告與獨立屬性。 + 表示非同步 WriteStartDocument 作業的工作。 + 如果 true,它會寫入「standalone=yes」;如果 false,它會寫入「standalone=no」。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,寫出具有指定之區域名稱的開頭標記。 + 項目的本機名稱。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記並與指定的命名空間產生關聯。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。如果這個命名空間已經在範圍中並具有相關聯的前置詞,則寫入器也會自動寫入前置詞。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的開頭標記,並與指定的命名空間與前置詞產生關聯。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + The writer is closed. + There is a character in the buffer that is a valid XML character but is not valid for the output encoding.For example, if the output encoding is ASCII, you should only use characters from the range of 0 to 127 for element and attribute names.The invalid character might be in the argument of this method or in an argument of previous methods that were writing to the buffer.Such characters are escaped by character entity references when possible (for example, in text nodes or attribute values).However, the character entity reference is not allowed in element and attribute names, comments, processing instructions, or CDATA sections. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的開頭標記,並將它與指定的命名空間與前置詞產生關聯。 + 表示非同步 WriteStartElement 作業的工作。 + 項目的命名空間前置詞。 + 項目的本機名稱。 + 與項目相關聯的命名空間 URI。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得寫入器的狀態。 + 其中一個 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫入指定的文字內容。 + 要寫入的文字。 + The text string contains an invalid surrogate pair. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫入指定的文字內容。 + 表示非同步 WriteString 作業的工作。 + 要寫入的文字。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An invalid surrogate character pair was passed. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式產生和寫入 Surrogate 字元字組的 Surrogate 字元實體。 + 表示非同步 WriteSurrogateCharEntity 作業的工作。 + 低 Surrogate。這必須是一個介於 0xDC00 和 0xDFFF 之間的值。 + 高 Surrogate。這必須一個是介於 0xD800 和 0xDBFF 之間的值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入物件值。 + 要寫入的物件值。附註:使用 .NET Framework 3.5 的版本時,這個方法會接受 做為參數。 + An invalid value was specified. + The is null. + The writer is closed or in error state. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入單精確度浮點數。 + 要寫入的單精確度浮點數。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 寫入 值。 + 要寫入的 值。 + An invalid value was specified. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,寫出指定的空白字元。 + 空白字元的字串。 + The string contains non-white space characters. + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 以非同步的方式寫出指定的空白字元。 + 表示非同步 WriteWhitespace 作業的工作。 + 空白字元的字串。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + An asynchronous method was called without setting the flag to true.In this case, is thrown with the message “Set XmlWriterSettings.Async to true if you want to use Async Methods.” + + + 在衍生類別中覆寫時,取得目前的 xml:lang 範圍。 + 目前的 xml:lang 範圍。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 在衍生類別中覆寫時,取得表示目前 xml:space 範圍的 + XmlSpace,表示目前的 xml:space 範圍。值意義 None如果 xml:space 範圍不存在,這是預設值。Default目前的範圍為 xml:space="default"。Preserve目前的範圍為 xml:space="preserve"。 + An method was called before a previous asynchronous operation finished.In this case, is thrown with the message “An asynchronous operation is already in progress.” + + + 指定要在由 方法建立的 物件上支援的一組功能。 + + + 初始化 類別的新執行個體。 + + + 取得或設定值,指出非同步 方法是否可以用於特定 執行個體。 + 如果可以使用非同步方法,則為 true,否則為 false。 + + + 取得或設定值,這個值表示 XML 寫入器是否應該檢查以確定文件中的所有字元都符合 W3C XML 1.0 建議事項中的<2.2 字元>一節。 + true 表示執行字元檢查,否則為 false。預設值為 true。 + + + 建立 執行個體的複本。 + 複製的 物件。 + + + 取得或設定值,指出呼叫 方法時, 是否也應該關閉基礎資料流或 + true 表示也關閉基礎資料流或 ,否則為 false。預設值為 false。 + + + 取得或設定 XML 寫入器檢查 XML 輸出的一致性層級。 + 其中一個指定一致性層級 (文件、片段或自動偵測) 的列舉值。預設值為 + + + 取得或設定要使用的文字編碼方式類型。 + 要使用的文字編碼方式。預設值為 Encoding.UTF8。 + + + 取得或設定值,指出是否要縮排項目。 + true 表示在新行和縮排上寫入個別項目,否則為 false。預設值為 false。 + + + 取得或設定縮排時使用的字元字串。當 屬性設為 true 時會使用這項設定。 + 縮排時使用的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設值為兩個空格。 + The value assigned to the is null. + + + 取得或設定值,這個值表示 是否應該在寫入 XML 內容時移除重複的命名空間宣告。預設行為是讓寫入器輸出寫入器命名空間解析程式中出現的所有命名空間宣告。 + + 列舉類型,用來指定是否要移除 中的重複命名空間宣告。 + + + 取得或設定用於分行符號的字元字串。 + 用於分行符號的字元字串。它可以設為任何字串值。不過,若要確保有效的 XML,您應該只指定有效的空白字元 (例如,空格字元、定位字元、歸位字元或換行符號)。預設為 \r\n (歸位字元、新行)。 + The value assigned to the is null. + + + 取得或設定值,指出是否要將輸出中的分行符號標準化。 + 其中一個 值。預設值為 + + + 取得或設定值,指出是否將屬性寫在新行上。 + true 表示將屬性寫在獨立的行上,否則為 false。預設值為 false。注意事項當 屬性值為 false 時,這項設定不會有任何作用。當 設為 true 時,會在每個屬性之前加上新行和一個額外的縮排層級。 + + + 取得或設定值,指出是否省略 XML 宣告。 + true 表示省略 XML 宣告,否則為 false。預設值為 false,表示會寫入 XML 宣告。 + + + 將設定類別的成員重設為其預設值。 + + + 取得或設定值,指出 是否會在呼叫 方法時,將結尾標記加入所有未封閉的項目標記。 + 如果將關閉所有未封閉的項目標記,則為 true,否則為 false。預設值是 true。 + + + 依全球資訊網協會 (W3C) XML 結構描述第 1 部分:結構及XML 結構描述第 2 部分:資料類型 所規定之 XML 結構描述的記憶體中表示。 + + + 指示屬性 (Attribute) 或項目是否需要以命名空間前置詞限定。 + + + 項目和屬性格式未在結構描述中指定。 + + + 項目和屬性必須以命名空間前置詞限定。 + + + 項目和屬性不需要以命名空間前置詞限定。 + + + 為 XML 序列化和還原序列化提供自訂格式化。 + + + 這個方法應保留且不應予以使用。實作 IXmlSerializable 介面時,您應該從這個方法傳回 null (在 Visual Basic 中為 Nothing),而且如果需要指定自訂結構描述,請改為將 套用至類別。 + + ,描述物件的 XML 表示,該物件由 方法產生,由 方法取用。 + + + 從物件的 XML 表示產生該物件。 + 還原序列化物件的 資料流。 + + + 將物件轉換成其 XML 表示。 + 序列化物件的 資料流。 + + + 套用至型別後,儲存傳回 XML 結構描述之型別的靜態方法名稱以及控制型別之序列化 (Serialization) 的 (或用於匿名型別的 )。 + + + 初始化 類別的新執行個體,並採用提供型別之 XML 結構描述的靜態方法名稱。 + 要實作之靜態方法的名稱。 + + + 取得或設定值,以便判斷目標類別是否為萬用字元,或者該類別的結構描述是否僅含有 xs:any 項目。 + 如果該類別為萬用字元,或者結構描述僅含有 xs:any 項目,則為 true,否則為 false。 + + + 取得提供型別之 XML 結構描述的靜態方法名稱以及其 XML 結構描述資料型別的名稱。 + 由 XML 基礎結構叫用以傳回 XML 結構描述之方法的名稱。 + + + \ No newline at end of file diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/win8/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/win8/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/wp80/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/wp80/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/wpa81/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/wpa81/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinios10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinios10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinmac20/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinmac20/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarintvos10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarintvos10/_._ new file mode 100644 index 0000000..e69de29 diff --git a/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinwatchos10/_._ b/packages/System.Xml.ReaderWriter.4.3.0/ref/xamarinwatchos10/_._ new file mode 100644 index 0000000..e69de29