In This Article

ResolverRequest Class

Represents a request for a Python language resolve operation.

public class ResolverRequest : IResolverRequest
Inheritance:
object object
Implements:
IResolverRequest

Constructors

ResolverRequest(Expression?)

Represents a request for a Python language resolve operation.

public ResolverRequest(Expression? expression)
Parameter Type Description
expression Expression

The Expression to resolve.

Properties

Context

The IPythonContext in which the request is based, if known.

public IPythonContext? Context { get; set; }

Property Value

IPythonContext

Expression

The Expression to resolve.

public Expression? Expression { get; }

Property Value

Expression

SourceModulePath

The path to the module from where the Expression originated.

public string? SourceModulePath { get; set; }

Property Value

string

Inherited Members

Extension Methods