Catel.MVVM.InterestedInAttribute.InterestedInAttribute C# (CSharp) Method

InterestedInAttribute() public method

Initializes a new instance of the InterestedInAttribute class.
The is null.
public InterestedInAttribute ( Type viewModelType ) : System
viewModelType System.Type Type of the view model.
return System
		public InterestedInAttribute(Type viewModelType)
		{
            Argument.IsNotNull("viewModelType", viewModelType);

			ViewModelType = viewModelType;
		}
InterestedInAttribute