Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Description / MimeTextImporter.cs / 1305376 / MimeTextImporter.cs
namespace System.Web.Services.Description { using System.Web.Services; using System.Web.Services.Protocols; using System.Collections; using System; using System.Reflection; using System.CodeDom; using System.CodeDom.Compiler; using System.Xml.Serialization; internal class MimeTextReturn : MimeReturn { MimeTextBinding textBinding; internal MimeTextBinding TextBinding { get { return textBinding; } set { textBinding = value; } } } internal class MimeTextImporter : MimeImporter { string methodName; internal override MimeParameterCollection ImportParameters() { return null; } internal override MimeReturn ImportReturn() { MimeTextBinding mimeTextBinding = (MimeTextBinding)ImportContext.OperationBinding.Output.Extensions.Find(typeof(MimeTextBinding)); if (mimeTextBinding == null) return null; if (mimeTextBinding.Matches.Count == 0) { ImportContext.UnsupportedOperationBindingWarning(Res.GetString(Res.MissingMatchElement0)); return null; } methodName = CodeIdentifier.MakeValid(ImportContext.OperationBinding.Name); MimeTextReturn importedReturn = new MimeTextReturn(); importedReturn.TypeName = ImportContext.ClassNames.AddUnique(methodName + "Matches", mimeTextBinding); importedReturn.TextBinding = mimeTextBinding; importedReturn.ReaderType = typeof(TextReturnReader); return importedReturn; } internal override void GenerateCode(MimeReturn[] importedReturns, MimeParameterCollection[] importedParameters) { for (int i = 0; i < importedReturns.Length; i++) { if (importedReturns[i] is MimeTextReturn) { GenerateCode((MimeTextReturn)importedReturns[i], ImportContext.ServiceImporter.CodeGenerationOptions); } } } void GenerateCode(MimeTextReturn importedReturn, CodeGenerationOptions options) { GenerateCode(importedReturn.TypeName, importedReturn.TextBinding.Matches, options); } void GenerateCode(string typeName, MimeTextMatchCollection matches, CodeGenerationOptions options) { CodeIdentifiers members = new CodeIdentifiers(); CodeTypeDeclaration codeClass = WebCodeGenerator.AddClass(ImportContext.CodeNamespace, typeName, string.Empty, new string[0], null, CodeFlags.IsPublic, ImportContext.ServiceImporter.CodeGenerator.Supports(GeneratorSupport.PartialTypes)); string[] fieldTypeNames = new string[matches.Count]; for (int i = 0; i < matches.Count; i++) { MimeTextMatch match = matches[i]; string name = members.AddUnique(CodeIdentifier.MakeValid(match.Name.Length == 0 ? methodName + "Match" : match.Name), match); CodeAttributeDeclarationCollection metadata = new CodeAttributeDeclarationCollection(); if (match.Pattern.Length == 0) throw new ArgumentException(Res.GetString(Res.WebTextMatchMissingPattern)); CodeExpression pattern = new CodePrimitiveExpression(match.Pattern); int numPropValues = 0; if (match.Group != 1) numPropValues++; if (match.Capture != 0) numPropValues++; if (match.IgnoreCase) numPropValues++; if (match.Repeats != 1 && match.Repeats != int.MaxValue) numPropValues++; CodeExpression[] propertyValues = new CodeExpression[numPropValues]; string[] propertyNames = new string[propertyValues.Length]; numPropValues = 0; if (match.Group != 1) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Group); propertyNames[numPropValues] = "Group"; numPropValues++; } if (match.Capture != 0) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Capture); propertyNames[numPropValues] = "Capture"; numPropValues++; } if (match.IgnoreCase) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.IgnoreCase); propertyNames[numPropValues] = "IgnoreCase"; numPropValues++; } if (match.Repeats != 1 && match.Repeats != int.MaxValue) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Repeats); propertyNames[numPropValues] = "MaxRepeats"; numPropValues++; } WebCodeGenerator.AddCustomAttribute(metadata, typeof(MatchAttribute), new CodeExpression[] { pattern }, propertyNames, propertyValues); string fieldTypeName; if (match.Matches.Count > 0) { fieldTypeName = ImportContext.ClassNames.AddUnique(CodeIdentifier.MakeValid(match.Type.Length == 0 ? name : match.Type), match); fieldTypeNames[i] = fieldTypeName; } else { fieldTypeName = typeof(string).FullName; } if (match.Repeats != 1) fieldTypeName += "[]"; CodeTypeMember member = WebCodeGenerator.AddMember(codeClass, fieldTypeName, name, null, metadata, CodeFlags.IsPublic, options); if (match.Matches.Count == 0 && match.Type.Length > 0) { ImportContext.Warnings |= ServiceDescriptionImportWarnings.OptionalExtensionsIgnored; ProtocolImporter.AddWarningComment(member.Comments, Res.GetString(Res.WebTextMatchIgnoredTypeWarning)); } } for (int i = 0; i < fieldTypeNames.Length; i++) { string fieldTypeName = fieldTypeNames[i]; if (fieldTypeName != null) { GenerateCode(fieldTypeName, matches[i].Matches, options); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Web.Services.Description { using System.Web.Services; using System.Web.Services.Protocols; using System.Collections; using System; using System.Reflection; using System.CodeDom; using System.CodeDom.Compiler; using System.Xml.Serialization; internal class MimeTextReturn : MimeReturn { MimeTextBinding textBinding; internal MimeTextBinding TextBinding { get { return textBinding; } set { textBinding = value; } } } internal class MimeTextImporter : MimeImporter { string methodName; internal override MimeParameterCollection ImportParameters() { return null; } internal override MimeReturn ImportReturn() { MimeTextBinding mimeTextBinding = (MimeTextBinding)ImportContext.OperationBinding.Output.Extensions.Find(typeof(MimeTextBinding)); if (mimeTextBinding == null) return null; if (mimeTextBinding.Matches.Count == 0) { ImportContext.UnsupportedOperationBindingWarning(Res.GetString(Res.MissingMatchElement0)); return null; } methodName = CodeIdentifier.MakeValid(ImportContext.OperationBinding.Name); MimeTextReturn importedReturn = new MimeTextReturn(); importedReturn.TypeName = ImportContext.ClassNames.AddUnique(methodName + "Matches", mimeTextBinding); importedReturn.TextBinding = mimeTextBinding; importedReturn.ReaderType = typeof(TextReturnReader); return importedReturn; } internal override void GenerateCode(MimeReturn[] importedReturns, MimeParameterCollection[] importedParameters) { for (int i = 0; i < importedReturns.Length; i++) { if (importedReturns[i] is MimeTextReturn) { GenerateCode((MimeTextReturn)importedReturns[i], ImportContext.ServiceImporter.CodeGenerationOptions); } } } void GenerateCode(MimeTextReturn importedReturn, CodeGenerationOptions options) { GenerateCode(importedReturn.TypeName, importedReturn.TextBinding.Matches, options); } void GenerateCode(string typeName, MimeTextMatchCollection matches, CodeGenerationOptions options) { CodeIdentifiers members = new CodeIdentifiers(); CodeTypeDeclaration codeClass = WebCodeGenerator.AddClass(ImportContext.CodeNamespace, typeName, string.Empty, new string[0], null, CodeFlags.IsPublic, ImportContext.ServiceImporter.CodeGenerator.Supports(GeneratorSupport.PartialTypes)); string[] fieldTypeNames = new string[matches.Count]; for (int i = 0; i < matches.Count; i++) { MimeTextMatch match = matches[i]; string name = members.AddUnique(CodeIdentifier.MakeValid(match.Name.Length == 0 ? methodName + "Match" : match.Name), match); CodeAttributeDeclarationCollection metadata = new CodeAttributeDeclarationCollection(); if (match.Pattern.Length == 0) throw new ArgumentException(Res.GetString(Res.WebTextMatchMissingPattern)); CodeExpression pattern = new CodePrimitiveExpression(match.Pattern); int numPropValues = 0; if (match.Group != 1) numPropValues++; if (match.Capture != 0) numPropValues++; if (match.IgnoreCase) numPropValues++; if (match.Repeats != 1 && match.Repeats != int.MaxValue) numPropValues++; CodeExpression[] propertyValues = new CodeExpression[numPropValues]; string[] propertyNames = new string[propertyValues.Length]; numPropValues = 0; if (match.Group != 1) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Group); propertyNames[numPropValues] = "Group"; numPropValues++; } if (match.Capture != 0) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Capture); propertyNames[numPropValues] = "Capture"; numPropValues++; } if (match.IgnoreCase) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.IgnoreCase); propertyNames[numPropValues] = "IgnoreCase"; numPropValues++; } if (match.Repeats != 1 && match.Repeats != int.MaxValue) { propertyValues[numPropValues] = new CodePrimitiveExpression(match.Repeats); propertyNames[numPropValues] = "MaxRepeats"; numPropValues++; } WebCodeGenerator.AddCustomAttribute(metadata, typeof(MatchAttribute), new CodeExpression[] { pattern }, propertyNames, propertyValues); string fieldTypeName; if (match.Matches.Count > 0) { fieldTypeName = ImportContext.ClassNames.AddUnique(CodeIdentifier.MakeValid(match.Type.Length == 0 ? name : match.Type), match); fieldTypeNames[i] = fieldTypeName; } else { fieldTypeName = typeof(string).FullName; } if (match.Repeats != 1) fieldTypeName += "[]"; CodeTypeMember member = WebCodeGenerator.AddMember(codeClass, fieldTypeName, name, null, metadata, CodeFlags.IsPublic, options); if (match.Matches.Count == 0 && match.Type.Length > 0) { ImportContext.Warnings |= ServiceDescriptionImportWarnings.OptionalExtensionsIgnored; ProtocolImporter.AddWarningComment(member.Comments, Res.GetString(Res.WebTextMatchIgnoredTypeWarning)); } } for (int i = 0; i < fieldTypeNames.Length; i++) { string fieldTypeName = fieldTypeNames[i]; if (fieldTypeName != null) { GenerateCode(fieldTypeName, matches[i].Matches, options); } } } } } // 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
- XmlBoundElement.cs
- ZipIOCentralDirectoryFileHeader.cs
- HttpRuntimeSection.cs
- RemotingAttributes.cs
- PeerEndPoint.cs
- OpenFileDialog.cs
- AdjustableArrowCap.cs
- MultiDataTrigger.cs
- UpdatableWrapper.cs
- CfgArc.cs
- EntityContainerEmitter.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- ArrayMergeHelper.cs
- HttpListenerResponse.cs
- CodeDOMUtility.cs
- TaskFormBase.cs
- mda.cs
- TypeBuilder.cs
- UTF7Encoding.cs
- LocalizableAttribute.cs
- DynamicEntity.cs
- SafeWaitHandle.cs
- LogExtent.cs
- AttachedAnnotation.cs
- ProfileGroupSettingsCollection.cs
- EncodingDataItem.cs
- MultipartIdentifier.cs
- InfocardClientCredentials.cs
- ApplicationActivator.cs
- DbProviderManifest.cs
- DeflateEmulationStream.cs
- SimplePropertyEntry.cs
- TextBounds.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- DoubleKeyFrameCollection.cs
- ContractHandle.cs
- PixelShader.cs
- SystemFonts.cs
- DbConnectionPoolIdentity.cs
- KeyInterop.cs
- CollectionConverter.cs
- LocalizedNameDescriptionPair.cs
- BindingManagerDataErrorEventArgs.cs
- EntityProviderServices.cs
- behaviorssection.cs
- UpdatePanelControlTrigger.cs
- HtmlInputControl.cs
- XmlSchemaAll.cs
- ConstraintCollection.cs
- RegexCompiler.cs
- SelectorItemAutomationPeer.cs
- QuaternionValueSerializer.cs
- Binding.cs
- FontClient.cs
- InvokeSchedule.cs
- TargetFrameworkUtil.cs
- GroupBoxDesigner.cs
- AutomationProperty.cs
- WhiteSpaceTrimStringConverter.cs
- InheritanceContextHelper.cs
- SystemNetHelpers.cs
- ContextProperty.cs
- FontUnitConverter.cs
- SqlClientPermission.cs
- XamlInterfaces.cs
- streamingZipPartStream.cs
- CollectionViewGroupInternal.cs
- EdmError.cs
- RecordBuilder.cs
- TextContainerChangeEventArgs.cs
- AdRotator.cs
- ExecutionEngineException.cs
- SoapAttributes.cs
- NumberFormatInfo.cs
- ArgIterator.cs
- DataGrid.cs
- RegexBoyerMoore.cs
- TypeConverterAttribute.cs
- XmlCompatibilityReader.cs
- HitTestDrawingContextWalker.cs
- Base64Encoder.cs
- BrowsableAttribute.cs
- SmtpException.cs
- IfJoinedCondition.cs
- ExtentJoinTreeNode.cs
- FileRecordSequence.cs
- XmlRawWriterWrapper.cs
- PageThemeCodeDomTreeGenerator.cs
- SEHException.cs
- XPathScanner.cs
- StrongNameUtility.cs
- WebBrowser.cs
- PopOutPanel.cs
- PageCopyCount.cs
- CodeTypeDeclarationCollection.cs
- ReceiveActivity.cs
- DataTableCollection.cs
- ProxyFragment.cs
- XPathMultyIterator.cs
- PageCanvasSize.cs