Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexCompilationInfo.cs / 1305376 / RegexCompilationInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if !SILVERLIGHT namespace System.Text.RegularExpressions { using System; ////// [ Serializable() ] public class RegexCompilationInfo { private String pattern; private RegexOptions options; private String name; private String nspace; private bool isPublic; ////// [To be supplied] /// ////// public RegexCompilationInfo(String pattern, RegexOptions options, String name, String fullnamespace, bool ispublic) { Pattern = pattern; Name = name; Namespace = fullnamespace; this.options = options; isPublic = ispublic; } ////// [To be supplied] /// ////// public String Pattern { get { return pattern; } set { if (value == null) throw new ArgumentNullException("value"); pattern = value; } } ////// [To be supplied] /// ////// public RegexOptions Options { get { return options; } set { options = value;} } ////// [To be supplied] /// ////// public String Name { get { return name; } set { if (value == null) { throw new ArgumentNullException("value"); } if (value.Length == 0) { throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "value"), "value"); } name = value; } } ////// [To be supplied] /// ////// public String Namespace { get { return nspace; } set { if (value == null) throw new ArgumentNullException("value"); nspace = value; } } ////// [To be supplied] /// ////// public bool IsPublic { get { return isPublic; } set { isPublic = value;} } } } #endif // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// [To be supplied] /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CommandField.cs
- CheckoutException.cs
- LogManagementAsyncResult.cs
- XmlSecureResolver.cs
- AssemblyCollection.cs
- LocalizationParserHooks.cs
- LiteralText.cs
- StringValueConverter.cs
- TemplateGroupCollection.cs
- PersonalizablePropertyEntry.cs
- AxDesigner.cs
- IApplicationTrustManager.cs
- TreeView.cs
- TogglePatternIdentifiers.cs
- TemplatePropertyEntry.cs
- OdbcException.cs
- ControlValuePropertyAttribute.cs
- RequestDescription.cs
- BindStream.cs
- EpmCustomContentDeSerializer.cs
- ToolstripProfessionalRenderer.cs
- WindowsFormsEditorServiceHelper.cs
- SiteMapNode.cs
- EntityClientCacheEntry.cs
- BindingListCollectionView.cs
- SimpleType.cs
- CultureData.cs
- IdleTimeoutMonitor.cs
- TextRange.cs
- PolyQuadraticBezierSegment.cs
- XMLUtil.cs
- _NegoState.cs
- ProtocolsConfiguration.cs
- InProcStateClientManager.cs
- BrowserDefinition.cs
- AnnouncementClient.cs
- DataGridViewColumnEventArgs.cs
- SqlAggregateChecker.cs
- EntityKey.cs
- WebPartDescription.cs
- Win32PrintDialog.cs
- XamlReader.cs
- ObjectAnimationUsingKeyFrames.cs
- Attributes.cs
- TextContainer.cs
- ExpandedWrapper.cs
- DataDocumentXPathNavigator.cs
- ProcessManager.cs
- ChoiceConverter.cs
- StrokeNodeData.cs
- XsdValidatingReader.cs
- DateTimeAutomationPeer.cs
- ValueOfAction.cs
- SqlUnionizer.cs
- StringUtil.cs
- AutoSizeToolBoxItem.cs
- XmlSchemaFacet.cs
- PasswordBoxAutomationPeer.cs
- LineBreak.cs
- XmlDownloadManager.cs
- GiveFeedbackEventArgs.cs
- log.cs
- FileLoadException.cs
- SpinLock.cs
- ExtensibleClassFactory.cs
- TableCell.cs
- UInt16Storage.cs
- Emitter.cs
- CodePropertyReferenceExpression.cs
- DesignerEventService.cs
- TdsParserHelperClasses.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SqlCacheDependencySection.cs
- ConfigXmlCDataSection.cs
- WindowsEditBoxRange.cs
- DrawingVisualDrawingContext.cs
- StringFreezingAttribute.cs
- NonBatchDirectoryCompiler.cs
- CultureMapper.cs
- VisualStyleRenderer.cs
- DelegateBodyWriter.cs
- ArgumentValidation.cs
- PersonalizablePropertyEntry.cs
- FormattedText.cs
- XmlSchemaObjectTable.cs
- EventWaitHandle.cs
- SafeIUnknown.cs
- AutomationPeer.cs
- HttpStreamFormatter.cs
- XPathSingletonIterator.cs
- ProviderMetadata.cs
- ActivityPropertyReference.cs
- PassportAuthenticationEventArgs.cs
- ViewEventArgs.cs
- Debug.cs
- CodeAttributeDeclarationCollection.cs
- XmlTypeMapping.cs
- StaticExtensionConverter.cs
- ProvidePropertyAttribute.cs
- ProjectionPathSegment.cs