Можно ли сделать свойство класса видимым для публики, но может быть изменено только некоторыми конкретными классами?
например,
// this is the property holder
public class Child
{
public bool IsBeaten { get; set;}
}
// this is the modifier which can set the property of Child instance
public class Father
{
public void BeatChild(Child c)
{
c.IsBeaten = true; // should be no exception
}
}
// this is the observer which can get the property but cannot set.
public class Cat
{
// I want this method always return false.
public bool TryBeatChild(Child c)
{
try
{
c.IsBeaten = true;
return true;
}
catch (Exception)
{
return false;
}
}
// shoud be ok
public void WatchChild(Child c)
{
if( c.IsBeaten )
{
this.Laugh();
}
}
private void Laugh(){}
}
Ребенок - это класс данных,
Родительский - это класс, который может изменять данные,
Cat - это класс, который может читать только данные.
Есть ли способ реализовать такой контроль доступа с помощью свойства в С#?