Show / Hide Table of Contents

Interface IConsole

Interface for console.

Namespace: Kephas.Application.Console
Assembly: Kephas.Application.Console.dll
Syntax
[SingletonAppServiceContract]
public interface IConsole

Methods

| Improve this Doc View Source

ReadLine()

Reads the line from the console.

Declaration
string ReadLine()
Returns
Type Description
System.String

The line.

| Improve this Doc View Source

Write(String)

Writes the text to the console.

Declaration
void Write(string value)
Parameters
Type Name Description
System.String value

The text to write.

| Improve this Doc View Source

WriteLine(String)

Writes the text to the console followed by a new line.

Declaration
void WriteLine(string value = null)
Parameters
Type Name Description
System.String value

Optional. The text to write.

Extension Methods

DynamicObjectExtensions.SetPropertyValue(Object, String, Object)
DynamicObjectExtensions.TrySetPropertyValue(Object, String, Object)
DynamicObjectExtensions.GetPropertyValue(Object, String)
DynamicObjectExtensions.TryGetPropertyValue(Object, String, out Object)
DynamicObjectExtensions.GetRuntimeTypeInfo(Object)
DynamicObjectExtensions.ToDynamic(Object)
DynamicObjectExtensions.ToExpando(Object)
BehaviorValue.ToBehaviorValue<TValue>(TValue)
CollectionExtensions.AddRange<T, TItem>(T, IEnumerable<TItem>)
LoggingExtensions.GetLogger(Object, IContext)
TypeExtensions.GetAbstractType(Object)
TypeExtensions.GetAbstractTypeInfo(Object)
ReflectionHelper.GetTypeInfo(Object)
EntityEntryExtensions.TryGetAttachedEntityEntry(Object)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX