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
- DataGridViewCheckBoxCell.cs
- WebServiceReceiveDesigner.cs
- ArgumentNullException.cs
- SourceFileInfo.cs
- MappableObjectManager.cs
- EventLogPermissionEntry.cs
- CodePrimitiveExpression.cs
- CodeAccessPermission.cs
- JoinSymbol.cs
- PolicyLevel.cs
- _AcceptOverlappedAsyncResult.cs
- ListManagerBindingsCollection.cs
- LoginUtil.cs
- Font.cs
- _ListenerAsyncResult.cs
- StringArrayConverter.cs
- DesignerDeviceConfig.cs
- OperatingSystem.cs
- BindableTemplateBuilder.cs
- SrgsGrammarCompiler.cs
- WhereQueryOperator.cs
- LocalValueEnumerator.cs
- ExpressionWriter.cs
- XPathSelectionIterator.cs
- CodeEventReferenceExpression.cs
- SqlMetaData.cs
- KeyGestureConverter.cs
- WebPartTracker.cs
- PropagatorResult.cs
- InsufficientMemoryException.cs
- ProtocolInformationReader.cs
- ToolboxDataAttribute.cs
- ClientBuildManagerCallback.cs
- smtppermission.cs
- CodeDomLoader.cs
- RichTextBox.cs
- PageBuildProvider.cs
- ZipIOLocalFileHeader.cs
- BamlMapTable.cs
- ScriptMethodAttribute.cs
- EmptyReadOnlyDictionaryInternal.cs
- DirectoryInfo.cs
- ComponentChangingEvent.cs
- TransportContext.cs
- DataGridViewTopRowAccessibleObject.cs
- StateMachineExecutionState.cs
- ApplicationFileParser.cs
- RegisterInfo.cs
- _NegoState.cs
- IssuedTokenParametersEndpointAddressElement.cs
- DataBindingHandlerAttribute.cs
- BoundField.cs
- TypeDescriptionProviderAttribute.cs
- newinstructionaction.cs
- EndpointInfoCollection.cs
- UrlPath.cs
- CodeDirectionExpression.cs
- FixUp.cs
- Color.cs
- CatalogPartCollection.cs
- CodeSnippetCompileUnit.cs
- CustomBindingElement.cs
- BitStream.cs
- DependencyProperty.cs
- TranslateTransform3D.cs
- FormClosedEvent.cs
- SecurityRuntime.cs
- XsdDataContractExporter.cs
- InternalTypeHelper.cs
- GridViewItemAutomationPeer.cs
- ReceiveSecurityHeaderElementManager.cs
- Timer.cs
- WpfWebRequestHelper.cs
- Help.cs
- GcSettings.cs
- ListViewInsertedEventArgs.cs
- ManifestResourceInfo.cs
- XPathNode.cs
- AuditLevel.cs
- _Win32.cs
- CompilerResults.cs
- LinqDataSourceContextEventArgs.cs
- ClientRuntimeConfig.cs
- GroupBox.cs
- MediaElementAutomationPeer.cs
- TemplateEditingFrame.cs
- LogLogRecord.cs
- RefExpr.cs
- WebUtil.cs
- RequestCache.cs
- MultiSelectRootGridEntry.cs
- SQLMoney.cs
- SHA512.cs
- Stacktrace.cs
- HtmlUtf8RawTextWriter.cs
- DataGridColumnDropSeparator.cs
- ProcessMonitor.cs
- WindowsFormsSynchronizationContext.cs
- RegistryKey.cs
- ListViewCancelEventArgs.cs