Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- Ipv6Element.cs
- DurableErrorHandler.cs
- TemplatedMailWebEventProvider.cs
- HostedHttpTransportManager.cs
- SpoolingTask.cs
- ParseNumbers.cs
- InstanceDataCollection.cs
- PackageRelationship.cs
- XmlSchemaAnnotated.cs
- unitconverter.cs
- QfeChecker.cs
- WarningException.cs
- CultureTableRecord.cs
- InlineUIContainer.cs
- SQlBooleanStorage.cs
- XamlTemplateSerializer.cs
- FormViewUpdateEventArgs.cs
- ProcessInfo.cs
- ContainerControl.cs
- ViewRendering.cs
- DomainUpDown.cs
- UnsafeNativeMethods.cs
- DependencyPropertyAttribute.cs
- Path.cs
- VisualCollection.cs
- ParserExtension.cs
- TerminatorSinks.cs
- OleDbError.cs
- CapiSymmetricAlgorithm.cs
- ToolBarButtonClickEvent.cs
- DocumentAutomationPeer.cs
- FlowDocumentPaginator.cs
- SemaphoreFullException.cs
- DataPointer.cs
- WebHostUnsafeNativeMethods.cs
- Header.cs
- TdsParser.cs
- PropertyManager.cs
- FormViewCommandEventArgs.cs
- ViewGenResults.cs
- BaseCodePageEncoding.cs
- Separator.cs
- Literal.cs
- TextWriterTraceListener.cs
- ADConnectionHelper.cs
- EnumType.cs
- TcpHostedTransportConfiguration.cs
- TraceProvider.cs
- QilNode.cs
- SHA384.cs
- DataGridRow.cs
- ValidationEventArgs.cs
- WindowsToolbar.cs
- DbExpressionVisitor.cs
- DebuggerAttributes.cs
- HttpWebRequestElement.cs
- ControlBuilderAttribute.cs
- ActivationArguments.cs
- NativeRecognizer.cs
- SqlCacheDependencyDatabaseCollection.cs
- METAHEADER.cs
- RightsManagementPermission.cs
- ExceptQueryOperator.cs
- WMIInterop.cs
- MetadataItemSerializer.cs
- ChildDocumentBlock.cs
- Constants.cs
- MarkupCompilePass1.cs
- OlePropertyStructs.cs
- QilExpression.cs
- DesignerUtility.cs
- ConsoleKeyInfo.cs
- JsonFormatGeneratorStatics.cs
- PipelineModuleStepContainer.cs
- ArithmeticException.cs
- ScriptReference.cs
- DeviceContexts.cs
- DataRecordObjectView.cs
- NativeObjectSecurity.cs
- BaseDataBoundControlDesigner.cs
- ContentDisposition.cs
- HttpCapabilitiesEvaluator.cs
- SafeReadContext.cs
- EntityDataSourceViewSchema.cs
- SourceInterpreter.cs
- Point3DAnimationBase.cs
- XmlSchemaImporter.cs
- MemberDomainMap.cs
- InputMethod.cs
- TagPrefixCollection.cs
- SqlParameterizer.cs
- EnumValidator.cs
- SqlUserDefinedAggregateAttribute.cs
- InOutArgument.cs
- XmlQualifiedName.cs
- UntypedNullExpression.cs
- UnauthorizedWebPart.cs
- AccessDataSource.cs
- SoapIncludeAttribute.cs
- DBConcurrencyException.cs