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
- XmlExpressionDumper.cs
- BackStopAuthenticationModule.cs
- QueryableDataSourceHelper.cs
- StateMachineExecutionState.cs
- TTSEngineProxy.cs
- PrintPreviewControl.cs
- input.cs
- LambdaCompiler.Binary.cs
- UnhandledExceptionEventArgs.cs
- DoubleAnimationUsingPath.cs
- ResourcesGenerator.cs
- BitmapCache.cs
- LayeredChannelListener.cs
- RC2CryptoServiceProvider.cs
- FamilyTypefaceCollection.cs
- LoaderAllocator.cs
- GroupBoxAutomationPeer.cs
- DotExpr.cs
- PreProcessor.cs
- AspNetSynchronizationContext.cs
- bindurihelper.cs
- ConcurrentDictionary.cs
- DispatcherOperation.cs
- _ProxyChain.cs
- EntityViewGenerationAttribute.cs
- TraceContext.cs
- URLIdentityPermission.cs
- DataStorage.cs
- SendContent.cs
- DescendentsWalker.cs
- MessageDesigner.cs
- SaveLedgerEntryRequest.cs
- CreateUserWizardStep.cs
- BufferedGraphicsContext.cs
- StorageConditionPropertyMapping.cs
- Margins.cs
- SqlAliasesReferenced.cs
- ListSortDescriptionCollection.cs
- AnimationTimeline.cs
- CompatibleComparer.cs
- CookieHandler.cs
- ListInitExpression.cs
- WorkflowOwnerAsyncResult.cs
- ComponentDispatcher.cs
- EditingCommands.cs
- CheckBoxBaseAdapter.cs
- ChangeInterceptorAttribute.cs
- RestClientProxyHandler.cs
- ValidationError.cs
- SQLGuid.cs
- FixedSOMContainer.cs
- PageCopyCount.cs
- DataGridViewCellMouseEventArgs.cs
- InfiniteIntConverter.cs
- XamlWriter.cs
- CodeTypeReferenceExpression.cs
- AppSettingsReader.cs
- TextRunTypographyProperties.cs
- InputMethod.cs
- BlurBitmapEffect.cs
- DataRowChangeEvent.cs
- HttpGetProtocolImporter.cs
- TemplateParser.cs
- TextFormatter.cs
- ComboBoxRenderer.cs
- ApplicationServicesHostFactory.cs
- TemplateLookupAction.cs
- GenericsNotImplementedException.cs
- WebBrowserDocumentCompletedEventHandler.cs
- AccessDataSource.cs
- TabletCollection.cs
- log.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- AutomationPropertyInfo.cs
- RotateTransform3D.cs
- QueuePathDialog.cs
- Delegate.cs
- CodeTypeDeclaration.cs
- BrushConverter.cs
- EntityDataSourceSelectedEventArgs.cs
- PolygonHotSpot.cs
- DesignerVerb.cs
- SqlDependencyListener.cs
- DataGridViewCellEventArgs.cs
- Help.cs
- RequestUriProcessor.cs
- XamlBuildTaskServices.cs
- WebBrowserEvent.cs
- DataRelationCollection.cs
- TargetParameterCountException.cs
- PreparingEnlistment.cs
- Odbc32.cs
- DesignUtil.cs
- RewritingSimplifier.cs
- Substitution.cs
- RuleAction.cs
- MemoryFailPoint.cs
- TransportationConfigurationTypeInstallComponent.cs
- VirtualPath.cs
- PropertyManager.cs