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
- PageRequestManager.cs
- AccessText.cs
- CFGGrammar.cs
- SoundPlayerAction.cs
- GeometryDrawing.cs
- loginstatus.cs
- EdmSchemaAttribute.cs
- Span.cs
- PointCollection.cs
- DataViewSetting.cs
- _HeaderInfoTable.cs
- XmlAggregates.cs
- CompoundFileStreamReference.cs
- ProxyAttribute.cs
- WindowsPrincipal.cs
- BrowserCapabilitiesCompiler.cs
- EditorAttribute.cs
- FormsIdentity.cs
- newinstructionaction.cs
- ConfigXmlElement.cs
- TypeGeneratedEventArgs.cs
- PeerObject.cs
- SystemThemeKey.cs
- SymmetricKeyWrap.cs
- RightNameExpirationInfoPair.cs
- CodeNamespaceCollection.cs
- WebPartZone.cs
- TextRunCacheImp.cs
- InputMethodStateTypeInfo.cs
- DataMember.cs
- ClientTarget.cs
- XmlResolver.cs
- Misc.cs
- MatrixTransform3D.cs
- ForceCopyBuildProvider.cs
- SequenceFullException.cs
- IDQuery.cs
- documentsequencetextcontainer.cs
- MappingException.cs
- HtmlUtf8RawTextWriter.cs
- EtwTrace.cs
- PropagatorResult.cs
- XmlElementAttributes.cs
- DispatcherFrame.cs
- ApplicationSecurityInfo.cs
- XPathSelfQuery.cs
- DrawingContext.cs
- InputLanguage.cs
- WebPartConnectionCollection.cs
- Button.cs
- ping.cs
- diagnosticsswitches.cs
- SiteMembershipCondition.cs
- QueryOutputWriterV1.cs
- GridEntry.cs
- TriggerBase.cs
- mda.cs
- SafeSecurityHelper.cs
- WorkflowInstanceRecord.cs
- ProxyElement.cs
- _TransmitFileOverlappedAsyncResult.cs
- Parser.cs
- PersonalizationEntry.cs
- TreeViewHitTestInfo.cs
- SourceFilter.cs
- XhtmlCssHandler.cs
- TextTreeExtractElementUndoUnit.cs
- XhtmlTextWriter.cs
- HttpFileCollection.cs
- DispatcherObject.cs
- DataGridCheckBoxColumn.cs
- MapPathBasedVirtualPathProvider.cs
- ImageBrush.cs
- MaterialGroup.cs
- DecimalFormatter.cs
- StopStoryboard.cs
- TileBrush.cs
- PeerCollaborationPermission.cs
- errorpatternmatcher.cs
- DecryptedHeader.cs
- wmiprovider.cs
- RawStylusInputCustomDataList.cs
- PopupRootAutomationPeer.cs
- SerTrace.cs
- SmtpFailedRecipientException.cs
- SettingsSavedEventArgs.cs
- LedgerEntry.cs
- XamlTreeBuilder.cs
- AutoGeneratedField.cs
- DataGridColumn.cs
- XsdBuildProvider.cs
- ExpandedWrapper.cs
- KeyValueSerializer.cs
- HeaderedContentControl.cs
- UshortList2.cs
- EventLogConfiguration.cs
- EdmType.cs
- RegexCharClass.cs
- BitmapMetadataBlob.cs
- HtmlInputFile.cs