Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GC.cs
- ConnectionInterfaceCollection.cs
- JoinGraph.cs
- ArrayTypeMismatchException.cs
- ConnectionInterfaceCollection.cs
- OrderingInfo.cs
- XamlReaderHelper.cs
- SystemInformation.cs
- RadioButtonAutomationPeer.cs
- SemanticResolver.cs
- ServiceModelSecurityTokenTypes.cs
- TextEffect.cs
- MetadataSource.cs
- JsonReaderDelegator.cs
- SystemNetHelpers.cs
- RegistrySecurity.cs
- CommittableTransaction.cs
- DataControlField.cs
- UpdatePanelTriggerCollection.cs
- AutoResizedEvent.cs
- RawAppCommandInputReport.cs
- SerializationObjectManager.cs
- SurrogateEncoder.cs
- SourceItem.cs
- PeerTransportListenAddressConverter.cs
- XmlIlVisitor.cs
- DoubleStorage.cs
- DNS.cs
- QilDataSource.cs
- BinHexEncoder.cs
- MemberHolder.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- _DomainName.cs
- DataObject.cs
- HandoffBehavior.cs
- OpCodes.cs
- PageThemeParser.cs
- StatusBarDrawItemEvent.cs
- ToolBar.cs
- BufferedGraphicsContext.cs
- Int32Rect.cs
- ItemsPresenter.cs
- HttpResponseHeader.cs
- IgnoreSection.cs
- DataGridViewRowHeaderCell.cs
- MenuCommands.cs
- ChtmlSelectionListAdapter.cs
- ValidationHelper.cs
- ArgumentNullException.cs
- FillRuleValidation.cs
- SendParametersContent.cs
- ClientProxyGenerator.cs
- TreeWalker.cs
- ToolStripDropDownButton.cs
- SystemException.cs
- Vector3DAnimationUsingKeyFrames.cs
- SQLStringStorage.cs
- ProcessHost.cs
- VisualTreeUtils.cs
- CallTemplateAction.cs
- DataObjectAttribute.cs
- AdapterSwitches.cs
- ExpanderAutomationPeer.cs
- PersonalizationDictionary.cs
- BoundField.cs
- DrawingCollection.cs
- DefaultWorkflowTransactionService.cs
- VerificationAttribute.cs
- DataPagerCommandEventArgs.cs
- initElementDictionary.cs
- EndEvent.cs
- ArraySegment.cs
- SecurityAlgorithmSuiteConverter.cs
- DisplayNameAttribute.cs
- RectangleConverter.cs
- FunctionQuery.cs
- DesignerAdapterAttribute.cs
- IIS7WorkerRequest.cs
- ClientOperationFormatterProvider.cs
- NavigateEvent.cs
- StreamingContext.cs
- UnknownMessageReceivedEventArgs.cs
- ReadOnlyActivityGlyph.cs
- WebServiceHandlerFactory.cs
- BinHexEncoding.cs
- FormView.cs
- FixedSOMSemanticBox.cs
- FileVersionInfo.cs
- ServerIdentity.cs
- ScriptRef.cs
- ValueOfAction.cs
- TableItemStyle.cs
- CodeConditionStatement.cs
- ISessionStateStore.cs
- InheritablePropertyChangeInfo.cs
- RC2CryptoServiceProvider.cs
- PropertyDescriptorCollection.cs
- DoubleAverageAggregationOperator.cs
- DurableTimerExtension.cs
- SemaphoreSlim.cs