IronPython.Runtime.Types.ReflectedEvent.ReadOnlyException C# (CSharp) 메소드

ReadOnlyException() 개인적인 메소드

private ReadOnlyException ( IronPython.Runtime.Types.PythonType dt ) : MissingMemberException
dt IronPython.Runtime.Types.PythonType
리턴 System.MissingMemberException
        private MissingMemberException/*!*/ ReadOnlyException(PythonType/*!*/ dt) {
            Assert.NotNull(dt);
            return new MissingMemberException(String.Format("attribute '{1}' of '{0}' object is read-only", dt.Name, _tracker.Name));
        }