Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Mail / SmtpReplyReader.cs / 1305376 / 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); } } } // 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
- ServiceModelEnumValidatorAttribute.cs
- TemplateEditingVerb.cs
- ObjectDataSourceView.cs
- XmlSchemaType.cs
- CompiledIdentityConstraint.cs
- PolicyChain.cs
- ToolStripScrollButton.cs
- X509CertificateCollection.cs
- DateTimeParse.cs
- ScrollChrome.cs
- _SslSessionsCache.cs
- PhysicalFontFamily.cs
- EmptyReadOnlyDictionaryInternal.cs
- OrderedDictionaryStateHelper.cs
- Source.cs
- NotSupportedException.cs
- DynamicDataRoute.cs
- SiteMapNodeCollection.cs
- ThaiBuddhistCalendar.cs
- OracleRowUpdatingEventArgs.cs
- TextShapeableCharacters.cs
- ConfigurationManagerHelper.cs
- TextTreeRootNode.cs
- DoubleAnimation.cs
- RenderingBiasValidation.cs
- __TransparentProxy.cs
- ManagedIStream.cs
- UTF8Encoding.cs
- UnSafeCharBuffer.cs
- PropertyTab.cs
- AppDomainManager.cs
- InfoCardTrace.cs
- MouseEvent.cs
- NavigationExpr.cs
- UntypedNullExpression.cs
- XmlEnumAttribute.cs
- FormsAuthenticationCredentials.cs
- LinearGradientBrush.cs
- ItemDragEvent.cs
- HtmlElementEventArgs.cs
- XmlCharCheckingReader.cs
- PEFileEvidenceFactory.cs
- WindowAutomationPeer.cs
- AsyncDataRequest.cs
- ReflectionUtil.cs
- IApplicationTrustManager.cs
- Activator.cs
- EmptyControlCollection.cs
- ClientSettingsProvider.cs
- PageParserFilter.cs
- SqlPersonalizationProvider.cs
- DockPattern.cs
- HttpListenerResponse.cs
- EditCommandColumn.cs
- SimpleType.cs
- WorkflowDefinitionDispenser.cs
- HttpFileCollection.cs
- ReferenceEqualityComparer.cs
- WorkflowLayouts.cs
- Executor.cs
- DbExpressionVisitor.cs
- Wizard.cs
- ObjectManager.cs
- FtpWebRequest.cs
- SvcMapFileSerializer.cs
- Component.cs
- WindowInteropHelper.cs
- NavigationPropertyEmitter.cs
- LocalValueEnumerator.cs
- StretchValidation.cs
- Model3D.cs
- MulticastNotSupportedException.cs
- IdentitySection.cs
- SmtpNtlmAuthenticationModule.cs
- XPathSelectionIterator.cs
- DiagnosticsConfiguration.cs
- TableLayout.cs
- DataRowExtensions.cs
- BezierSegment.cs
- RangeValuePatternIdentifiers.cs
- SmtpMail.cs
- IdentityNotMappedException.cs
- AddInDeploymentState.cs
- JapaneseCalendar.cs
- TileBrush.cs
- OdbcRowUpdatingEvent.cs
- NetWebProxyFinder.cs
- HtmlTitle.cs
- ComboBoxItem.cs
- AdRotator.cs
- DetailsViewRow.cs
- PipelineModuleStepContainer.cs
- Socket.cs
- WebPartCollection.cs
- DesignerWithHeader.cs
- SymmetricKeyWrap.cs
- UIElementParagraph.cs
- PrimitiveCodeDomSerializer.cs
- RegexMatch.cs
- Context.cs