Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Expressions / Literal.cs / 1305376 / Literal.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.Expressions { using System; using System.Activities.ExpressionParser; using System.Activities.XamlIntegration; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Linq.Expressions; using System.Runtime; using System.Text.RegularExpressions; using System.Windows.Markup; [ContentProperty("Value")] public sealed class Literal: CodeActivity , IExpressionContainer, IValueSerializableExpression { static Regex ExpressionEscapeRegex = new Regex(@"^(%*\[)"); public Literal() { } public Literal(T value) : this() { this.Value = value; } public T Value { get; set; } Expression IExpressionContainer.Expression { get { return Expression.Lambda >(Expression.Constant(this.Value, typeof(T)), ExpressionUtilities.RuntimeContextParameter); } } protected override void CacheMetadata(CodeActivityMetadata metadata) { Type literalType = typeof(T); if (!literalType.IsValueType && literalType != TypeHelper.StringType) { metadata.AddValidationError(SR.LiteralsMustBeValueTypesOrImmutableTypes(TypeHelper.StringType, literalType)); } } protected override T Execute(CodeActivityContext context) { return ExecuteWithTryGetValue(context); } internal override bool TryGetValue(ActivityContext context, out T value) { value = this.Value; return true; } public override string ToString() { return this.Value == null ? "null" : this.Value.ToString(); } public bool CanConvertToString(IValueSerializerContext context) { Type typeArgument; Type valueType; TypeConverter converter; if (this.Value == null) { return true; } typeArgument = typeof(T); valueType = this.Value.GetType(); if (valueType == TypeHelper.StringType) { string myValue = this.Value as string; if (string.IsNullOrEmpty(myValue)) { return false; } } converter = TypeDescriptor.GetConverter(typeArgument); if (typeArgument == valueType && converter != null && converter.CanConvertTo(TypeHelper.StringType) && converter.CanConvertFrom(TypeHelper.StringType)) { return true; } return false; } [SuppressMessage(FxCop.Category.Globalization, FxCop.Rule.SpecifyIFormatProvider, Justification = "we really do want the string as-is")] public string ConvertToString(IValueSerializerContext context) { Type typeArgument; Type valueType; TypeConverter converter; if (this.Value == null) { return "[Nothing]"; } typeArgument = typeof(T); valueType = this.Value.GetType(); converter = TypeDescriptor.GetConverter(typeArgument); Fx.Assert(typeArgument == valueType && converter != null && converter.CanConvertTo(TypeHelper.StringType) && converter.CanConvertFrom(TypeHelper.StringType), "Literal target type T and the return type mismatch or something wrong with its typeConverter!"); // handle a Literal of "[...]" by inserting escape chararcter '%' at the front if (typeArgument == TypeHelper.StringType) { string originalString = Convert.ToString(this.Value); if (originalString.EndsWith("]", StringComparison.Ordinal) && ExpressionEscapeRegex.IsMatch(originalString)) { return "%" + originalString; } } return converter.ConvertToString(context, this.Value); } [EditorBrowsable(EditorBrowsableState.Never)] public bool ShouldSerializeValue() { return !object.Equals(this.Value, default(T)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SystemSounds.cs
- SqlUtil.cs
- BatchServiceHost.cs
- XmlNavigatorStack.cs
- RegexGroup.cs
- CellConstant.cs
- WebPartDeleteVerb.cs
- CompilerError.cs
- NativeMethods.cs
- SafeBitVector32.cs
- IdentifierCreationService.cs
- StringResourceManager.cs
- DesignColumnCollection.cs
- ReadOnlyHierarchicalDataSource.cs
- RangeValidator.cs
- UxThemeWrapper.cs
- MessageTraceRecord.cs
- FactoryGenerator.cs
- DataListItemEventArgs.cs
- FlowDecisionDesigner.xaml.cs
- XmlSerializerNamespaces.cs
- PropertyChangedEventManager.cs
- HttpRequestTraceRecord.cs
- RectangleConverter.cs
- WebPartRestoreVerb.cs
- Rss20FeedFormatter.cs
- BaseInfoTable.cs
- WorkflowPersistenceService.cs
- ColumnCollection.cs
- PartialList.cs
- WaitHandleCannotBeOpenedException.cs
- ExpandSegment.cs
- SemanticValue.cs
- AssociationSet.cs
- AutomationElementCollection.cs
- VectorCollectionConverter.cs
- __ComObject.cs
- PartialCachingControl.cs
- MsmqIntegrationInputChannel.cs
- CharEntityEncoderFallback.cs
- DiscoveryServerProtocol.cs
- ClientApiGenerator.cs
- OdbcHandle.cs
- DataGridRelationshipRow.cs
- ItemsChangedEventArgs.cs
- DefaultValueTypeConverter.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- NativeCppClassAttribute.cs
- TypeSystem.cs
- precedingsibling.cs
- TreeNodeStyle.cs
- DetailsViewModeEventArgs.cs
- SecurityKeyIdentifier.cs
- SystemThemeKey.cs
- ImageListUtils.cs
- VirtualDirectoryMapping.cs
- ParameterToken.cs
- OdbcInfoMessageEvent.cs
- HtmlProps.cs
- _TransmitFileOverlappedAsyncResult.cs
- HttpMethodAttribute.cs
- ScriptingProfileServiceSection.cs
- GridViewAutomationPeer.cs
- AxisAngleRotation3D.cs
- ListViewDataItem.cs
- LocalizationParserHooks.cs
- DynamicExpression.cs
- TypeElement.cs
- ContentValidator.cs
- EntityWrapperFactory.cs
- BasicExpandProvider.cs
- TcpClientCredentialType.cs
- DbConnectionStringBuilder.cs
- ReadOnlyMetadataCollection.cs
- ColumnPropertiesGroup.cs
- CodeVariableReferenceExpression.cs
- ButtonColumn.cs
- TextPenaltyModule.cs
- DBConcurrencyException.cs
- PolicyUnit.cs
- WindowsListView.cs
- ErrorWebPart.cs
- ColumnHeader.cs
- SqlTypesSchemaImporter.cs
- FileLogRecordStream.cs
- AxisAngleRotation3D.cs
- StreamWriter.cs
- ButtonChrome.cs
- Internal.cs
- MailWriter.cs
- _HTTPDateParse.cs
- HttpSessionStateWrapper.cs
- TraceListeners.cs
- PropertyManager.cs
- TextElementEditingBehaviorAttribute.cs
- VSDExceptions.cs
- TextBoxLine.cs
- DetailsViewAutoFormat.cs
- MinMaxParagraphWidth.cs
- DataPagerFieldCollection.cs