Code:
/ DotNET / DotNET / 8.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
- DataListCommandEventArgs.cs
- AdapterDictionary.cs
- FormattedText.cs
- RemoteWebConfigurationHostServer.cs
- HttpDebugHandler.cs
- XmlValidatingReaderImpl.cs
- PerformanceCounterLib.cs
- Schema.cs
- ComponentDispatcherThread.cs
- EventDriven.cs
- SQLDecimal.cs
- FlowNode.cs
- columnmapfactory.cs
- XmlChildEnumerator.cs
- SystemIPInterfaceStatistics.cs
- DataGridClipboardHelper.cs
- Context.cs
- DataGridViewBindingCompleteEventArgs.cs
- Stylus.cs
- DataListCommandEventArgs.cs
- FamilyTypeface.cs
- TableLayoutPanel.cs
- GlyphRunDrawing.cs
- LoadWorkflowAsyncResult.cs
- DesignBindingConverter.cs
- ContextMarshalException.cs
- DurableErrorHandler.cs
- BamlResourceContent.cs
- LinqDataSourceContextEventArgs.cs
- MouseEvent.cs
- XmlSchemaAttributeGroup.cs
- WebHttpSecurityModeHelper.cs
- ConfigXmlAttribute.cs
- ExtractedStateEntry.cs
- ConfigurationValidatorAttribute.cs
- SqlConnectionManager.cs
- Matrix.cs
- CharKeyFrameCollection.cs
- TextTreeRootTextBlock.cs
- KerberosSecurityTokenAuthenticator.cs
- XmlCountingReader.cs
- WebHttpSecurityModeHelper.cs
- ObjectConverter.cs
- path.cs
- DeploymentExceptionMapper.cs
- ListViewTableRow.cs
- DataGridViewCellParsingEventArgs.cs
- Closure.cs
- IndentTextWriter.cs
- DataBoundLiteralControl.cs
- CodeObjectCreateExpression.cs
- CompilationSection.cs
- GorillaCodec.cs
- SQLDateTimeStorage.cs
- EntitySqlQueryCacheEntry.cs
- TransactionFlowElement.cs
- IPEndPoint.cs
- _FtpControlStream.cs
- PeerResolver.cs
- Ray3DHitTestResult.cs
- Base64Encoder.cs
- XmlWellformedWriterHelpers.cs
- Viewport2DVisual3D.cs
- DataGridPagerStyle.cs
- DataTemplate.cs
- OleDbStruct.cs
- WebHttpDispatchOperationSelectorData.cs
- DateTimeParse.cs
- wmiprovider.cs
- ClientTargetCollection.cs
- ThreadBehavior.cs
- followingsibling.cs
- TextDecoration.cs
- wmiutil.cs
- List.cs
- Vector3DAnimationBase.cs
- MethodResolver.cs
- QueryStringParameter.cs
- InvalidOleVariantTypeException.cs
- Duration.cs
- _ScatterGatherBuffers.cs
- SignerInfo.cs
- EventInfo.cs
- OptimizedTemplateContent.cs
- ListViewSortEventArgs.cs
- HiddenField.cs
- RawTextInputReport.cs
- RangeValidator.cs
- WebMessageFormatHelper.cs
- WinFormsSpinner.cs
- ObjectResult.cs
- TypeConverterHelper.cs
- SchemaType.cs
- MsmqUri.cs
- XmlDomTextWriter.cs
- LoginName.cs
- MethodExpr.cs
- Lasso.cs
- WebPartDisplayModeCollection.cs
- XmlToDatasetMap.cs