Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / Log / System / IO / Log / LogWriteRestartAreaAsyncResult.cs / 1 / LogWriteRestartAreaAsyncResult.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.IO.Log { using System; using System.Collections.Generic; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Threading; using Microsoft.Win32.SafeHandles; sealed class LogWriteRestartAreaAsyncResult : OverlappedAsyncResult { LogWriteRestartAreaState state; internal LogWriteRestartAreaAsyncResult(LogRecordSequence recordSequence, AsyncCallback callback, object state) : base(callback, state) { this.state = new LogWriteRestartAreaState(); this.state.RecordSequence = recordSequence; this.state.AsyncResult = this; } //=========================================================== // Parameters //=========================================================== internal IList> Data { /* get { return this.state.Data; } */ set { this.state.Data = value; } } internal ulong NewBaseLsn { /* get { return this.state.NewBaseLsn; } */ set { this.state.NewBaseLsn = value; } } internal LogReservationCollection ReservationCollection { /* get { return this.state.ReservationCollection; } */ set { this.state.ReservationCollection = value; } } internal long TotalRecordSize { /* get { return this.state.TotalRecordSize; } */ set { this.state.TotalRecordSize = value; } } //============================================================ // Result //=========================================================== internal ulong ResultLsn { get { return this.state.ResultLsn; } } internal void Start() { this.state.Start(); } internal override void IOCompleted(uint errorCode) { this.state.IOComplete(errorCode); } } } // 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
- KeyEvent.cs
- GeneralTransform3DTo2DTo3D.cs
- SHA384.cs
- DataGridView.cs
- ChtmlTextWriter.cs
- BufferAllocator.cs
- UIElementPropertyUndoUnit.cs
- UIElement3D.cs
- CheckableControlBaseAdapter.cs
- PersonalizationState.cs
- ICspAsymmetricAlgorithm.cs
- ZipIOLocalFileDataDescriptor.cs
- WebPartPersonalization.cs
- DataGridViewRowEventArgs.cs
- FileController.cs
- TagPrefixInfo.cs
- PowerModeChangedEventArgs.cs
- HwndStylusInputProvider.cs
- SendMailErrorEventArgs.cs
- GiveFeedbackEventArgs.cs
- NativeActivityMetadata.cs
- XmlAggregates.cs
- CngUIPolicy.cs
- ResizeBehavior.cs
- SafeNativeMethods.cs
- ListBox.cs
- BuilderPropertyEntry.cs
- SystemInformation.cs
- ContainerParagraph.cs
- Int32RectValueSerializer.cs
- Point3DCollection.cs
- NumericUpDownAcceleration.cs
- PlaceHolder.cs
- ModelPropertyCollectionImpl.cs
- Table.cs
- RuleSettings.cs
- SoapMessage.cs
- PageAsyncTaskManager.cs
- PermissionSet.cs
- ProgressChangedEventArgs.cs
- ThemeInfoAttribute.cs
- Rect3D.cs
- ServiceReference.cs
- ListViewEditEventArgs.cs
- IndexingContentUnit.cs
- SettingsProviderCollection.cs
- LinqToSqlWrapper.cs
- XmlEncodedRawTextWriter.cs
- Int32Rect.cs
- GroupBoxAutomationPeer.cs
- IChannel.cs
- NamespaceList.cs
- X509Certificate2.cs
- DetailsViewModeEventArgs.cs
- HttpHandlersInstallComponent.cs
- HttpStreams.cs
- Clock.cs
- AttachedPropertyBrowsableAttribute.cs
- DataGridRowsPresenter.cs
- DbInsertCommandTree.cs
- ReceiveCompletedEventArgs.cs
- Rect.cs
- ExpandCollapseProviderWrapper.cs
- Color.cs
- Pair.cs
- SoapSchemaExporter.cs
- ErasingStroke.cs
- TypedDatasetGenerator.cs
- ColorConvertedBitmap.cs
- StreamWriter.cs
- TypedAsyncResult.cs
- OdbcDataAdapter.cs
- FtpWebResponse.cs
- ModifierKeysConverter.cs
- ActiveXSite.cs
- TypeDelegator.cs
- FontStyles.cs
- updatecommandorderer.cs
- DbUpdateCommandTree.cs
- OutputScopeManager.cs
- EpmSyndicationContentSerializer.cs
- ComponentEditorPage.cs
- ExpressionStringBuilder.cs
- ServiceOperation.cs
- XmlDataLoader.cs
- XmlSerializableReader.cs
- Msec.cs
- FastPropertyAccessor.cs
- PtsContext.cs
- SafeSystemMetrics.cs
- DirectionalLight.cs
- TableCell.cs
- QuestionEventArgs.cs
- FacetChecker.cs
- XhtmlBasicCalendarAdapter.cs
- ObjectViewListener.cs
- XamlGridLengthSerializer.cs
- Query.cs
- InteropEnvironment.cs
- UpdateCommandGenerator.cs