internal DependencyObjectType()
     : base("System.Windows.DependencyObject")
 {
     this.GetValue        = new QualifiedMethod(this, nameof(this.GetValue));
     this.SetValue        = new QualifiedMethod(this, nameof(this.SetValue));
     this.SetCurrentValue = new QualifiedMethod(this, nameof(this.SetCurrentValue));
 }
Пример #2
0
 internal StringBuilderType()
     : base("System.Text.StringBuilder")
 {
     this.AppendLine   = new QualifiedMethod(this, nameof(this.AppendLine));
     this.Append       = new QualifiedMethod(this, nameof(this.Append));
     this.AppendFormat = new QualifiedMethod(this, nameof(this.AppendFormat));
 }
Пример #3
0
 internal TaskType()
     : base("System.Threading.Tasks.Task")
 {
     this.FromResult     = new QualifiedMethod(this, nameof(this.FromResult));
     this.Run            = new QualifiedMethod(this, nameof(this.Run));
     this.RunOfT         = new QualifiedMethod(this, $"{nameof(this.Run)}`1");
     this.ConfigureAwait = new QualifiedMethod(this, nameof(this.ConfigureAwait));
 }
        internal DependencyPropertyType()
            : base("System.Windows.DependencyProperty")
        {
            this.Register                 = new QualifiedMethod(this, nameof(this.Register));
            this.RegisterReadOnly         = new QualifiedMethod(this, nameof(this.RegisterReadOnly));
            this.RegisterAttached         = new QualifiedMethod(this, nameof(this.RegisterAttached));
            this.RegisterAttachedReadOnly = new QualifiedMethod(this, nameof(this.RegisterAttachedReadOnly));

            this.AddOwner = new QualifiedMethod(this, nameof(this.AddOwner));
        }
Пример #5
0
 internal XunitAssertType()
     : base("Xunit.Assert")
 {
     this.Equal = new QualifiedMethod(this, nameof(this.Equal));
 }
 internal IEnumerableType()
     : base("System.Collections.IEnumerable")
 {
     this.GetEnumerator = new QualifiedMethod(this, nameof(this.GetEnumerator));
 }
Пример #7
0
 internal NUnitAssertType()
     : base("NUnit.Framework.Assert")
 {
     this.AreEqual = new QualifiedMethod(this, nameof(this.AreEqual));
 }
Пример #8
0
 internal StringType()
     : base("System.String", "string")
 {
     this.Format = new QualifiedMethod(this, nameof(this.Format));
 }