Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / PrefixQName.cs / 1 / 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 // private static string ParseNCName(string qname, ref int position) { int qnameLength = qname.Length; int nameStart = position; XmlCharType xmlCharType = XmlCharType.Instance; if ( qnameLength == position || // Zero length ncname ! xmlCharType.IsStartNCNameChar(qname[position]) // Start from invalid char ) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } position ++; while (position < qnameLength && xmlCharType.IsNCNameChar(qname[position])) { position ++; } return qname.Substring(nameStart, position - nameStart); } public static void ParseQualifiedName(string qname, out string prefix, out string local) { Debug.Assert(qname != null); prefix = string.Empty; local = string.Empty; int position = 0; local = ParseNCName(qname, ref position); if (position < qname.Length) { if (qname[position] == ':') { position ++; prefix = local; local = ParseNCName(qname, ref position); } if (position < qname.Length) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } } } public static bool ValidatePrefix(string prefix) { if (prefix.Length == 0) { return false; } XmlCharType xmlCharType = XmlCharType.Instance; if (! xmlCharType.IsStartNCNameChar(prefix[0])) { return false; } for (int i = 1; i < prefix.Length; i ++) { if (! xmlCharType.IsNCNameChar(prefix[i])) { return false; } } return true; } } } // 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 // private static string ParseNCName(string qname, ref int position) { int qnameLength = qname.Length; int nameStart = position; XmlCharType xmlCharType = XmlCharType.Instance; if ( qnameLength == position || // Zero length ncname ! xmlCharType.IsStartNCNameChar(qname[position]) // Start from invalid char ) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } position ++; while (position < qnameLength && xmlCharType.IsNCNameChar(qname[position])) { position ++; } return qname.Substring(nameStart, position - nameStart); } public static void ParseQualifiedName(string qname, out string prefix, out string local) { Debug.Assert(qname != null); prefix = string.Empty; local = string.Empty; int position = 0; local = ParseNCName(qname, ref position); if (position < qname.Length) { if (qname[position] == ':') { position ++; prefix = local; local = ParseNCName(qname, ref position); } if (position < qname.Length) { throw XsltException.Create(Res.Xslt_InvalidQName, qname); } } } public static bool ValidatePrefix(string prefix) { if (prefix.Length == 0) { return false; } XmlCharType xmlCharType = XmlCharType.Instance; if (! xmlCharType.IsStartNCNameChar(prefix[0])) { return false; } for (int i = 1; i < prefix.Length; i ++) { if (! xmlCharType.IsNCNameChar(prefix[i])) { return false; } } return true; } } } // 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
- AccessDataSource.cs
- DefaultValueConverter.cs
- XmlSchemaAttribute.cs
- smtppermission.cs
- CodeComment.cs
- UntypedNullExpression.cs
- Brush.cs
- StatusBarItemAutomationPeer.cs
- TableMethodGenerator.cs
- CodeDirectoryCompiler.cs
- DBConcurrencyException.cs
- ToolStripRenderEventArgs.cs
- CompareInfo.cs
- _LocalDataStoreMgr.cs
- CodePropertyReferenceExpression.cs
- UriTemplateVariablePathSegment.cs
- HashCryptoHandle.cs
- WsdlEndpointConversionContext.cs
- XmlIlGenerator.cs
- BinaryFormatter.cs
- SrgsElement.cs
- PrintPreviewControl.cs
- TabControlAutomationPeer.cs
- DataGridViewUtilities.cs
- SafeFindHandle.cs
- HttpHandlerActionCollection.cs
- ComponentEvent.cs
- x509store.cs
- COM2ExtendedBrowsingHandler.cs
- InfiniteIntConverter.cs
- FunctionDescription.cs
- ListViewCommandEventArgs.cs
- SystemUnicastIPAddressInformation.cs
- MetaModel.cs
- CalloutQueueItem.cs
- OwnerDrawPropertyBag.cs
- ProviderCollection.cs
- XamlDesignerSerializationManager.cs
- IdentifierCreationService.cs
- TiffBitmapEncoder.cs
- QuaternionConverter.cs
- PerspectiveCamera.cs
- oledbconnectionstring.cs
- IArgumentProvider.cs
- DateTimeOffsetAdapter.cs
- SymbolTable.cs
- Gdiplus.cs
- LambdaCompiler.Statements.cs
- HttpRequest.cs
- WebPartTransformerAttribute.cs
- ServiceInfoCollection.cs
- DescendantBaseQuery.cs
- IISMapPath.cs
- XmlWriterSettings.cs
- AuthenticationException.cs
- StringToken.cs
- TransformerInfoCollection.cs
- TextFormatterContext.cs
- Propagator.ExtentPlaceholderCreator.cs
- AutoGeneratedField.cs
- StyleHelper.cs
- HttpException.cs
- EventDescriptor.cs
- ExeContext.cs
- CapabilitiesRule.cs
- SqlBooleanizer.cs
- BufferedConnection.cs
- DataGridViewCellFormattingEventArgs.cs
- BulletDecorator.cs
- sqlinternaltransaction.cs
- _SingleItemRequestCache.cs
- ParseElement.cs
- IdnElement.cs
- DefaultValueMapping.cs
- ToolStripItemImageRenderEventArgs.cs
- WindowsAuthenticationModule.cs
- UIHelper.cs
- BitmapEffectGroup.cs
- HebrewNumber.cs
- StylusLogic.cs
- ExternalException.cs
- RangeValidator.cs
- XmlSchemaImporter.cs
- Tuple.cs
- ApplicationDirectory.cs
- Transform.cs
- DesignSurfaceManager.cs
- GorillaCodec.cs
- ItemList.cs
- Vector3DAnimationBase.cs
- GeneralTransformCollection.cs
- FixedStringLookup.cs
- SapiRecoContext.cs
- FixedPageAutomationPeer.cs
- DesignerCalendarAdapter.cs
- FixedSOMPageConstructor.cs
- ActivityExecutor.cs
- ValueHandle.cs
- ProfileEventArgs.cs
- FormViewCommandEventArgs.cs