Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RegexCapture.cs
- ListViewInsertEventArgs.cs
- EpmSourceTree.cs
- SemaphoreFullException.cs
- DocumentViewerAutomationPeer.cs
- ScopelessEnumAttribute.cs
- QilScopedVisitor.cs
- SeverityFilter.cs
- DataGridViewTopRowAccessibleObject.cs
- CacheDependency.cs
- DataGridViewButtonCell.cs
- TextBoxBase.cs
- ErrorInfoXmlDocument.cs
- BitStack.cs
- PropagatorResult.cs
- FilterException.cs
- InternalConfigSettingsFactory.cs
- ContentOperations.cs
- HostExecutionContextManager.cs
- TreePrinter.cs
- FileRecordSequenceHelper.cs
- XmlSchemaAnnotation.cs
- XhtmlBasicObjectListAdapter.cs
- Context.cs
- Int64Converter.cs
- UTF8Encoding.cs
- xmlfixedPageInfo.cs
- TcpDuplicateContext.cs
- ValidationManager.cs
- DecimalAnimation.cs
- IntranetCredentialPolicy.cs
- IntegrationExceptionEventArgs.cs
- ReadOnlyCollectionBase.cs
- FilteredAttributeCollection.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- AsyncStreamReader.cs
- XmlDataContract.cs
- HMACMD5.cs
- LinqDataSourceStatusEventArgs.cs
- ColorContextHelper.cs
- UnrecognizedPolicyAssertionElement.cs
- UnknownWrapper.cs
- TextServicesCompartmentEventSink.cs
- MemberDescriptor.cs
- XmlSchemaSimpleContent.cs
- IriParsingElement.cs
- HtmlInputButton.cs
- DelayDesigner.cs
- EntityProviderFactory.cs
- RIPEMD160Managed.cs
- ExpressionWriter.cs
- MembershipValidatePasswordEventArgs.cs
- ValueCollectionParameterReader.cs
- PtsPage.cs
- XmlEventCache.cs
- WebControlAdapter.cs
- FreeFormDragDropManager.cs
- LogLogRecord.cs
- X509Certificate2.cs
- ColumnWidthChangingEvent.cs
- TextBounds.cs
- DrawListViewSubItemEventArgs.cs
- StylusPointProperties.cs
- CodeAttributeArgumentCollection.cs
- EllipseGeometry.cs
- EncryptedPackage.cs
- SimpleApplicationHost.cs
- BypassElementCollection.cs
- DataTableReaderListener.cs
- NodeLabelEditEvent.cs
- ImportContext.cs
- QilNode.cs
- ByteConverter.cs
- CompModSwitches.cs
- SerializationSectionGroup.cs
- ImageConverter.cs
- CharacterMetrics.cs
- SqlTypeSystemProvider.cs
- BaseDataList.cs
- Currency.cs
- BufferAllocator.cs
- OdbcDataReader.cs
- ExpressionBuilderCollection.cs
- ProvidersHelper.cs
- SQLDouble.cs
- Table.cs
- XmlSerializationGeneratedCode.cs
- InteropBitmapSource.cs
- PageFunction.cs
- ActivityInstanceMap.cs
- QilVisitor.cs
- DocumentGrid.cs
- EmptyStringExpandableObjectConverter.cs
- DataGrid.cs
- HierarchicalDataBoundControl.cs
- HttpWebResponse.cs
- CatalogPartChrome.cs
- FontDifferentiator.cs
- StringWriter.cs
- HtmlButton.cs