Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Tracking / ActivityStateQuery.cs / 1305376 / ActivityStateQuery.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Activities.Tracking { using System.Collections.ObjectModel; public class ActivityStateQuery : TrackingQuery { Collectionarguments; Collection states; Collection variables; public ActivityStateQuery() { this.ActivityName = "*"; } public string ActivityName { get; set; } public Collection Arguments { get { if (this.arguments == null) { this.arguments = new Collection (); } return this.arguments; } } public Collection Variables { get { if (this.variables == null) { this.variables = new Collection (); } return this.variables; } } public Collection States { get { if (this.states == null) { this.states = new Collection (); } return this.states; } } internal bool HasStates { get { return this.states != null && this.states.Count > 0; } } internal bool HasArguments { get { return this.arguments != null && this.arguments.Count > 0; } } internal bool HasVariables { get { return this.variables != null && this.variables.Count > 0; } } } } // 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
- XmlTypeAttribute.cs
- AdapterDictionary.cs
- WriterOutput.cs
- HtmlInputCheckBox.cs
- Baml2006Reader.cs
- MatrixCamera.cs
- InkCanvasFeedbackAdorner.cs
- DrawingVisual.cs
- SizeAnimation.cs
- LoginView.cs
- XmlEnumAttribute.cs
- ProviderBase.cs
- StdValidatorsAndConverters.cs
- SqlParameter.cs
- SqlProviderManifest.cs
- WebPartRestoreVerb.cs
- ApplicationCommands.cs
- PageCodeDomTreeGenerator.cs
- SpecularMaterial.cs
- TraceContextRecord.cs
- ParameterToken.cs
- SignalGate.cs
- HttpCapabilitiesSectionHandler.cs
- ConfigurationValidatorAttribute.cs
- AssemblyAssociatedContentFileAttribute.cs
- ObjectTag.cs
- MaterializeFromAtom.cs
- FormsAuthentication.cs
- LinqDataSourceStatusEventArgs.cs
- IIS7WorkerRequest.cs
- EtwTrace.cs
- TextFindEngine.cs
- UserNamePasswordValidator.cs
- HttpCachePolicyElement.cs
- TextElementCollectionHelper.cs
- Expressions.cs
- WrapPanel.cs
- SqlInfoMessageEvent.cs
- MemberAssignmentAnalysis.cs
- WindowsAuthenticationEventArgs.cs
- ToolboxItemLoader.cs
- SignedInfo.cs
- PropertyEntry.cs
- Package.cs
- WebRequestModulesSection.cs
- TagPrefixCollection.cs
- PageVisual.cs
- MessageProtectionOrder.cs
- Light.cs
- CqlLexerHelpers.cs
- DetailsViewCommandEventArgs.cs
- RemotingClientProxy.cs
- HtmlInputImage.cs
- CompilerScopeManager.cs
- HGlobalSafeHandle.cs
- DataPagerFieldItem.cs
- HttpValueCollection.cs
- PrintPreviewDialog.cs
- WorkflowOperationInvoker.cs
- ProtocolsConfiguration.cs
- TablePattern.cs
- ManifestResourceInfo.cs
- ProfilePropertyNameValidator.cs
- ListViewContainer.cs
- IPGlobalProperties.cs
- AmbientValueAttribute.cs
- ListChangedEventArgs.cs
- ExtractedStateEntry.cs
- NameScope.cs
- NamespaceInfo.cs
- IIS7UserPrincipal.cs
- EntityStoreSchemaFilterEntry.cs
- DataServiceQueryException.cs
- StaticTextPointer.cs
- DataGridViewCell.cs
- Point3DAnimationBase.cs
- PipelineDeploymentState.cs
- ReadOnlyPropertyMetadata.cs
- CollectionViewGroupRoot.cs
- RelatedCurrencyManager.cs
- SafeNativeMethods.cs
- Int16Converter.cs
- ToolStripItemBehavior.cs
- ServiceNameElement.cs
- AggregateNode.cs
- VisualState.cs
- WebPartConnectionsDisconnectVerb.cs
- OleDbWrapper.cs
- BaseCodeDomTreeGenerator.cs
- AmbientLight.cs
- CheckBoxAutomationPeer.cs
- DeferredTextReference.cs
- CalloutQueueItem.cs
- ModuleBuilder.cs
- TrackingDataItem.cs
- ListViewTableCell.cs
- TextBoxBase.cs
- EncodingStreamWrapper.cs
- Attributes.cs
- CfgParser.cs