internal ContextInitializer(ServiceContractGenerator parent, CodeTypeFactory typeFactory) { this.parent = parent; this.typeFactory = typeFactory; this.asyncMethods = parent.OptionsInternal.IsSet(ServiceContractGenerationOptions.AsynchronousMethods); this.taskMethod = parent.OptionsInternal.IsSet(ServiceContractGenerationOptions.TaskBasedAsynchronousMethod); }
public ParamCodeTypeHolderProperty(CodeTypeFactory codetypeFactory, FieldDirection fieldDirection) : base(codetypeFactory, fieldDirection) { }
public DictCreatorMarshalOutProperty(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner) : base(codetypeFactory, owner) { }
public ArrayParamCodeTypeHolderProperty(ParamCodeTypeHolderProperty owner, CodeTypeFactory codetypeFactory, FieldDirection fieldDirection) : base(owner, codetypeFactory, fieldDirection) { this.owner = owner; }
public DictCreatorMarshalIn(CodeTypeFactory codetypeFactory) : base(codetypeFactory) { }
internal override Udbus.Parsing.IStructParamCodeTypeHandler CreateStructCreator(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner) { return new StructCreatorMarshalIn(codetypeFactory, owner); }
public ParamCodeTypeHolderMarshalIn(CodeTypeFactory codetypeFactory) : base(codetypeFactory, FieldDirection.In) { }
public StructCreatorMarshalIn(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner) : base(owner) { this.codetypeFactory = codetypeFactory; }