Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / Mail / SmtpReplyReader.cs / 1 / SmtpReplyReader.cs
namespace System.Net.Mail { using System; using System.IO; //streams are read only; return of 0 means end of server's reply class SmtpReplyReader { SmtpReplyReaderFactory reader; internal SmtpReplyReader(SmtpReplyReaderFactory reader) { this.reader = reader; } internal IAsyncResult BeginReadLines(AsyncCallback callback, object state) { return reader.BeginReadLines(this, callback, state); } internal IAsyncResult BeginReadLine(AsyncCallback callback, object state) { return reader.BeginReadLine(this, callback, state); } public void Close() { reader.Close(this); } internal LineInfo[] EndReadLines(IAsyncResult result) { return reader.EndReadLines(result); } internal LineInfo EndReadLine(IAsyncResult result) { return reader.EndReadLine(result); } internal LineInfo[] ReadLines() { return reader.ReadLines(this); } internal LineInfo ReadLine() { return reader.ReadLine(this); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MessageSmuggler.cs
- EventMappingSettingsCollection.cs
- MaterializeFromAtom.cs
- SystemIcmpV4Statistics.cs
- Accessors.cs
- WpfGeneratedKnownProperties.cs
- FloatMinMaxAggregationOperator.cs
- wgx_commands.cs
- PrimitiveSchema.cs
- MethodBody.cs
- BoundPropertyEntry.cs
- ConstraintManager.cs
- SkewTransform.cs
- DelegatingConfigHost.cs
- Configuration.cs
- Fx.cs
- HatchBrush.cs
- BaseServiceProvider.cs
- IQueryable.cs
- AuthorizationSection.cs
- ToolStripStatusLabel.cs
- DoubleLinkListEnumerator.cs
- ApplicationServiceHelper.cs
- PrimitiveType.cs
- streamingZipPartStream.cs
- SpnegoTokenAuthenticator.cs
- Mutex.cs
- CodeAttributeArgument.cs
- QueryOptionExpression.cs
- FirstQueryOperator.cs
- SoundPlayer.cs
- StructuralComparisons.cs
- DataGridViewRowConverter.cs
- RelatedPropertyManager.cs
- EmptyStringExpandableObjectConverter.cs
- WebPartZoneCollection.cs
- SqlServices.cs
- XmlAggregates.cs
- PersonalizationDictionary.cs
- JsonClassDataContract.cs
- SerialPort.cs
- DateTimeFormat.cs
- InitializationEventAttribute.cs
- ConnectionStringSettingsCollection.cs
- DateTimeSerializationSection.cs
- ModuleBuilderData.cs
- TextEditorDragDrop.cs
- ConsumerConnectionPoint.cs
- ImplicitInputBrush.cs
- Semaphore.cs
- ContextMenuStrip.cs
- WebPartRestoreVerb.cs
- GenericNameHandler.cs
- ConversionContext.cs
- ResourceManager.cs
- SpinWait.cs
- RtfToXamlReader.cs
- PartDesigner.cs
- SmtpClient.cs
- MachineKeyConverter.cs
- CompilerLocalReference.cs
- HostedHttpTransportManager.cs
- SqlProviderUtilities.cs
- SmtpLoginAuthenticationModule.cs
- EncodingTable.cs
- AssemblyName.cs
- SearchForVirtualItemEventArgs.cs
- AssociationSetMetadata.cs
- State.cs
- DebugController.cs
- DrawingGroup.cs
- ConstructorExpr.cs
- ApplicationDirectory.cs
- WorkflowDesigner.cs
- ResourceDefaultValueAttribute.cs
- WorkflowViewService.cs
- FileDialog_Vista_Interop.cs
- VerificationException.cs
- MobileFormsAuthentication.cs
- MarshalByValueComponent.cs
- PathGeometry.cs
- SchemaNames.cs
- IODescriptionAttribute.cs
- ValidationEventArgs.cs
- SqlRowUpdatingEvent.cs
- BinaryWriter.cs
- Schema.cs
- CustomAssemblyResolver.cs
- MorphHelper.cs
- DebugView.cs
- ClipboardProcessor.cs
- XhtmlConformanceSection.cs
- PropertyDescriptorComparer.cs
- InvokeGenerator.cs
- DataPagerCommandEventArgs.cs
- OdbcStatementHandle.cs
- MatrixStack.cs
- DockProviderWrapper.cs
- DayRenderEvent.cs
- CatalogZoneBase.cs