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
- ExpressionBuilderCollection.cs
- ParsedAttributeCollection.cs
- LinearGradientBrush.cs
- ConstructorBuilder.cs
- ExpressionBuilder.cs
- OdbcCommand.cs
- StaticExtensionConverter.cs
- BeginStoryboard.cs
- SecurityChannelListener.cs
- DataGridColumnCollection.cs
- HttpHandlersSection.cs
- RelativeSource.cs
- ScriptResourceHandler.cs
- SessionStateSection.cs
- COM2ColorConverter.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- TemplatedWizardStep.cs
- ObjectNavigationPropertyMapping.cs
- ControlPropertyNameConverter.cs
- Context.cs
- DataGridViewSortCompareEventArgs.cs
- TraceInternal.cs
- ObjectNotFoundException.cs
- ToolboxBitmapAttribute.cs
- webeventbuffer.cs
- PolicyDesigner.cs
- WebAdminConfigurationHelper.cs
- ImageDrawing.cs
- IPCCacheManager.cs
- GridViewColumnHeader.cs
- TextEditorContextMenu.cs
- QilInvokeLateBound.cs
- WebPartVerbCollection.cs
- Trigger.cs
- StringBuilder.cs
- WsdlHelpGeneratorElement.cs
- Win32SafeHandles.cs
- ApplicationFileCodeDomTreeGenerator.cs
- FileVersion.cs
- DependencyPropertyChangedEventArgs.cs
- SchemaMerger.cs
- TextEditorLists.cs
- GestureRecognitionResult.cs
- CheckedPointers.cs
- XmlDownloadManager.cs
- EventWaitHandle.cs
- GroupBoxRenderer.cs
- TreeNodeBindingCollection.cs
- Win32MouseDevice.cs
- LineServices.cs
- X509CertificateStore.cs
- MethodExpression.cs
- XmlSchemaSubstitutionGroup.cs
- BasicExpressionVisitor.cs
- ProcessModelSection.cs
- storepermissionattribute.cs
- StringWriter.cs
- WebPartHelpVerb.cs
- DataTableNewRowEvent.cs
- TypeConvertions.cs
- DynamicExpression.cs
- NetMsmqBindingCollectionElement.cs
- PropertyDescriptorComparer.cs
- ContentElement.cs
- bindurihelper.cs
- ListViewItemSelectionChangedEvent.cs
- SoapEnumAttribute.cs
- ConstraintManager.cs
- TreeBuilderBamlTranslator.cs
- ExportException.cs
- BamlLocalizableResourceKey.cs
- Aggregates.cs
- ClientSection.cs
- HtmlShim.cs
- safex509handles.cs
- SelectionGlyph.cs
- DataGridTablesFactory.cs
- SynchronizingStream.cs
- XmlQualifiedNameTest.cs
- Rfc2898DeriveBytes.cs
- DataTransferEventArgs.cs
- Label.cs
- ManagementNamedValueCollection.cs
- WebPartAddingEventArgs.cs
- CellTreeNodeVisitors.cs
- DbSourceCommand.cs
- BaseCollection.cs
- RenderCapability.cs
- GPRECTF.cs
- RelationshipDetailsCollection.cs
- MessageSmuggler.cs
- ConsoleKeyInfo.cs
- QueueSurrogate.cs
- ImageDrawing.cs
- SortKey.cs
- CheckBoxFlatAdapter.cs
- Utility.cs
- JsonEnumDataContract.cs
- PeerCollaborationPermission.cs
- SQLInt32Storage.cs