Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexCompilationInfo.cs / 1 / RegexCompilationInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- 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;} } } }/// [To be supplied] /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FtpCachePolicyElement.cs
- ToolStripItemRenderEventArgs.cs
- DataGridViewColumnCollectionEditor.cs
- HMACSHA256.cs
- DBCSCodePageEncoding.cs
- AssemblyCollection.cs
- AutoGeneratedField.cs
- DynamicField.cs
- DoWorkEventArgs.cs
- ControlValuePropertyAttribute.cs
- SecUtil.cs
- TraceSection.cs
- SHA512.cs
- TheQuery.cs
- ProtocolsConfigurationEntry.cs
- ReferenceSchema.cs
- OleDbPropertySetGuid.cs
- ListViewGroupConverter.cs
- CodeAssignStatement.cs
- AppSettingsExpressionBuilder.cs
- TypeConverter.cs
- WebPartDeleteVerb.cs
- CryptoApi.cs
- NonSerializedAttribute.cs
- SchemaInfo.cs
- DataGridAddNewRow.cs
- GridViewCommandEventArgs.cs
- SimpleWorkerRequest.cs
- WebPartEditVerb.cs
- ParameterElementCollection.cs
- ExtentCqlBlock.cs
- KnownIds.cs
- HttpConfigurationSystem.cs
- PathFigure.cs
- StorageAssociationTypeMapping.cs
- WindowsImpersonationContext.cs
- MruCache.cs
- ContextMenuAutomationPeer.cs
- ModelFactory.cs
- AddressHeaderCollection.cs
- OraclePermission.cs
- WebAdminConfigurationHelper.cs
- CaretElement.cs
- IisTraceWebEventProvider.cs
- ComplexType.cs
- GlyphElement.cs
- TypeInfo.cs
- PartBasedPackageProperties.cs
- AtomParser.cs
- HashJoinQueryOperatorEnumerator.cs
- CompilerWrapper.cs
- ColumnReorderedEventArgs.cs
- TargetFrameworkUtil.cs
- TextUtf8RawTextWriter.cs
- BaseConfigurationRecord.cs
- SelectionBorderGlyph.cs
- BitmapMetadata.cs
- ImportContext.cs
- PromptStyle.cs
- TableLayoutColumnStyleCollection.cs
- ConfigurationLocationCollection.cs
- JapaneseCalendar.cs
- GB18030Encoding.cs
- DiffuseMaterial.cs
- ConsoleTraceListener.cs
- ThreadStateException.cs
- WebErrorHandler.cs
- JoinCqlBlock.cs
- SqlResolver.cs
- OleDbRowUpdatingEvent.cs
- TemplatedMailWebEventProvider.cs
- ApplicationGesture.cs
- DateTimeConstantAttribute.cs
- FileStream.cs
- OleDbParameter.cs
- COM2PictureConverter.cs
- TriggerActionCollection.cs
- CodeGeneratorOptions.cs
- Stackframe.cs
- InnerItemCollectionView.cs
- OleDbPermission.cs
- NullableFloatMinMaxAggregationOperator.cs
- MyContact.cs
- UIElementParaClient.cs
- CurrencyWrapper.cs
- ToolStripDropDownItemDesigner.cs
- oledbconnectionstring.cs
- RowUpdatedEventArgs.cs
- Point.cs
- PropertyKey.cs
- LabelLiteral.cs
- TableCell.cs
- HtmlControlPersistable.cs
- GridEntry.cs
- ImageKeyConverter.cs
- WebGetAttribute.cs
- XmlBinaryReader.cs
- SystemResources.cs
- BamlBinaryReader.cs
- AssemblyCollection.cs