Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / UriParserTemplates.cs / 1305376 / 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
- XmlNotation.cs
- unsafenativemethodsother.cs
- RoleManagerEventArgs.cs
- DecoderExceptionFallback.cs
- SimpleMailWebEventProvider.cs
- AcceleratedTokenAuthenticator.cs
- InsufficientMemoryException.cs
- CapabilitiesAssignment.cs
- SemanticKeyElement.cs
- Trace.cs
- DynamicValidatorEventArgs.cs
- HtmlToClrEventProxy.cs
- ResourceReferenceExpressionConverter.cs
- Renderer.cs
- ServicePoint.cs
- ExpandedWrapper.cs
- MimeFormatExtensions.cs
- OutputCacheSection.cs
- ClientProxyGenerator.cs
- ChangePasswordDesigner.cs
- GPRECT.cs
- PrintPreviewDialog.cs
- Convert.cs
- AssemblyBuilderData.cs
- PageRanges.cs
- Utility.cs
- CallSiteOps.cs
- CompleteWizardStep.cs
- StylusPlugin.cs
- MultilineStringConverter.cs
- RenderData.cs
- InputLanguageSource.cs
- RenderTargetBitmap.cs
- WorkflowTraceTransfer.cs
- ReflectEventDescriptor.cs
- XPathNodeList.cs
- ExtensibleClassFactory.cs
- DataGridAutoFormatDialog.cs
- ToolStripOverflowButton.cs
- CodeMemberField.cs
- MSAAWinEventWrap.cs
- PasswordPropertyTextAttribute.cs
- PersonalizationStateInfoCollection.cs
- QueryLifecycle.cs
- XXXInfos.cs
- IfElseDesigner.xaml.cs
- COM2PropertyDescriptor.cs
- ComponentResourceKeyConverter.cs
- XmlSchemaGroupRef.cs
- DesignTimeParseData.cs
- CngAlgorithmGroup.cs
- DesignerVerbCollection.cs
- ToolStripButton.cs
- ReferenceList.cs
- SourceItem.cs
- RegexCode.cs
- NativeMethods.cs
- XmlUTF8TextWriter.cs
- SrgsElementFactoryCompiler.cs
- SoapSchemaExporter.cs
- CollectionConverter.cs
- FaultReason.cs
- MethodCallConverter.cs
- Figure.cs
- COM2ColorConverter.cs
- RegexCompiler.cs
- BaseTransportHeaders.cs
- XsltException.cs
- SmtpNetworkElement.cs
- ProfileSettingsCollection.cs
- SyntaxCheck.cs
- METAHEADER.cs
- HttpProcessUtility.cs
- AccessedThroughPropertyAttribute.cs
- ConstraintConverter.cs
- CookieProtection.cs
- XPathAncestorQuery.cs
- DecoderExceptionFallback.cs
- WebAdminConfigurationHelper.cs
- StatusBarDrawItemEvent.cs
- FixedFindEngine.cs
- DbProviderFactories.cs
- DatagramAdapter.cs
- CodeIdentifiers.cs
- ControlParameter.cs
- QilReference.cs
- AsyncResult.cs
- HtmlTableRow.cs
- EditorZoneBase.cs
- TdsValueSetter.cs
- HwndSourceKeyboardInputSite.cs
- PersonalizableAttribute.cs
- TextDecorationCollection.cs
- ComponentManagerBroker.cs
- ColumnWidthChangedEvent.cs
- BitmapSource.cs
- TableLayoutSettingsTypeConverter.cs
- UInt64Converter.cs
- ToolbarAUtomationPeer.cs
- HtmlForm.cs