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);
            }
示例#2
0
 public ParamCodeTypeHolderProperty(CodeTypeFactory codetypeFactory, FieldDirection fieldDirection)
     : base(codetypeFactory, fieldDirection)
 {
 }
示例#3
0
 public DictCreatorMarshalOutProperty(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner)
     : base(codetypeFactory, owner)
 {
 }
示例#4
0
 public ArrayParamCodeTypeHolderProperty(ParamCodeTypeHolderProperty owner, CodeTypeFactory codetypeFactory, FieldDirection fieldDirection)
     : base(owner, codetypeFactory, fieldDirection)
 {
     this.owner = owner;
 }
示例#5
0
 public DictCreatorMarshalOutProperty(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner)
     : base(codetypeFactory, owner)
 {
 }
示例#6
0
 public ParamCodeTypeHolderProperty(CodeTypeFactory codetypeFactory, FieldDirection fieldDirection)
     : base(codetypeFactory, fieldDirection)
 {
 }
示例#7
0
 public ArrayParamCodeTypeHolderProperty(ParamCodeTypeHolderProperty owner, CodeTypeFactory codetypeFactory, FieldDirection fieldDirection)
     : base(owner, codetypeFactory, fieldDirection)
 {
     this.owner = owner;
 }
示例#8
0
 public DictCreatorMarshalIn(CodeTypeFactory codetypeFactory)
     : base(codetypeFactory)
 {
 }
示例#9
0
 internal override Udbus.Parsing.IStructParamCodeTypeHandler CreateStructCreator(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner)
 {
     return new StructCreatorMarshalIn(codetypeFactory, owner);
 }
示例#10
0
 public ParamCodeTypeHolderMarshalIn(CodeTypeFactory codetypeFactory)
     : base(codetypeFactory, FieldDirection.In)
 {
 }
示例#11
0
 public StructCreatorMarshalIn(CodeTypeFactory codetypeFactory, Udbus.Parsing.IParamCodeTypeHandler owner)
     : base(owner)
 {
     this.codetypeFactory = codetypeFactory;
 }