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
- TextRangeEdit.cs
- InputBinder.cs
- VirtualDirectoryMapping.cs
- TypeSystem.cs
- DecoderFallback.cs
- GreenMethods.cs
- TraceXPathNavigator.cs
- ClientSettings.cs
- Converter.cs
- RSAPKCS1SignatureFormatter.cs
- FilterEventArgs.cs
- ExtentKey.cs
- SupportingTokenParameters.cs
- DataControlButton.cs
- DefaultProxySection.cs
- CmsUtils.cs
- ComPlusServiceHost.cs
- QilTernary.cs
- ErrorWrapper.cs
- DashStyle.cs
- FormsAuthenticationUser.cs
- XmlSubtreeReader.cs
- DataShape.cs
- ModelFunctionTypeElement.cs
- TextElementEnumerator.cs
- VersionedStreamOwner.cs
- DrawToolTipEventArgs.cs
- MenuScrollingVisibilityConverter.cs
- XmlQualifiedNameTest.cs
- PagesSection.cs
- DataChangedEventManager.cs
- XmlFormatWriterGenerator.cs
- RuleInfoComparer.cs
- ValueType.cs
- ConfigXmlAttribute.cs
- LocalizableAttribute.cs
- DataBoundControlHelper.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- OverflowException.cs
- BStrWrapper.cs
- URIFormatException.cs
- ProgressBarBrushConverter.cs
- SQLMembershipProvider.cs
- DelegatingTypeDescriptionProvider.cs
- StylesEditorDialog.cs
- DashStyles.cs
- ListMarkerSourceInfo.cs
- MenuTracker.cs
- HtmlLink.cs
- DPCustomTypeDescriptor.cs
- PageBreakRecord.cs
- XmlTextWriter.cs
- QilXmlReader.cs
- DataGridViewBindingCompleteEventArgs.cs
- ScriptServiceAttribute.cs
- FrameworkObject.cs
- AutomationPattern.cs
- KeySpline.cs
- MiniAssembly.cs
- SQLResource.cs
- PartBasedPackageProperties.cs
- AutomationAttributeInfo.cs
- CodePropertyReferenceExpression.cs
- ContentType.cs
- PeerCollaboration.cs
- XmlElementCollection.cs
- PieceNameHelper.cs
- SelectQueryOperator.cs
- InfocardChannelParameter.cs
- FindProgressChangedEventArgs.cs
- TableLayoutStyle.cs
- XmlWrappingReader.cs
- ThicknessConverter.cs
- JsonByteArrayDataContract.cs
- Logging.cs
- SerializationFieldInfo.cs
- Encoding.cs
- MenuItemBinding.cs
- ActionFrame.cs
- initElementDictionary.cs
- SByteStorage.cs
- FileController.cs
- metrodevice.cs
- MenuItemBindingCollection.cs
- RoutedUICommand.cs
- HatchBrush.cs
- RedirectionProxy.cs
- WindowsTab.cs
- BrowserDefinition.cs
- CapacityStreamGeometryContext.cs
- LogicalMethodInfo.cs
- HttpRequest.cs
- Soap12ServerProtocol.cs
- DataGridViewDataConnection.cs
- CardSpaceException.cs
- InvalidProgramException.cs
- ListItemsPage.cs
- ObjectQueryState.cs
- MouseGestureValueSerializer.cs
- Storyboard.cs