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
- ArrangedElement.cs
- ExponentialEase.cs
- CompilationUnit.cs
- _FtpDataStream.cs
- ActiveXSite.cs
- SQLInt32Storage.cs
- ExtenderControl.cs
- PropertyGrid.cs
- RoleGroup.cs
- TreeViewTemplateSelector.cs
- AesCryptoServiceProvider.cs
- BitmapEffectrendercontext.cs
- UriExt.cs
- StylusPointPropertyUnit.cs
- BoundingRectTracker.cs
- BCLDebug.cs
- ReadOnlyHierarchicalDataSource.cs
- XPathDocument.cs
- AsyncResult.cs
- UnmanagedMemoryStream.cs
- OutputCacheProfileCollection.cs
- IndexedGlyphRun.cs
- URLString.cs
- MultiTrigger.cs
- CellPartitioner.cs
- ConfigurationErrorsException.cs
- CriticalExceptions.cs
- CompoundFileStorageReference.cs
- DataSourceXmlTextReader.cs
- SignerInfo.cs
- DeploymentSection.cs
- SQLMoney.cs
- DeferredTextReference.cs
- CodeCatchClauseCollection.cs
- ConfigXmlWhitespace.cs
- DynamicValidatorEventArgs.cs
- SiteMapHierarchicalDataSourceView.cs
- DesigntimeLicenseContextSerializer.cs
- GenericWebPart.cs
- CapabilitiesState.cs
- AuthenticationConfig.cs
- EdmMember.cs
- ComplexPropertyEntry.cs
- HttpServerVarsCollection.cs
- ProgressBar.cs
- ApplicationDirectoryMembershipCondition.cs
- ReadOnlyAttribute.cs
- PartManifestEntry.cs
- SapiGrammar.cs
- UserNameSecurityTokenParameters.cs
- _DisconnectOverlappedAsyncResult.cs
- EFDataModelProvider.cs
- Header.cs
- InputScopeAttribute.cs
- JsonFormatReaderGenerator.cs
- PointLightBase.cs
- XamlFigureLengthSerializer.cs
- PolicyLevel.cs
- IUnknownConstantAttribute.cs
- BitmapEffectGeneralTransform.cs
- TextEditorCharacters.cs
- MiniModule.cs
- FixedNode.cs
- MessageBox.cs
- Operators.cs
- DataGridRow.cs
- DefaultCommandConverter.cs
- BlurBitmapEffect.cs
- PrimitiveCodeDomSerializer.cs
- DocumentApplication.cs
- TextRangeProviderWrapper.cs
- BindingGroup.cs
- ListView.cs
- WindowsListViewGroupHelper.cs
- DataGridViewRowCollection.cs
- WorkflowTransactionService.cs
- XmlAttributeProperties.cs
- recordstatefactory.cs
- DataGridViewCellPaintingEventArgs.cs
- DataBinding.cs
- HtmlEmptyTagControlBuilder.cs
- EntityDataSourceDataSelection.cs
- DataControlHelper.cs
- VirtualPathUtility.cs
- AbsoluteQuery.cs
- LifetimeMonitor.cs
- HeaderCollection.cs
- PolygonHotSpot.cs
- SctClaimSerializer.cs
- SurrogateSelector.cs
- XamlHostingSectionGroup.cs
- BorderGapMaskConverter.cs
- DeleteMemberBinder.cs
- TemplateBindingExpressionConverter.cs
- EventHandlerList.cs
- StringReader.cs
- HwndSourceParameters.cs
- ClientSponsor.cs
- ProtocolsInstallComponent.cs
- ResponseBodyWriter.cs