Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / PrefixQName.cs / 1305376 / PrefixQName.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; internal sealed class PrefixQName { public string Prefix; public string Name; public string Namespace; internal void ClearPrefix() { Prefix = string.Empty; } internal void SetQName(string qname) { PrefixQName.ParseQualifiedName(qname, out Prefix, out Name); } // // Parsing qualified names // public static void ParseQualifiedName(string qname, out string prefix, out string local) { Debug.Assert(qname != null); prefix = string.Empty; local = string.Empty; // parse first NCName (prefix or local name) int position = ValidateNames.ParseNCName(qname); if (position == 0) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } local = qname.Substring(0, position); // not at the end -> parse ':' and the second NCName (local name) if (position < qname.Length) { if (qname[position] == ':') { int startLocalNamePos = ++position; prefix = local; int len = ValidateNames.ParseNCName(qname, position); position += len; if (len == 0) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } local = qname.Substring(startLocalNamePos, len); } // still not at the end -> error if (position < qname.Length) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } } } public static bool ValidatePrefix(string prefix) { if (prefix.Length == 0) { return false; } int endPos = ValidateNames.ParseNCName(prefix, 0); return endPos == prefix.Length; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; internal sealed class PrefixQName { public string Prefix; public string Name; public string Namespace; internal void ClearPrefix() { Prefix = string.Empty; } internal void SetQName(string qname) { PrefixQName.ParseQualifiedName(qname, out Prefix, out Name); } // // Parsing qualified names // public static void ParseQualifiedName(string qname, out string prefix, out string local) { Debug.Assert(qname != null); prefix = string.Empty; local = string.Empty; // parse first NCName (prefix or local name) int position = ValidateNames.ParseNCName(qname); if (position == 0) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } local = qname.Substring(0, position); // not at the end -> parse ':' and the second NCName (local name) if (position < qname.Length) { if (qname[position] == ':') { int startLocalNamePos = ++position; prefix = local; int len = ValidateNames.ParseNCName(qname, position); position += len; if (len == 0) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } local = qname.Substring(startLocalNamePos, len); } // still not at the end -> error if (position < qname.Length) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } } } public static bool ValidatePrefix(string prefix) { if (prefix.Length == 0) { return false; } int endPos = ValidateNames.ParseNCName(prefix, 0); return endPos == prefix.Length; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VideoDrawing.cs
- TextLine.cs
- MarkupObject.cs
- ExpressionEditor.cs
- ContextProperty.cs
- StrokeNodeOperations.cs
- DebuggerAttributes.cs
- MultiPropertyDescriptorGridEntry.cs
- X509SecurityToken.cs
- MenuItemBinding.cs
- BitmapEffectDrawingContent.cs
- TargetParameterCountException.cs
- CompiledRegexRunner.cs
- X509SecurityToken.cs
- BaseTemplateCodeDomTreeGenerator.cs
- FaultBookmark.cs
- ExtensionSurface.cs
- SharedDp.cs
- ToolboxItemSnapLineBehavior.cs
- ObjectItemConventionAssemblyLoader.cs
- ConsumerConnectionPointCollection.cs
- TypeBuilder.cs
- WebPageTraceListener.cs
- XmlSchemaIdentityConstraint.cs
- DataGridPageChangedEventArgs.cs
- CodeExpressionCollection.cs
- ItemsControl.cs
- SchemaConstraints.cs
- RegexMatch.cs
- DataView.cs
- ColumnWidthChangedEvent.cs
- FileUpload.cs
- TextBox.cs
- MissingSatelliteAssemblyException.cs
- SinglePageViewer.cs
- SerialPort.cs
- TreeNodeSelectionProcessor.cs
- ExtenderProvidedPropertyAttribute.cs
- MenuItem.cs
- SerialPort.cs
- Win32.cs
- ServicePointManager.cs
- Context.cs
- NamespaceMapping.cs
- TextServicesDisplayAttribute.cs
- AnonymousIdentificationSection.cs
- MeasureData.cs
- ServerValidateEventArgs.cs
- MimeFormImporter.cs
- SaveFileDialog.cs
- TaiwanLunisolarCalendar.cs
- EpmContentSerializer.cs
- WebHttpDispatchOperationSelectorData.cs
- LineServices.cs
- CodeExporter.cs
- ElementsClipboardData.cs
- ImageButton.cs
- AppManager.cs
- ResXFileRef.cs
- InternalControlCollection.cs
- DiagnosticEventProvider.cs
- _TransmitFileOverlappedAsyncResult.cs
- SimpleType.cs
- FacetValueContainer.cs
- SecureConversationServiceCredential.cs
- SQLSingle.cs
- DetailsViewModeEventArgs.cs
- WinFormsComponentEditor.cs
- PeerPresenceInfo.cs
- ElementFactory.cs
- HostedElements.cs
- PageParserFilter.cs
- DbProviderFactoriesConfigurationHandler.cs
- SoapProtocolImporter.cs
- EvidenceBase.cs
- PathFigure.cs
- SafeNativeMethods.cs
- ConfigXmlSignificantWhitespace.cs
- EndOfStreamException.cs
- CngProperty.cs
- SqlDataSourceQuery.cs
- ParameterSubsegment.cs
- DeclarativeCatalogPart.cs
- SoapClientMessage.cs
- ProcessThread.cs
- PropertyMappingExceptionEventArgs.cs
- HtmlMeta.cs
- GeneralTransform3D.cs
- DocumentPage.cs
- CodeNamespaceImportCollection.cs
- XPathArrayIterator.cs
- EntityObject.cs
- DesignerAdapterAttribute.cs
- CorrelationTokenTypeConvertor.cs
- Set.cs
- COAUTHINFO.cs
- ListViewItem.cs
- EncodingConverter.cs
- TrustSection.cs
- TextModifierScope.cs