예제 #1
0
        private ResolverResult(XamlTypeKind kind, ICollection<string> newProperties)
        {
            SharedFx.Assert(kind != XamlTypeKind.PartialSupported || newProperties != null, "newProperties should not be null when kind is XamlTypeKind.PartialSupported");

            this.Kind = kind;
            this.NewProperties = newProperties;
        }
예제 #2
0
        private ResolverResult(XamlTypeKind kind, ICollection <string> newProperties)
        {
            SharedFx.Assert(kind != XamlTypeKind.PartialSupported || newProperties != null, "newProperties should not be null when kind is XamlTypeKind.PartialSupported");

            this.Kind          = kind;
            this.NewProperties = newProperties;
        }
예제 #3
0
 public ResolverResult(XamlTypeKind kind)
     : this(kind, null)
 {
 }
예제 #4
0
 public ResolverResult(XamlTypeKind kind)
     : this(kind, null)
 {
 }