Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Services / IO / System / IO / WaitForChangedResult.cs / 1 / 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. /// ///// 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
- QilExpression.cs
- DataStreams.cs
- InitializerFacet.cs
- SignatureDescription.cs
- WebPartEditorApplyVerb.cs
- SrgsToken.cs
- Avt.cs
- VectorValueSerializer.cs
- SafePEFileHandle.cs
- PeerFlooder.cs
- TreeNodeEventArgs.cs
- SoapTypeAttribute.cs
- ThemeDictionaryExtension.cs
- RenderingBiasValidation.cs
- TextViewDesigner.cs
- HtmlForm.cs
- DecimalStorage.cs
- QuaternionConverter.cs
- TreeViewDesigner.cs
- DynamicHyperLink.cs
- InheritedPropertyChangedEventArgs.cs
- LoginCancelEventArgs.cs
- HttpRuntime.cs
- RectKeyFrameCollection.cs
- InheritanceUI.cs
- HealthMonitoringSectionHelper.cs
- ImmutableAssemblyCacheEntry.cs
- ConnectionManagementSection.cs
- RelationshipFixer.cs
- LinqToSqlWrapper.cs
- XamlRtfConverter.cs
- AsyncPostBackErrorEventArgs.cs
- ThreadPool.cs
- LoginUtil.cs
- RPIdentityRequirement.cs
- SystemFonts.cs
- View.cs
- ParseChildrenAsPropertiesAttribute.cs
- DataGridDesigner.cs
- ReadContentAsBinaryHelper.cs
- PaintEvent.cs
- RSAOAEPKeyExchangeDeformatter.cs
- VerticalAlignConverter.cs
- WorkflowTraceTransfer.cs
- TextSpanModifier.cs
- TextAnchor.cs
- UdpDiscoveryMessageFilter.cs
- FactoryMaker.cs
- ComponentCollection.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- DataRelationCollection.cs
- BindingWorker.cs
- SimpleWebHandlerParser.cs
- LockRecoveryTask.cs
- SynchronousChannelMergeEnumerator.cs
- Schema.cs
- DocumentReference.cs
- WebPartCatalogAddVerb.cs
- ToolStripMenuItem.cs
- ToolStripSystemRenderer.cs
- JsonQNameDataContract.cs
- KeyConverter.cs
- InputBinding.cs
- SelectionEditor.cs
- Util.cs
- ErrorEventArgs.cs
- HttpWebResponse.cs
- CollectionChangedEventManager.cs
- BlockCollection.cs
- GenerateScriptTypeAttribute.cs
- KeyGestureConverter.cs
- MimeWriter.cs
- RadioButton.cs
- TextBoxLine.cs
- COM2ComponentEditor.cs
- RuntimeHandles.cs
- SimpleApplicationHost.cs
- SmiRequestExecutor.cs
- WindowsGraphics.cs
- NullReferenceException.cs
- OAVariantLib.cs
- DataSourceCacheDurationConverter.cs
- OutputScope.cs
- CompositeFontFamily.cs
- GridViewCellAutomationPeer.cs
- StateManagedCollection.cs
- AppSettingsReader.cs
- DatatypeImplementation.cs
- ConfigurationCollectionAttribute.cs
- ListViewInsertedEventArgs.cs
- PrincipalPermission.cs
- Registry.cs
- BindingsSection.cs
- DrawingDrawingContext.cs
- XamlWriter.cs
- IIS7WorkerRequest.cs
- TemplateXamlParser.cs
- X509ChainPolicy.cs
- DataGridViewCellCancelEventArgs.cs
- HMACSHA512.cs