public ABIParameterInfo(ABIParameterInfoKind kind, TypeRef coerceType)
        {
            if (kind != ABIParameterInfoKind.Coerced)
                throw new ArgumentException("kind");

            Kind = kind;
            CoerceType = coerceType;
        }
Beispiel #2
0
        public ABIParameterInfo(ABIParameterInfoKind kind, TypeRef coerceType)
        {
            if (kind != ABIParameterInfoKind.Coerced)
            {
                throw new ArgumentException("kind");
            }

            Kind       = kind;
            CoerceType = coerceType;
        }
Beispiel #3
0
 public ABIParameterInfo(ABIParameterInfoKind kind)
 {
     Kind       = kind;
     CoerceType = TypeRef.Empty;
 }
 public ABIParameterInfo(ABIParameterInfoKind kind)
 {
     Kind = kind;
     CoerceType = TypeRef.Empty;
 }