Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WCF / Tools / comsvcutil / ToolConsole.cs / 1305376 / ToolConsole.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace Microsoft.Tools.ServiceModel.ComSvcConfig { using System; using System.ServiceModel.Channels; using System.IO; using Microsoft.Tools.ServiceModel; using Microsoft.Tools.ServiceModel.SvcUtil; internal static class ToolConsole { static bool verbose = false; static public bool Verbose { set { verbose = value; } } internal static void WriteQueryLine(string str) { Console.WriteLine(str); } internal static void WriteLine(string str) { Console.WriteLine(str); } internal static void WriteError(Exception e) { WriteError(e, SR.GetString(SR.Error)); } internal static void WriteWarning(string message) { if (verbose ) { Console.Write(SR.GetString(SR.Warning)); Console.WriteLine(message); } } internal static void WriteNonVerboseWarning(string message) { Console.Write(SR.GetString(SR.Warning)); Console.WriteLine(message); } internal static void WriteError(string errMsg, string prefix) { Console.Error.Write(prefix); Console.Error.WriteLine(errMsg); } internal static void WriteError(Exception e, string prefix) { WriteError(e.Message, prefix); if (e.InnerException != null) WriteError(e.InnerException, " "); } internal static void WriteDetailedException (Exception e, string prefix) { WriteError(e, prefix); if (e.InnerException != null) WriteError(e.InnerException, " "); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectStateEntryDbUpdatableDataRecord.cs
- FixedSOMElement.cs
- URL.cs
- SQLBoolean.cs
- UpdatePanel.cs
- FixedSOMElement.cs
- XPathAncestorIterator.cs
- XmlSignificantWhitespace.cs
- DataBinder.cs
- AnimatedTypeHelpers.cs
- DataGridRelationshipRow.cs
- ConfigurationStrings.cs
- MDIControlStrip.cs
- UnicodeEncoding.cs
- OleDbFactory.cs
- FormatterServices.cs
- EntryPointNotFoundException.cs
- WindowsFormsLinkLabel.cs
- ListenerConfig.cs
- MailBnfHelper.cs
- Point4DConverter.cs
- IsolatedStorageSecurityState.cs
- TextServicesDisplayAttribute.cs
- OdbcHandle.cs
- httpapplicationstate.cs
- ReliableSession.cs
- XmlDocumentFieldSchema.cs
- BuildDependencySet.cs
- HtmlSelect.cs
- PerfCounterSection.cs
- BitmapFrameDecode.cs
- filewebresponse.cs
- XmlQueryCardinality.cs
- Sequence.cs
- BufferModesCollection.cs
- RenderData.cs
- AssemblyHelper.cs
- DynamicDataExtensions.cs
- pingexception.cs
- Decimal.cs
- QilName.cs
- Membership.cs
- CommonRemoteMemoryBlock.cs
- TreeWalker.cs
- OdbcHandle.cs
- DataGridBoolColumn.cs
- Vector3DCollection.cs
- ScriptRef.cs
- Transform3DGroup.cs
- TypeInfo.cs
- SQLBoolean.cs
- MD5CryptoServiceProvider.cs
- StorageEntityContainerMapping.cs
- odbcmetadatacolumnnames.cs
- SqlTypeConverter.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- MultiPageTextView.cs
- WebPartExportVerb.cs
- FileDialog_Vista_Interop.cs
- CounterCreationDataCollection.cs
- IsolatedStoragePermission.cs
- RegistryExceptionHelper.cs
- CurrentTimeZone.cs
- DetailsViewUpdatedEventArgs.cs
- Constants.cs
- TreeViewEvent.cs
- PropertySourceInfo.cs
- MemberMemberBinding.cs
- SafeReversePInvokeHandle.cs
- MeasurementDCInfo.cs
- DbProviderFactories.cs
- EventLog.cs
- WebSysDefaultValueAttribute.cs
- StylusPointCollection.cs
- LinqDataSourceValidationException.cs
- JsonDeserializer.cs
- SetStoryboardSpeedRatio.cs
- DateTimeParse.cs
- StatusInfoItem.cs
- Encoding.cs
- PerspectiveCamera.cs
- SqlBooleanMismatchVisitor.cs
- ObservableCollectionDefaultValueFactory.cs
- Run.cs
- ACE.cs
- DataColumnSelectionConverter.cs
- ImportCatalogPart.cs
- ControlIdConverter.cs
- DataGridViewTopLeftHeaderCell.cs
- WebHttpSecurityElement.cs
- _OverlappedAsyncResult.cs
- SyndicationContent.cs
- FontStretches.cs
- BitmapEffectOutputConnector.cs
- CheckedListBox.cs
- SqlAliaser.cs
- HMACSHA256.cs
- TemplateControlCodeDomTreeGenerator.cs
- SqlTransaction.cs
- ArrayEditor.cs