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
- QueryExpr.cs
- SQLConvert.cs
- DesignerPerfEventProvider.cs
- PropertyGridCommands.cs
- X509ThumbprintKeyIdentifierClause.cs
- MimeParameter.cs
- PackageRelationshipCollection.cs
- SqlDependency.cs
- UpdateException.cs
- UniqueIdentifierService.cs
- DataView.cs
- SafeCryptoHandles.cs
- DashStyle.cs
- InstanceDescriptor.cs
- HScrollProperties.cs
- QueryInterceptorAttribute.cs
- DataServiceClientException.cs
- GCHandleCookieTable.cs
- ScalarOps.cs
- AgileSafeNativeMemoryHandle.cs
- ListViewTableRow.cs
- GridViewColumnHeader.cs
- Rule.cs
- FamilyTypefaceCollection.cs
- CombinedGeometry.cs
- OrderByBuilder.cs
- ObjectQueryExecutionPlan.cs
- LayoutEngine.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- elementinformation.cs
- SoapConverter.cs
- TcpChannelHelper.cs
- RequestStatusBarUpdateEventArgs.cs
- DataGridViewColumnStateChangedEventArgs.cs
- GenericPrincipal.cs
- EntityDataSourceDesignerHelper.cs
- TraceFilter.cs
- DataSourceXmlElementAttribute.cs
- SiteMapDataSourceView.cs
- SessionIDManager.cs
- PropertyTab.cs
- OleCmdHelper.cs
- ObjectItemCollection.cs
- DecimalAnimation.cs
- RuntimeHelpers.cs
- DSACryptoServiceProvider.cs
- XmlSchemaSimpleTypeList.cs
- BorderGapMaskConverter.cs
- ProviderManager.cs
- IndexingContentUnit.cs
- ErrorWebPart.cs
- CurrencyManager.cs
- Header.cs
- CheckBoxField.cs
- SequentialUshortCollection.cs
- TextServicesCompartmentEventSink.cs
- UserPreferenceChangingEventArgs.cs
- CustomErrorCollection.cs
- HashHelpers.cs
- DbProviderFactories.cs
- KeyNotFoundException.cs
- DesignerInterfaces.cs
- Unit.cs
- BinaryObjectInfo.cs
- RequiredFieldValidator.cs
- MsmqBindingElementBase.cs
- dsa.cs
- EventDrivenDesigner.cs
- TransformFinalBlockRequest.cs
- EditCommandColumn.cs
- XmlElementCollection.cs
- XmlDictionary.cs
- PermissionRequestEvidence.cs
- comcontractssection.cs
- SessionParameter.cs
- ValueType.cs
- GenericWebPart.cs
- BlobPersonalizationState.cs
- TextDataBindingHandler.cs
- AlphabeticalEnumConverter.cs
- UnknownBitmapDecoder.cs
- QueryOperationResponseOfT.cs
- ParagraphVisual.cs
- SafeCertificateStore.cs
- EntitySqlQueryBuilder.cs
- DurationConverter.cs
- SafeFileMappingHandle.cs
- StringWriter.cs
- TableCellCollection.cs
- InvokeProviderWrapper.cs
- TextComposition.cs
- BaseInfoTable.cs
- InternalControlCollection.cs
- CommandCollectionEditor.cs
- StaticContext.cs
- Stack.cs
- PtsContext.cs
- ParenthesizePropertyNameAttribute.cs
- SecurityChannelFactory.cs
- IdleTimeoutMonitor.cs