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
- XmlSerializableReader.cs
- ReadOnlyDictionary.cs
- Hash.cs
- KeyedCollection.cs
- ComIntegrationManifestGenerator.cs
- WindowsStatic.cs
- ObjectListFieldsPage.cs
- ColumnMapProcessor.cs
- InstanceDataCollection.cs
- AccessDataSource.cs
- NumberSubstitution.cs
- DataObjectAttribute.cs
- XmlSchema.cs
- XmlSchemaAll.cs
- TTSEngineTypes.cs
- Directory.cs
- VScrollBar.cs
- DataControlImageButton.cs
- DesignerPerfEventProvider.cs
- _ContextAwareResult.cs
- AdRotatorDesigner.cs
- SerialReceived.cs
- DtdParser.cs
- TreeNodeCollection.cs
- ExpressionBuilderContext.cs
- SafeNativeMethods.cs
- PerformanceCounterPermissionEntryCollection.cs
- SerialPinChanges.cs
- SoapCodeExporter.cs
- SqlDuplicator.cs
- SourceLineInfo.cs
- DataGridViewComboBoxEditingControl.cs
- TextServicesContext.cs
- PartManifestEntry.cs
- CultureInfoConverter.cs
- LinkLabelLinkClickedEvent.cs
- TypeProvider.cs
- BamlTreeNode.cs
- AbsoluteQuery.cs
- ContractMethodParameterInfo.cs
- Identity.cs
- ExtendedProperty.cs
- AppDomainProtocolHandler.cs
- StatusBarPanel.cs
- ResourceAttributes.cs
- DataBindingCollection.cs
- CustomValidator.cs
- ImageInfo.cs
- PropertyDescriptorComparer.cs
- MetadataPropertyCollection.cs
- SimplePropertyEntry.cs
- x509store.cs
- QuotedStringFormatReader.cs
- WsiProfilesElement.cs
- streamingZipPartStream.cs
- DBConnection.cs
- ScrollableControl.cs
- ContainerUtilities.cs
- SHA512Managed.cs
- LineInfo.cs
- TemplateXamlTreeBuilder.cs
- LowerCaseStringConverter.cs
- TemplatedEditableDesignerRegion.cs
- SetMemberBinder.cs
- QuestionEventArgs.cs
- DirectoryGroupQuery.cs
- Base64Encoder.cs
- ISessionStateStore.cs
- RawStylusInputCustomData.cs
- CodeSnippetTypeMember.cs
- WebPartDisplayMode.cs
- ScriptingJsonSerializationSection.cs
- KeyValueSerializer.cs
- ConnectionPool.cs
- KeyboardNavigation.cs
- URLIdentityPermission.cs
- MessageSmuggler.cs
- TextBoxBaseDesigner.cs
- XPathNavigatorKeyComparer.cs
- SafeUserTokenHandle.cs
- XmlSchemaComplexContent.cs
- InternalPermissions.cs
- BitmapImage.cs
- Splitter.cs
- Binding.cs
- CustomCategoryAttribute.cs
- AttributeAction.cs
- SizeAnimationUsingKeyFrames.cs
- XmlSiteMapProvider.cs
- ExpanderAutomationPeer.cs
- TextTreeTextBlock.cs
- RepeaterCommandEventArgs.cs
- TableCellAutomationPeer.cs
- EventLogLink.cs
- DbConnectionPoolCounters.cs
- Invariant.cs
- MembershipUser.cs
- ParameterEditorUserControl.cs
- Odbc32.cs
- MsmqReceiveParameters.cs