Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Navigation / ReturnEventArgs.cs / 1305600 / ReturnEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // ReturnEventArgs is a generic flavor of EventArgs, // that enable setting, getting a typed value that's // passed between Pagefunctions. // // History: // 05/09/03: marka Created. // 07/08/04: weibz Rename and make it compliant with guideline. // //--------------------------------------------------------------------------- using System; namespace System.Windows.Navigation { ////// ReturnEventArgs is a generic flavor of EventArgs, /// that enable setting, getting a typed value that's /// passed between Pagefunctions. /// public class ReturnEventArgs: System.EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors /// /// ReturnEventArgs constructor /// public ReturnEventArgs() { } ////// ReturnEventArgs constructor. Supplied value is assigned to Result value /// ///Assigned to Result property public ReturnEventArgs( T result) { _result = result; } #endregion Constructors //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- #region Public Properties ////// The Result property indicates the result that a PageFunction is /// returning to it's caller, at the end of a Structured Navigation. /// public T Result { get { return _result; } set { _result = value; } } #endregion Public Properties //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private T _result; #endregion Private Fields } } // 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
- FilterQuery.cs
- FontInfo.cs
- ClaimTypes.cs
- FilterException.cs
- SqlDependencyUtils.cs
- DmlSqlGenerator.cs
- DataGridViewColumn.cs
- AnimationClock.cs
- CustomError.cs
- GridLength.cs
- PolyBezierSegment.cs
- MenuCommand.cs
- TypeSchema.cs
- QueryLifecycle.cs
- EncoderParameters.cs
- PerspectiveCamera.cs
- Property.cs
- Bitmap.cs
- serverconfig.cs
- MaskedTextBoxTextEditorDropDown.cs
- NativeCppClassAttribute.cs
- CodeObject.cs
- Util.cs
- DebugHandleTracker.cs
- XmlSchemaProviderAttribute.cs
- PriorityQueue.cs
- odbcmetadatacollectionnames.cs
- NullReferenceException.cs
- ObjectDataSourceFilteringEventArgs.cs
- IntPtr.cs
- SrgsOneOf.cs
- NonVisualControlAttribute.cs
- CorrelationKeyCalculator.cs
- Stack.cs
- OutputScopeManager.cs
- PeerUnsafeNativeCryptMethods.cs
- TextureBrush.cs
- SqlBulkCopyColumnMapping.cs
- HtmlEmptyTagControlBuilder.cs
- TypePresenter.xaml.cs
- keycontainerpermission.cs
- ChildTable.cs
- FunctionUpdateCommand.cs
- CollectionChangedEventManager.cs
- CacheOutputQuery.cs
- ActivatableWorkflowsQueryResult.cs
- CodeArrayCreateExpression.cs
- PrimitiveXmlSerializers.cs
- AutomationElementCollection.cs
- XmlElementList.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- ServiceAppDomainAssociationProvider.cs
- QilInvokeEarlyBound.cs
- PropertyGridEditorPart.cs
- ElementInit.cs
- LinearGradientBrush.cs
- RecognitionEventArgs.cs
- errorpatternmatcher.cs
- RelatedPropertyManager.cs
- AbsoluteQuery.cs
- PathFigureCollection.cs
- ConsoleKeyInfo.cs
- IDReferencePropertyAttribute.cs
- XPathNodeList.cs
- ResizingMessageFilter.cs
- LambdaReference.cs
- contentDescriptor.cs
- ArraySortHelper.cs
- EntityFrameworkVersions.cs
- Condition.cs
- ImageSourceConverter.cs
- Shape.cs
- QilPatternFactory.cs
- WebServiceEnumData.cs
- ActiveXSerializer.cs
- SymbolMethod.cs
- XsdDuration.cs
- safex509handles.cs
- XmlSchemaSequence.cs
- HuffCodec.cs
- TypeForwardedToAttribute.cs
- BoolExpression.cs
- TextDecorations.cs
- RegexStringValidatorAttribute.cs
- AutomationPattern.cs
- ConstructorNeedsTagAttribute.cs
- LocatorGroup.cs
- OlePropertyStructs.cs
- QueryCursorEventArgs.cs
- DataControlExtensions.cs
- EntityContainerEmitter.cs
- ConstructorNeedsTagAttribute.cs
- Walker.cs
- ConfigurationStrings.cs
- ComplexPropertyEntry.cs
- TemplateBuilder.cs
- PopupRootAutomationPeer.cs
- DirectoryNotFoundException.cs
- CalendarTable.cs
- AlgoModule.cs