Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / UriParserTemplates.cs / 1 / UriParserTemplates.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*++ Abstract: This file contains a set of predefined parseres that a user can derive from See also GenericUriParser.cs file for more user choices Note these parsers are for user to derive from hence they are nor "simple" nor "built-in" Author: Alexei Vopilov Jul 26 2004 Revision History: --*/ // // ATTN: The below types must be compile-time registered with UriParser.CheckSetIsSimpleFlag() method // to avoid calling into the user code if there is no one. // namespace System { // // The HTTP Uri syntax description // MustHaveAuthority | AllowAnInternetHost | MayHaveUserInfo | MayHavePort | MayHavePath | MayHaveQuery | MayHaveFragment | // | PathIsRooted | ConvertPathSlashes | CompressPath | CanonicalizeAsFilePath | UnEscapeDotsAndSlashes // public class HttpStyleUriParser: UriParser { public HttpStyleUriParser():base(UriParser.HttpUri.Flags) { } } // // The FTP Uri syntax description // MustHaveAuthority | AllowAnInternetHost | MayHaveUserInfo | MayHavePort | MayHavePath | MayHaveFragment | PathIsRooted // ConvertPathSlashes | CompressPath | CanonicalizeAsFilePath // public class FtpStyleUriParser: UriParser { public FtpStyleUriParser():base(UriParser.FtpUri.Flags) { } } // // The FILE Uri syntax description // MustHaveAuthority | AllowEmptyHost| AllowAnInternetHost | MayHavePath | MayHaveFragment | PathIsRooted // | FileLikeUri | AllowDOSPath | ConvertPathSlashes | CompressPath | CanonicalizeAsFilePath | UnEscapeDotsAndSlashes // public class FileStyleUriParser: UriParser { public FileStyleUriParser():base(UriParser.FileUri.Flags) { } } // // The NEWS Uri syntax description // MayHavePath | MayHaveFragment // public class NewsStyleUriParser: UriParser { public NewsStyleUriParser():base(UriParser.NewsUri.Flags) { } } // // The GOPHER Uri syntax description // MustHaveAuthority | AllowAnInternetHost | MayHaveUserInfo | MayHavePort | MayHavePath | MayHaveFragment | PathIsRooted // public class GopherStyleUriParser: UriParser { public GopherStyleUriParser():base(UriParser.GopherUri.Flags) { } } // // The LDAP Uri syntax description // MustHaveAuthority | AllowEmptyHost | AllowAnInternetHost | MayHaveUserInfo | MayHavePort | MayHavePath | MayHaveQuery | MayHaveFragment | PathIsRooted // public class LdapStyleUriParser: UriParser { public LdapStyleUriParser():base(UriParser.LdapUri.Flags) { } } public class NetPipeStyleUriParser: UriParser { public NetPipeStyleUriParser():base(UriParser.NetPipeUri.Flags) { } } public class NetTcpStyleUriParser: UriParser { public NetTcpStyleUriParser():base(UriParser.NetTcpUri.Flags) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MasterPageCodeDomTreeGenerator.cs
- ConfigurationStrings.cs
- ClockController.cs
- _SpnDictionary.cs
- WindowsBrush.cs
- IndentTextWriter.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- BufferedWebEventProvider.cs
- EventLogHandle.cs
- CommandID.cs
- ReadOnlyDictionary.cs
- QueryPageSettingsEventArgs.cs
- RootProfilePropertySettingsCollection.cs
- NavigationEventArgs.cs
- QueryBranchOp.cs
- GacUtil.cs
- WebRequestModuleElement.cs
- StyleHelper.cs
- ImageClickEventArgs.cs
- SystemWebSectionGroup.cs
- NoClickablePointException.cs
- SqlDataAdapter.cs
- InkSerializer.cs
- DataServiceProviderMethods.cs
- CodeVariableReferenceExpression.cs
- ScriptManager.cs
- CompoundFileReference.cs
- EqualityComparer.cs
- IImplicitResourceProvider.cs
- CallbackDebugElement.cs
- GridViewRowCollection.cs
- DataGridViewAccessibleObject.cs
- Annotation.cs
- TextWriter.cs
- StylusCollection.cs
- EllipticalNodeOperations.cs
- ConcurrencyBehavior.cs
- odbcmetadatacollectionnames.cs
- CacheOutputQuery.cs
- ClientSettingsProvider.cs
- safex509handles.cs
- TextSpanModifier.cs
- HtmlGenericControl.cs
- GroupBox.cs
- ScriptingSectionGroup.cs
- ExpandoObject.cs
- CheckBox.cs
- TreeNode.cs
- SiteMembershipCondition.cs
- ObjectAnimationBase.cs
- StackSpiller.Temps.cs
- SqlDataSourceCustomCommandPanel.cs
- _ConnectOverlappedAsyncResult.cs
- SendActivityDesigner.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- Number.cs
- UpdateTranslator.cs
- BulletedListEventArgs.cs
- MonikerUtility.cs
- VectorValueSerializer.cs
- TextElement.cs
- FacetChecker.cs
- FixedDocumentPaginator.cs
- RSAOAEPKeyExchangeFormatter.cs
- QueryReaderSettings.cs
- AxisAngleRotation3D.cs
- ExtendedPropertyCollection.cs
- TextSegment.cs
- FederatedMessageSecurityOverHttp.cs
- Adorner.cs
- DebugHandleTracker.cs
- CloseCryptoHandleRequest.cs
- FixedDocumentPaginator.cs
- typedescriptorpermission.cs
- SocketException.cs
- StatusBarPanelClickEvent.cs
- NotFiniteNumberException.cs
- figurelengthconverter.cs
- _LocalDataStoreMgr.cs
- XPathDescendantIterator.cs
- PageClientProxyGenerator.cs
- WhitespaceSignificantCollectionAttribute.cs
- ControlBuilderAttribute.cs
- DrawingBrush.cs
- DispatchChannelSink.cs
- NamespaceListProperty.cs
- TemplatePropertyEntry.cs
- PersonalizationStateInfo.cs
- ChannelCacheSettings.cs
- FaultHandlingFilter.cs
- BamlLocalizableResourceKey.cs
- LicenseException.cs
- ObjectSecurity.cs
- BamlResourceDeserializer.cs
- HandlerBase.cs
- ServiceObjectContainer.cs
- TypeLoadException.cs
- CroppedBitmap.cs
- FontWeights.cs
- XmlAutoDetectWriter.cs