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
- PolygonHotSpot.cs
- SettingsPropertyValue.cs
- TimeBoundedCache.cs
- JulianCalendar.cs
- HtmlTextArea.cs
- PointLight.cs
- ListArgumentProvider.cs
- InstanceHandle.cs
- ArraySubsetEnumerator.cs
- XmlCharacterData.cs
- ToolTipAutomationPeer.cs
- PenContexts.cs
- XmlSecureResolver.cs
- BaseAppDomainProtocolHandler.cs
- XmlSchemaSequence.cs
- TypeDelegator.cs
- LinkDescriptor.cs
- CalendarAutoFormatDialog.cs
- XmlEncoding.cs
- ColumnCollection.cs
- ModifiableIteratorCollection.cs
- SourceSwitch.cs
- BindingExpressionUncommonField.cs
- XmlAttributeOverrides.cs
- WebBrowserHelper.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- DocumentSequence.cs
- BindingEntityInfo.cs
- HttpDebugHandler.cs
- namescope.cs
- PackagePartCollection.cs
- SettingsPropertyValueCollection.cs
- NonBatchDirectoryCompiler.cs
- ApplicationCommands.cs
- ExponentialEase.cs
- StrongNameMembershipCondition.cs
- NameNode.cs
- ProcessStartInfo.cs
- EmptyEnumerable.cs
- GridViewUpdateEventArgs.cs
- CodeTryCatchFinallyStatement.cs
- InvokePattern.cs
- GatewayIPAddressInformationCollection.cs
- SymbolEqualComparer.cs
- StringStorage.cs
- XmlArrayAttribute.cs
- EncoderExceptionFallback.cs
- TriggerActionCollection.cs
- MenuAdapter.cs
- TableChangeProcessor.cs
- DragDropHelper.cs
- PasswordTextContainer.cs
- ProtocolElementCollection.cs
- Command.cs
- TraceListeners.cs
- XmlSerializableWriter.cs
- WebContext.cs
- ColorIndependentAnimationStorage.cs
- OdbcEnvironment.cs
- FigureHelper.cs
- TableItemPattern.cs
- ResXDataNode.cs
- ActivityDesignerAccessibleObject.cs
- TransformerInfo.cs
- IndentedTextWriter.cs
- ConfigurationLocation.cs
- NonceToken.cs
- ProxyHwnd.cs
- securitycriticaldataClass.cs
- CollectionType.cs
- XPathAncestorIterator.cs
- DbModificationCommandTree.cs
- RoleGroupCollection.cs
- TypeResolvingOptionsAttribute.cs
- ResXDataNode.cs
- HttpListenerResponse.cs
- DataGridItemEventArgs.cs
- PropertyPathWorker.cs
- MemberMaps.cs
- ConfigurationPermission.cs
- Invariant.cs
- ChannelServices.cs
- HttpApplicationFactory.cs
- ParserExtension.cs
- ScriptManagerProxy.cs
- DataSourceControlBuilder.cs
- FrameSecurityDescriptor.cs
- MsmqMessageProperty.cs
- ImageCodecInfo.cs
- SafeNativeMethods.cs
- IndexOutOfRangeException.cs
- Typeface.cs
- Stacktrace.cs
- NonParentingControl.cs
- CngKeyCreationParameters.cs
- CellTreeNodeVisitors.cs
- FontUnit.cs
- ReferentialConstraint.cs
- SmtpReplyReaderFactory.cs
- SamlAuthenticationClaimResource.cs