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
- DefaultExpressionVisitor.cs
- MediaElementAutomationPeer.cs
- OrderedDictionary.cs
- StatusBarAutomationPeer.cs
- ProfileEventArgs.cs
- PropertyContainer.cs
- HttpChannelBindingToken.cs
- CrossContextChannel.cs
- COM2ComponentEditor.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- ModelPerspective.cs
- BamlMapTable.cs
- WebPartDeleteVerb.cs
- EventsTab.cs
- Debug.cs
- TextDecorationCollection.cs
- PathData.cs
- OleDbConnection.cs
- DataServiceContext.cs
- Rss20ItemFormatter.cs
- ApplyTemplatesAction.cs
- ComponentDispatcher.cs
- XPathQilFactory.cs
- CollectionDataContractAttribute.cs
- DisplayInformation.cs
- DependencyObjectPropertyDescriptor.cs
- ExtendedProtectionPolicyElement.cs
- bindurihelper.cs
- WebPart.cs
- FileSystemInfo.cs
- WizardStepCollectionEditor.cs
- SharedConnectionWorkflowTransactionService.cs
- PasswordPropertyTextAttribute.cs
- ListViewGroupConverter.cs
- CodeAttributeDeclaration.cs
- ForeignKeyConstraint.cs
- ErrorWrapper.cs
- TableLayoutColumnStyleCollection.cs
- PolyLineSegment.cs
- StaticContext.cs
- XmlReaderSettings.cs
- TableAutomationPeer.cs
- ExternalException.cs
- Vector.cs
- DbParameterCollection.cs
- WSDualHttpBinding.cs
- EditBehavior.cs
- IApplicationTrustManager.cs
- DelegatingTypeDescriptionProvider.cs
- FileDataSourceCache.cs
- SizeAnimationBase.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ComponentResourceManager.cs
- HelpFileFileNameEditor.cs
- PingReply.cs
- XmlSchemaImporter.cs
- ViewManager.cs
- BevelBitmapEffect.cs
- Evidence.cs
- ListViewPagedDataSource.cs
- FormsAuthenticationUserCollection.cs
- LocalizationParserHooks.cs
- MouseWheelEventArgs.cs
- Int32Storage.cs
- ConnectionConsumerAttribute.cs
- WebPartZoneCollection.cs
- Compiler.cs
- XPathNavigatorKeyComparer.cs
- RegisteredDisposeScript.cs
- TemplateXamlTreeBuilder.cs
- AssemblyLoader.cs
- HTTPNotFoundHandler.cs
- InternalPermissions.cs
- AnimationLayer.cs
- TargetParameterCountException.cs
- CharEntityEncoderFallback.cs
- DBDataPermission.cs
- NoPersistScope.cs
- SqlException.cs
- CodeDomConfigurationHandler.cs
- XmlDocument.cs
- SlipBehavior.cs
- nulltextcontainer.cs
- RegisteredDisposeScript.cs
- FieldMetadata.cs
- Rijndael.cs
- InputLanguageEventArgs.cs
- XmlLanguage.cs
- IdentityManager.cs
- RegionIterator.cs
- XamlSerializerUtil.cs
- Visitors.cs
- ObjectTag.cs
- ChannelPoolSettingsElement.cs
- HistoryEventArgs.cs
- DesignBindingEditor.cs
- AddingNewEventArgs.cs
- WebPartDisplayModeCollection.cs
- WindowsListViewGroupHelper.cs
- ReachSerializer.cs