示例#1
0
 public ActivationData(Addressable addressable, IMethodInvoker methodInvoker, Type interfaceType, Priority priority, InvokeContextCategory invokeContextCategory)
 {
     this.addressable           = addressable;
     this.methodInvoker         = methodInvoker;
     this.interfaceType         = interfaceType;
     this.priority              = priority;
     this.invokeContextCategory = invokeContextCategory;
 }
 public ServiceContractAttribute(string guidString, InvokeContextCategory invokeContextCategory)
 {
     Guid = new Guid(guidString);
     InvokeContextCategory = invokeContextCategory;
 }
 public ServiceContractAttribute(InvokeContextCategory invokeContextCategory)
 {
     InvokeContextCategory = invokeContextCategory;
 }