To fix CA2227(Collection properties should be read only), the setters of
the collection properties are removed.
Co-authored-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
Co-authored-by: YeongJong Lee <cleanlyj@naver.com>
/// Subscriber.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
- public List<View> Subscriber { get; set; } = new List<View>();
+ public List<View> Subscriber { get; } = new List<View>();
/// <summary>
/// BackKeyManager static instance.
{
return mUrl;
}
- set
- {
- mDirtyFlag = true;
- mUrl = value;
- }
}
/// <summary>
{
return mResourceURLs;
}
- set
- {
- mDirtyFlag = true;
- mResourceURLs = value;
- }
}
/// <summary>