Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / IO / System / IO / WaitForChangedResult.cs / 1305376 / WaitForChangedResult.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.IO { using System.Diagnostics; using System; ////// public struct WaitForChangedResult { private WatcherChangeTypes changeType; private string name; private string oldName; private bool timedOut; ///Waits for a change in the specified path. ////// internal static readonly WaitForChangedResult TimedOutResult = new WaitForChangedResult(0, null, true); ////// Specifies that the call has timed out. /// ////// internal WaitForChangedResult(WatcherChangeTypes changeType, string name, bool timedOut) : this(changeType, name, null, timedOut){ } ////// Initializes a new instance of the ///class, given the /// type of change to watch for, the folder to watch, and whether the call has /// timed out. /// /// internal WaitForChangedResult(WatcherChangeTypes changeType, string name, string oldName, bool timedOut) { this.changeType = changeType; this.name = name; this.oldName = oldName; this.timedOut = timedOut; } ////// Initializes a new instance of the ///class. This constructor is called when you are waiting /// for a change in a file or directory name. /// /// public WatcherChangeTypes ChangeType { get { return changeType; } set { changeType = value; } } ////// Gets or sets the type of change to watch for. /// ////// public string Name { get { return name; } set { name = value; } } ////// Gets or sets the name of the file or subdirectory that has changed. /// ////// public string OldName { get { return oldName; } set { oldName = value; } } ////// Gets or sets the original name of the file or subdirectory that has been /// renamed. /// ////// public bool TimedOut { get { return timedOut; } set { timedOut = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets a value indicating whether the process has timed out. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PeerPresenceInfo.cs
- AppendHelper.cs
- CounterCreationDataCollection.cs
- GraphicsPath.cs
- panel.cs
- EntityViewContainer.cs
- WebScriptMetadataMessageEncoderFactory.cs
- RadioButtonFlatAdapter.cs
- FloatUtil.cs
- MultiSelectRootGridEntry.cs
- FormCollection.cs
- SQLDateTime.cs
- ItemsControlAutomationPeer.cs
- RenderData.cs
- HtmlControl.cs
- MultipleViewProviderWrapper.cs
- ScriptingRoleServiceSection.cs
- HttpApplicationFactory.cs
- ObjectComplexPropertyMapping.cs
- MatrixUtil.cs
- ContractValidationHelper.cs
- InstanceHandle.cs
- TextServicesCompartmentContext.cs
- ProxyGenerator.cs
- TextProviderWrapper.cs
- RenamedEventArgs.cs
- Invariant.cs
- LayoutEvent.cs
- FlatButtonAppearance.cs
- FormatException.cs
- SqlFlattener.cs
- SmtpTransport.cs
- OleDbException.cs
- UriSectionData.cs
- TextParaLineResult.cs
- NoResizeHandleGlyph.cs
- DataObject.cs
- RijndaelManaged.cs
- DataGridParentRows.cs
- LoginName.cs
- UnmanagedHandle.cs
- WindowsGraphicsCacheManager.cs
- IndentedTextWriter.cs
- shaperfactoryquerycacheentry.cs
- BuildProviderCollection.cs
- ZipIOExtraFieldElement.cs
- Guid.cs
- StateWorkerRequest.cs
- SqlRetyper.cs
- AppDomainManager.cs
- JoinTreeSlot.cs
- QueryOpeningEnumerator.cs
- StructuralObject.cs
- CommonDialog.cs
- XmlBindingWorker.cs
- ExecutionScope.cs
- ExponentialEase.cs
- PolyLineSegment.cs
- ListBoxDesigner.cs
- ReadOnlyAttribute.cs
- SecurityHelper.cs
- ComponentChangingEvent.cs
- BuiltInExpr.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- FactoryGenerator.cs
- _HelperAsyncResults.cs
- ListViewDataItem.cs
- SpecialFolderEnumConverter.cs
- ItemChangedEventArgs.cs
- PiiTraceSource.cs
- ResourcePool.cs
- CuspData.cs
- PointHitTestParameters.cs
- TabletDeviceInfo.cs
- CodeMemberField.cs
- ConnectionConsumerAttribute.cs
- CompilerState.cs
- PeerResolverSettings.cs
- SessionPageStatePersister.cs
- LineBreakRecord.cs
- SelectionRange.cs
- SortedList.cs
- QueryOutputWriter.cs
- Attributes.cs
- PriorityBinding.cs
- WorkflowServiceOperationListItem.cs
- DoubleSumAggregationOperator.cs
- DynamicPhysicalDiscoSearcher.cs
- ResourceProviderFactory.cs
- BlockUIContainer.cs
- QueryAccessibilityHelpEvent.cs
- AnimationStorage.cs
- View.cs
- Int32RectConverter.cs
- OdbcDataReader.cs
- ECDiffieHellman.cs
- sqlinternaltransaction.cs
- CodeTryCatchFinallyStatement.cs
- MaskedTextBoxDesigner.cs
- RadioButtonPopupAdapter.cs