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
- VirtualPathUtility.cs
- FormViewPagerRow.cs
- ValidationErrorEventArgs.cs
- TimeSpanFormat.cs
- WebUtil.cs
- ExecutionContext.cs
- InstanceKeyCollisionException.cs
- SessionIDManager.cs
- ToolStripGripRenderEventArgs.cs
- DeleteMemberBinder.cs
- PartitionResolver.cs
- ServiceModelDictionary.cs
- MaskedTextProvider.cs
- PerformanceCounterPermission.cs
- ListCardsInFileRequest.cs
- BufferBuilder.cs
- oledbconnectionstring.cs
- ToolStripDropDown.cs
- CanonicalFontFamilyReference.cs
- SingleTagSectionHandler.cs
- EntityDataSourceQueryBuilder.cs
- MailBnfHelper.cs
- WebEncodingValidatorAttribute.cs
- ChangesetResponse.cs
- StylusCollection.cs
- UserControlBuildProvider.cs
- DataGridViewColumnCollection.cs
- BinaryNode.cs
- SafePointer.cs
- HttpApplicationFactory.cs
- DateTimeValueSerializerContext.cs
- GPRECT.cs
- oledbmetadatacolumnnames.cs
- ColorComboBox.cs
- TextChange.cs
- DbParameterCollection.cs
- MultilineStringConverter.cs
- OleCmdHelper.cs
- CatchDesigner.xaml.cs
- WebPartTracker.cs
- ObjectStateManager.cs
- QilPatternVisitor.cs
- GenericAuthenticationEventArgs.cs
- AppearanceEditorPart.cs
- DataGridState.cs
- RepeaterItem.cs
- ParallelActivityDesigner.cs
- Matrix3D.cs
- RewritingPass.cs
- NullableIntSumAggregationOperator.cs
- HtmlTable.cs
- TouchPoint.cs
- ICspAsymmetricAlgorithm.cs
- PropertyInformation.cs
- ISFTagAndGuidCache.cs
- SchemaSetCompiler.cs
- LocatorGroup.cs
- ZeroOpNode.cs
- QueryInterceptorAttribute.cs
- XmlSchemaAll.cs
- RelationshipEndMember.cs
- ExpressionBuilderCollection.cs
- Lock.cs
- Deserializer.cs
- ButtonBaseAdapter.cs
- WebPartVerb.cs
- NameObjectCollectionBase.cs
- HttpException.cs
- SoapAttributeAttribute.cs
- _TransmitFileOverlappedAsyncResult.cs
- WorkflowRequestContext.cs
- CorrelationService.cs
- DNS.cs
- ContentFileHelper.cs
- PopupRootAutomationPeer.cs
- ResXFileRef.cs
- _LocalDataStore.cs
- ExceptionUtil.cs
- XmlWellformedWriterHelpers.cs
- MsmqInputChannelListenerBase.cs
- FunctionParameter.cs
- DataObject.cs
- ClickablePoint.cs
- HighlightVisual.cs
- RangeValidator.cs
- UnsafeNativeMethods.cs
- DataTransferEventArgs.cs
- CodeDirectionExpression.cs
- KeyValueConfigurationElement.cs
- WindowsTitleBar.cs
- VirtualizedContainerService.cs
- SchemaLookupTable.cs
- DataGridView.cs
- InputScopeNameConverter.cs
- DataGridViewDataConnection.cs
- __Filters.cs
- Misc.cs
- InputElement.cs
- TextTreeTextElementNode.cs
- DesignerView.Commands.cs