C# Класс Evaluator.AssemblyResults

Wraps the results of a programmatically-accessed compilation with the warnings generated by the compiler.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetType ( string typeName, bool throwOnError ) : TypeResults

Gets the Type object that represents the specified type from the compiled assembly. Assembly.GetType

Защищенные методы

Метод Описание
AssemblyResults ( CompilerResults fullResults ) : System

Initializes a new instance of the AssemblyResults class.

AssemblyResults ( CompilerResults fullResults, string resultSource ) : System

Initializes a new instance of the AssemblyResults class.

Описание методов

AssemblyResults() защищенный Метод

Initializes a new instance of the AssemblyResults class.
protected AssemblyResults ( CompilerResults fullResults ) : System
fullResults System.CodeDom.Compiler.CompilerResults /// The results of the programmatically-accessed compilation. ///
Результат System

AssemblyResults() защищенный Метод

Initializes a new instance of the AssemblyResults class.
protected AssemblyResults ( CompilerResults fullResults, string resultSource ) : System
fullResults System.CodeDom.Compiler.CompilerResults /// The results of the programmatically-accessed compilation. ///
resultSource string /// The source that the compiler attempted to compile. ///
Результат System

GetType() публичный Метод

Gets the Type object that represents the specified type from the compiled assembly. Assembly.GetType
public GetType ( string typeName, bool throwOnError ) : TypeResults
typeName string /// The full name of the type. ///
throwOnError bool /// true to throw an exception if the type is not found; otherwise, a null reference (Nothing in Visual Basic) is returned. ///
Результат TypeResults