public ArtDevBCSDescriptor(string DescriptorName, DirectionType directionType, ArtDevBCSMethod BCSMethod, ArtDevBCS BCS)
        {
            // Create the return parameter.
            this.BCS       = BCS;
            this.BCSMethod = BCSMethod;

            this.parameter = this.BCSMethod.method.Parameters.Create(
                DescriptorName, true, directionType);
        }
Example #2
0
 public ArtDevBCSMethod(Method method, ArtDevBCS BCSContext)
 {
     this.method = method;
     this.BCS    = BCSContext;
 }