Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RelationshipNavigation.cs
- AuthenticationServiceManager.cs
- RequestCacheValidator.cs
- UIElementCollection.cs
- _NtlmClient.cs
- Grant.cs
- RelativeSource.cs
- FilterFactory.cs
- HttpDebugHandler.cs
- _NegotiateClient.cs
- VoiceObjectToken.cs
- DataGridViewControlCollection.cs
- AddInActivator.cs
- SQLDateTime.cs
- FunctionUpdateCommand.cs
- SqlServer2KCompatibilityCheck.cs
- Main.cs
- UserControlBuildProvider.cs
- GuidConverter.cs
- DataBindingList.cs
- XmlSerializerVersionAttribute.cs
- StdValidatorsAndConverters.cs
- SessionParameter.cs
- CollectionView.cs
- DateTimeFormatInfo.cs
- Win32PrintDialog.cs
- wgx_render.cs
- SynchronizationLockException.cs
- TransformedBitmap.cs
- ParseHttpDate.cs
- UIElementCollection.cs
- UIElement3DAutomationPeer.cs
- QilPatternVisitor.cs
- MobileListItem.cs
- Hex.cs
- DataSetUtil.cs
- BitConverter.cs
- DataServiceKeyAttribute.cs
- DataServiceHost.cs
- DataControlFieldCollection.cs
- SchemaElementDecl.cs
- SafeRegistryKey.cs
- StateFinalizationDesigner.cs
- TextOutput.cs
- DataGridViewRowCollection.cs
- XmlFormatMapping.cs
- DateTimeOffset.cs
- RunClient.cs
- _AutoWebProxyScriptWrapper.cs
- HwndKeyboardInputProvider.cs
- _ConnectStream.cs
- XmlIlGenerator.cs
- BuildManagerHost.cs
- NativeMethods.cs
- smtpconnection.cs
- PrinterSettings.cs
- DeferredSelectedIndexReference.cs
- DataSourceXmlSubItemAttribute.cs
- WindowsListViewGroup.cs
- CrossContextChannel.cs
- ResolveDuplexAsyncResult.cs
- MaskInputRejectedEventArgs.cs
- basevalidator.cs
- KnownColorTable.cs
- InvalidDataException.cs
- SqlDataReader.cs
- ResourcePermissionBaseEntry.cs
- DbBuffer.cs
- ObsoleteAttribute.cs
- UnmanagedMemoryStream.cs
- ComAdminInterfaces.cs
- UniqueIdentifierService.cs
- DataTableExtensions.cs
- DurableDispatcherAddressingFault.cs
- MessagingDescriptionAttribute.cs
- Currency.cs
- QueryResult.cs
- GridViewEditEventArgs.cs
- TraceInternal.cs
- FloaterBaseParaClient.cs
- WinFormsSecurity.cs
- SecurityElement.cs
- CallbackValidatorAttribute.cs
- SynchronizationContext.cs
- EpmContentDeSerializer.cs
- TaskSchedulerException.cs
- CodePageUtils.cs
- AssemblyNameProxy.cs
- CodeVariableReferenceExpression.cs
- Util.cs
- EncoderExceptionFallback.cs
- Control.cs
- DataSourceIDConverter.cs
- InfoCardCryptoHelper.cs
- DrawingContext.cs
- unsafenativemethodsother.cs
- AspNetSynchronizationContext.cs
- BitmapEffectDrawingContextWalker.cs
- CacheHelper.cs
- AssemblyCache.cs