Method | Description | |
---|---|---|
AddIfMissing ( string behaviorKey, |
Adds a particular type of RegionBehavior if it was not already registered. The behaviorKey string is used to check if the behavior is already present
|
|
CreateFromKey ( string key ) : IRegionBehavior |
Creates an instance of the behavior Type that is registered using the specified key.
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through the collection.
|
|
RegionBehaviorFactory ( IServiceLocator serviceLocator ) : Microsoft.Practices.Prism.Properties |
Initializes a new instance of RegionBehaviorFactory.
|
Method | Description | |
---|---|---|
ContainsKey ( string behaviorKey ) : bool | ||
IEnumerable ( ) : IEnumerator |
Returns an enumerator that iterates through a collection.
|
public AddIfMissing ( string behaviorKey, |
||
behaviorKey | string | The behavior key that's used to find if a certain behavior is already added. |
behaviorType | Type of the behavior to add. | |
return | void |
public CreateFromKey ( string key ) : IRegionBehavior | ||
key | string | The key that is used to register a behavior type. |
return | IRegionBehavior |
public RegionBehaviorFactory ( IServiceLocator serviceLocator ) : Microsoft.Practices.Prism.Properties | ||
serviceLocator | IServiceLocator | |
return | Microsoft.Practices.Prism.Properties |