Code:
/ FX-1434 / FX-1434 / 1.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
- ControlSerializer.cs
- ThreadInterruptedException.cs
- ColorContext.cs
- WebPartZoneAutoFormat.cs
- ParseNumbers.cs
- CodeGeneratorOptions.cs
- TextServicesPropertyRanges.cs
- LocalizationComments.cs
- MailWriter.cs
- RSAPKCS1SignatureFormatter.cs
- XmlChildEnumerator.cs
- RootProfilePropertySettingsCollection.cs
- BinaryMessageEncoder.cs
- JoinElimination.cs
- VirtualDirectoryMapping.cs
- GiveFeedbackEventArgs.cs
- FormsAuthenticationUserCollection.cs
- ObjectSet.cs
- TableCell.cs
- Converter.cs
- AddInIpcChannel.cs
- ObjectSet.cs
- PrtTicket_Public.cs
- CallSite.cs
- BooleanConverter.cs
- SQLResource.cs
- NativeMethods.cs
- ChannelDemuxer.cs
- ZoomPercentageConverter.cs
- NamespaceList.cs
- HttpModuleAction.cs
- Vector3D.cs
- ResourceDefaultValueAttribute.cs
- DefaultPrintController.cs
- RemoteWebConfigurationHostStream.cs
- ClaimSet.cs
- MexHttpBindingCollectionElement.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- HintTextMaxWidthConverter.cs
- BitmapDecoder.cs
- CompatibleIComparer.cs
- FieldNameLookup.cs
- BindingContext.cs
- DataKeyCollection.cs
- FloatMinMaxAggregationOperator.cs
- ADRoleFactoryConfiguration.cs
- DataGridViewBindingCompleteEventArgs.cs
- Point4D.cs
- _LazyAsyncResult.cs
- IndexedString.cs
- UpdateCommand.cs
- OperationAbortedException.cs
- TextBreakpoint.cs
- XpsFilter.cs
- DbDataReader.cs
- WS2007FederationHttpBinding.cs
- BitmapEffectInput.cs
- PartManifestEntry.cs
- DispatcherTimer.cs
- XmlSchemaImporter.cs
- SplitContainer.cs
- Viewport3DVisual.cs
- BaseTemplatedMobileComponentEditor.cs
- CommandDesigner.cs
- ConfigurationManager.cs
- InternalConfigConfigurationFactory.cs
- EntityFunctions.cs
- XmlEntityReference.cs
- Signature.cs
- TempFiles.cs
- ContentPathSegment.cs
- TypeNameConverter.cs
- LinkArea.cs
- MessageSmuggler.cs
- NamedPermissionSet.cs
- ConfigXmlWhitespace.cs
- NetPipeSectionData.cs
- SchemaElementLookUpTableEnumerator.cs
- TableRow.cs
- MessageSecurityVersion.cs
- TextCompositionEventArgs.cs
- BitmapFrameDecode.cs
- TypeToStringValueConverter.cs
- Baml6Assembly.cs
- FontStretchConverter.cs
- RefType.cs
- AsmxEndpointPickerExtension.cs
- CompositeTypefaceMetrics.cs
- SmtpDigestAuthenticationModule.cs
- ColorComboBox.cs
- UiaCoreTypesApi.cs
- BindingGroup.cs
- NamedPermissionSet.cs
- KeyedCollection.cs
- TransactionScopeDesigner.cs
- EdmRelationshipRoleAttribute.cs
- XmlSortKey.cs
- ProfileSettings.cs
- RequestStatusBarUpdateEventArgs.cs
- InfoCardSymmetricAlgorithm.cs