Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Common / AuthoringOM / Compiler / Configuration.cs / 1305376 / Configuration.cs
namespace System.Workflow.ComponentModel.Compiler { using System.Xml; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.Xml.Serialization; using System.Text.RegularExpressions; internal sealed class WorkflowCompilerConfigurationSectionGroup : ConfigurationSectionGroup { public WorkflowCompilerConfigurationSectionGroup() { } } internal sealed class AuthorizedTypesSectionHandler : IConfigurationSectionHandler { const string TargetFxVersionAttribute = "version"; #region IConfigurationSectionHandler Members object IConfigurationSectionHandler.Create(object parent, object configContext, XmlNode section) { Dictionary> authorizedTypes = new Dictionary >(); XmlSerializer xmlSerializer = new XmlSerializer(typeof(AuthorizedType)); foreach (XmlNode targetFx in section.ChildNodes) { XmlAttribute versionAttribute = targetFx.Attributes.GetNamedItem(TargetFxVersionAttribute) as XmlAttribute; if (versionAttribute != null) { string version = versionAttribute.Value; if (!string.IsNullOrEmpty(version)) { IList versionTypes; if (!authorizedTypes.TryGetValue(version, out versionTypes)) { versionTypes = new List (); authorizedTypes.Add(version, versionTypes); } foreach (XmlNode authorizedTypeNode in targetFx.ChildNodes) { AuthorizedType authorizedType = xmlSerializer.Deserialize(new XmlNodeReader(authorizedTypeNode)) as AuthorizedType; if (authorizedType != null) { versionTypes.Add(authorizedType); } } } } } return authorizedTypes; } #endregion } [XmlType("authorizedType")] public sealed class AuthorizedType { private string assemblyName; private string namespaceName; private string typeName; private bool isAuthorized; private Regex regex; [XmlAttribute] public string Assembly { get { return this.assemblyName; } set { this.assemblyName = value; } } [XmlAttribute] public string Namespace { get { return this.namespaceName; } set { this.namespaceName = value; } } [XmlAttribute] public string TypeName { get { return this.typeName; } set { this.typeName = value; } } [XmlAttribute] public string Authorized { get { return this.isAuthorized.ToString(); } set { this.isAuthorized = bool.Parse(value); } } [XmlIgnore] public Regex RegularExpression { get { if (this.regex == null) { this.regex = new Regex(MakeRegex(string.Format(CultureInfo.InvariantCulture, "{0}.{1}, {2}", new object[] { this.namespaceName, this.typeName, this.assemblyName })), RegexOptions.Compiled); return this.regex; } return this.regex; } } private static string MakeRegex(string inputString) { // RegEx uses the following as meta characters: // [\^$.|?*+() // Of these we translate * and ? to DOS wildcard equivalents in RegEx. // We escape rest of the Regex meta characters to thwart any luring // attacks caused by malformed inputString using meta characters. string outputString = inputString.Replace(@"\", @"\\"); outputString = outputString.Replace("[", @"\["); outputString = outputString.Replace("^", @"\^"); outputString = outputString.Replace("$", @"\$"); outputString = outputString.Replace("|", @"\|"); outputString = outputString.Replace("+", @"\+"); outputString = outputString.Replace("(", @"\("); outputString = outputString.Replace(")", @"\)"); outputString = outputString.Replace(".", @"\x2E"); outputString = outputString.Replace("*", @"[\w\x60\x2E]{0,}"); outputString = outputString.Replace("?", @"\w{1,1}"); // Make whitespaces optional outputString = outputString.Replace(" ", @"\s{0,}"); return outputString; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Workflow.ComponentModel.Compiler { using System.Xml; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.Xml.Serialization; using System.Text.RegularExpressions; internal sealed class WorkflowCompilerConfigurationSectionGroup : ConfigurationSectionGroup { public WorkflowCompilerConfigurationSectionGroup() { } } internal sealed class AuthorizedTypesSectionHandler : IConfigurationSectionHandler { const string TargetFxVersionAttribute = "version"; #region IConfigurationSectionHandler Members object IConfigurationSectionHandler.Create(object parent, object configContext, XmlNode section) { Dictionary > authorizedTypes = new Dictionary >(); XmlSerializer xmlSerializer = new XmlSerializer(typeof(AuthorizedType)); foreach (XmlNode targetFx in section.ChildNodes) { XmlAttribute versionAttribute = targetFx.Attributes.GetNamedItem(TargetFxVersionAttribute) as XmlAttribute; if (versionAttribute != null) { string version = versionAttribute.Value; if (!string.IsNullOrEmpty(version)) { IList versionTypes; if (!authorizedTypes.TryGetValue(version, out versionTypes)) { versionTypes = new List (); authorizedTypes.Add(version, versionTypes); } foreach (XmlNode authorizedTypeNode in targetFx.ChildNodes) { AuthorizedType authorizedType = xmlSerializer.Deserialize(new XmlNodeReader(authorizedTypeNode)) as AuthorizedType; if (authorizedType != null) { versionTypes.Add(authorizedType); } } } } } return authorizedTypes; } #endregion } [XmlType("authorizedType")] public sealed class AuthorizedType { private string assemblyName; private string namespaceName; private string typeName; private bool isAuthorized; private Regex regex; [XmlAttribute] public string Assembly { get { return this.assemblyName; } set { this.assemblyName = value; } } [XmlAttribute] public string Namespace { get { return this.namespaceName; } set { this.namespaceName = value; } } [XmlAttribute] public string TypeName { get { return this.typeName; } set { this.typeName = value; } } [XmlAttribute] public string Authorized { get { return this.isAuthorized.ToString(); } set { this.isAuthorized = bool.Parse(value); } } [XmlIgnore] public Regex RegularExpression { get { if (this.regex == null) { this.regex = new Regex(MakeRegex(string.Format(CultureInfo.InvariantCulture, "{0}.{1}, {2}", new object[] { this.namespaceName, this.typeName, this.assemblyName })), RegexOptions.Compiled); return this.regex; } return this.regex; } } private static string MakeRegex(string inputString) { // RegEx uses the following as meta characters: // [\^$.|?*+() // Of these we translate * and ? to DOS wildcard equivalents in RegEx. // We escape rest of the Regex meta characters to thwart any luring // attacks caused by malformed inputString using meta characters. string outputString = inputString.Replace(@"\", @"\\"); outputString = outputString.Replace("[", @"\["); outputString = outputString.Replace("^", @"\^"); outputString = outputString.Replace("$", @"\$"); outputString = outputString.Replace("|", @"\|"); outputString = outputString.Replace("+", @"\+"); outputString = outputString.Replace("(", @"\("); outputString = outputString.Replace(")", @"\)"); outputString = outputString.Replace(".", @"\x2E"); outputString = outputString.Replace("*", @"[\w\x60\x2E]{0,}"); outputString = outputString.Replace("?", @"\w{1,1}"); // Make whitespaces optional outputString = outputString.Replace(" ", @"\s{0,}"); return outputString; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CryptoConfig.cs
- XmlSchemaGroupRef.cs
- IntSecurity.cs
- NullableConverter.cs
- ExceptionDetail.cs
- EventRoute.cs
- MemberPath.cs
- SplashScreen.cs
- ListSourceHelper.cs
- RegexStringValidator.cs
- DataGridViewHeaderCell.cs
- WebPartManagerInternals.cs
- HandledMouseEvent.cs
- UInt64Storage.cs
- TemplatePartAttribute.cs
- CodeVariableReferenceExpression.cs
- CapacityStreamGeometryContext.cs
- TableLayoutStyle.cs
- AnnotationResourceCollection.cs
- SoapClientMessage.cs
- DataGridViewDataConnection.cs
- DynamicResourceExtensionConverter.cs
- HwndProxyElementProvider.cs
- TextSegment.cs
- BindableTemplateBuilder.cs
- EventWaitHandleSecurity.cs
- FileDetails.cs
- ContentPlaceHolder.cs
- StringUtil.cs
- TrackBarDesigner.cs
- NeutralResourcesLanguageAttribute.cs
- SubMenuStyleCollection.cs
- RenderingEventArgs.cs
- WindowsButton.cs
- MSAANativeProvider.cs
- PrintDocument.cs
- SoapInteropTypes.cs
- DispatcherHookEventArgs.cs
- CodeTypeMemberCollection.cs
- FixedPosition.cs
- ReflectPropertyDescriptor.cs
- XmlSecureResolver.cs
- FieldToken.cs
- TriggerCollection.cs
- WebException.cs
- WhereQueryOperator.cs
- SystemDropShadowChrome.cs
- DotExpr.cs
- RealProxy.cs
- TypeGeneratedEventArgs.cs
- PolicyImporterElement.cs
- Int32RectValueSerializer.cs
- TreeNodeStyleCollectionEditor.cs
- Compiler.cs
- FileSystemEventArgs.cs
- ExtensionFile.cs
- NativeMethods.cs
- ComponentDesigner.cs
- xmlsaver.cs
- SchemaComplexType.cs
- Pens.cs
- DbConvert.cs
- ColumnResult.cs
- LocatorManager.cs
- TransportBindingElement.cs
- EnumerableCollectionView.cs
- SQLBinaryStorage.cs
- SystemGatewayIPAddressInformation.cs
- FieldMetadata.cs
- BoundsDrawingContextWalker.cs
- SeverityFilter.cs
- ContextBase.cs
- dataobject.cs
- HtmlInputControl.cs
- EventManager.cs
- ADMembershipUser.cs
- Membership.cs
- WebHttpSecurityModeHelper.cs
- ConfigurationLocation.cs
- WizardPanelChangingEventArgs.cs
- TextEditorThreadLocalStore.cs
- DriveNotFoundException.cs
- CollectionBase.cs
- FontStyle.cs
- Container.cs
- PropertyEmitterBase.cs
- DBAsyncResult.cs
- CustomPopupPlacement.cs
- EntityException.cs
- ClientSettingsStore.cs
- ScriptHandlerFactory.cs
- SaveFileDialog.cs
- DataGridLinkButton.cs
- ToolboxBitmapAttribute.cs
- GestureRecognizer.cs
- URLMembershipCondition.cs
- TextEditorLists.cs
- Helper.cs
- Model3D.cs
- CodeSubDirectory.cs