C# 클래스 Microsoft.Scripting.Runtime.DynamicXamlReader

Provides services for loading XAML and binding events to dynamic language code definitions.
파일 보기 프로젝트 열기: jschementi/iron

공개 메소드들

메소드 설명
LoadComponent ( dynamic scope, DynamicOperations operations, Stream stream, XamlSchemaContext schemaContext ) : object

Loads XAML from the specified stream and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.

LoadComponent ( dynamic scope, DynamicOperations operations, TextReader reader, XamlSchemaContext schemaContext ) : object

Loads XAML from the specified TextReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.

LoadComponent ( dynamic scope, DynamicOperations operations, XamlXmlReader reader ) : object

Loads XAML from the specified XamlXmlReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.

LoadComponent ( dynamic scope, DynamicOperations operations, XmlReader reader, XamlSchemaContext schemaContext ) : object

Loads XAML from the specified XmlReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.

LoadComponent ( dynamic scope, DynamicOperations operations, string filename, XamlSchemaContext schemaContext ) : object

Loads XAML from the specified filename and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.

메소드 상세

LoadComponent() 공개 정적인 메소드

Loads XAML from the specified stream and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.
public static LoadComponent ( dynamic scope, DynamicOperations operations, Stream stream, XamlSchemaContext schemaContext ) : object
scope dynamic
operations DynamicOperations
stream Stream
schemaContext System.Xaml.XamlSchemaContext
리턴 object

LoadComponent() 공개 정적인 메소드

Loads XAML from the specified TextReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.
public static LoadComponent ( dynamic scope, DynamicOperations operations, TextReader reader, XamlSchemaContext schemaContext ) : object
scope dynamic
operations DynamicOperations
reader System.IO.TextReader
schemaContext System.Xaml.XamlSchemaContext
리턴 object

LoadComponent() 공개 정적인 메소드

Loads XAML from the specified XamlXmlReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.
public static LoadComponent ( dynamic scope, DynamicOperations operations, XamlXmlReader reader ) : object
scope dynamic
operations DynamicOperations
reader System.Xaml.XamlXmlReader
리턴 object

LoadComponent() 공개 정적인 메소드

Loads XAML from the specified XmlReader and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.
public static LoadComponent ( dynamic scope, DynamicOperations operations, XmlReader reader, XamlSchemaContext schemaContext ) : object
scope dynamic
operations DynamicOperations
reader XmlReader
schemaContext System.Xaml.XamlSchemaContext
리턴 object

LoadComponent() 공개 정적인 메소드

Loads XAML from the specified filename and returns the deserialized object. Any event handlers are bound to methods defined in the provided Scope and converted using the provided DynamicOperations object.
public static LoadComponent ( dynamic scope, DynamicOperations operations, string filename, XamlSchemaContext schemaContext ) : object
scope dynamic
operations DynamicOperations
filename string
schemaContext System.Xaml.XamlSchemaContext
리턴 object