Method | Description | |
---|---|---|
GetInstance ( string name ) : IPseudoSelector |
Gets an instance of a named pseudoselector
|
|
GetRegisteredType ( string name ) : |
Gets a registered pseudoclass filter type. If the name is not registered, an exception is thrown.
|
|
Register ( |
Registers all classes implementing IPseudoSelector in the namespace CsQuery.Extensions in the passed assembly. If no assembly is provided, then inspects the calling assembly instead. This method is called when the LookForExtensions startup option is set. (This is the default setting). |
|
Register ( string name, |
Registers a new PseudoSelector type by name.
|
|
TryGetInstance ( string name, IPseudoSelector &instance ) : bool |
Try to gets an instance of a named pseudoclass filter.
|
|
TryGetRegisteredType ( string name, |
Try to get the type of a registered pseudoclass filter.
|
|
Unregister ( string name ) : bool |
Unregisters the names pseudoclass filter.
|
Method | Description | |
---|---|---|
PopulateFromAssembly ( |
||
PopulateInnerSelectors ( ) : void | ||
PseudoSelectors ( ) : System | ||
ValidateType ( |
public GetInstance ( string name ) : IPseudoSelector | ||
name | string | /// The name of the pseudoselector /// |
return | IPseudoSelector |
public GetRegisteredType ( string name ) : |
||
name | string | /// The name of the pseudoselector. /// |
return |
public Register ( |
||
assembly | /// The assembly to search. /// | |
return | int |
public Register ( string name, |
||
name | string | /// The name of the pseudoselector. /// |
type | /// The type. /// | |
return | void |
public TryGetInstance ( string name, IPseudoSelector &instance ) : bool | ||
name | string | /// The name of the pseudoselector. /// |
instance | IPseudoSelector | /// [out] The new instance. /// |
return | bool |
public TryGetRegisteredType ( string name, |
||
name | string | /// The name of the pseudoselector. /// |
type | /// The type. /// | |
return | bool |
public Unregister ( string name ) : bool | ||
name | string | /// The name of the pseudoselector. /// |
return | bool |