Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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) { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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) { } } } // 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
- CodeComment.cs
- _BaseOverlappedAsyncResult.cs
- UnaryOperationBinder.cs
- PartDesigner.cs
- Color.cs
- MailWebEventProvider.cs
- ShaderRenderModeValidation.cs
- MultiBinding.cs
- Mappings.cs
- TreeNodeCollectionEditor.cs
- WinCategoryAttribute.cs
- ExpressionBuilder.cs
- State.cs
- SspiSecurityToken.cs
- precedingsibling.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- QueryCacheEntry.cs
- HttpWebResponse.cs
- XmlAttributeOverrides.cs
- DataFormats.cs
- XmlSchemaSimpleTypeRestriction.cs
- DocumentViewerHelper.cs
- Compiler.cs
- XsltFunctions.cs
- _NestedSingleAsyncResult.cs
- QueryModel.cs
- FontInfo.cs
- InsufficientMemoryException.cs
- StyleModeStack.cs
- DbParameterHelper.cs
- PackageDigitalSignatureManager.cs
- FactoryRecord.cs
- DefaultSerializationProviderAttribute.cs
- PrimitiveRenderer.cs
- FunctionDetailsReader.cs
- EntityConnectionStringBuilder.cs
- WebConfigurationHostFileChange.cs
- BindingMAnagerBase.cs
- _LocalDataStoreMgr.cs
- RequestCachingSection.cs
- GridLength.cs
- DataView.cs
- EventLog.cs
- PageMediaSize.cs
- WeakRefEnumerator.cs
- SqlTypesSchemaImporter.cs
- CompilerResults.cs
- DocumentPage.cs
- RoutedCommand.cs
- SafeBitVector32.cs
- RequestSecurityToken.cs
- FileUtil.cs
- ApplicationDirectory.cs
- XhtmlBasicLinkAdapter.cs
- SignatureToken.cs
- CollectionTypeElement.cs
- DrawingImage.cs
- SafeCryptoHandles.cs
- TransformerTypeCollection.cs
- ComplusTypeValidator.cs
- ReferentialConstraint.cs
- HTMLTagNameToTypeMapper.cs
- ConditionalAttribute.cs
- _KerberosClient.cs
- TreeNodeBindingCollection.cs
- MessageFilterException.cs
- PropertyGridEditorPart.cs
- ConfigXmlAttribute.cs
- RequiredFieldValidator.cs
- UniqueEventHelper.cs
- FloaterParaClient.cs
- PathFigure.cs
- ISO2022Encoding.cs
- QueryAccessibilityHelpEvent.cs
- InkPresenterAutomationPeer.cs
- RelationshipDetailsCollection.cs
- TaiwanCalendar.cs
- VarRemapper.cs
- TransformGroup.cs
- SelectQueryOperator.cs
- SiteMapNodeItem.cs
- SecurityPermission.cs
- SoapMessage.cs
- PageParserFilter.cs
- SecurityDocument.cs
- DesignerSerializationOptionsAttribute.cs
- ScriptingJsonSerializationSection.cs
- TextParagraphView.cs
- ExpressionPrefixAttribute.cs
- InkCanvas.cs
- IdentitySection.cs
- Selector.cs
- EntitySqlQueryBuilder.cs
- Compiler.cs
- PageParserFilter.cs
- AuthenticationConfig.cs
- MouseBinding.cs
- OleDbConnectionInternal.cs
- SimpleRecyclingCache.cs
- TargetPerspective.cs