/// <include file='doc\SoapReflectionImporter.uex' path='docs/doc[@for="SoapReflectionImporter.SoapReflectionImporter3"]/*' />
 /// <devdoc>
 ///    <para>[To be supplied.]</para>
 /// </devdoc>
 public SoapReflectionImporter(SoapAttributeOverrides attributeOverrides, string defaultNamespace) {
     if (defaultNamespace == null)
         defaultNamespace = String.Empty;
     if (attributeOverrides == null)
         attributeOverrides = new SoapAttributeOverrides();
     this.attributeOverrides = attributeOverrides;
     this.defaultNs = defaultNamespace;
     this.typeScope = new TypeScope();
     this.modelScope = new ModelScope(this.typeScope);
 }
예제 #2
0
 /// <devdoc>
 ///    <para>[To be supplied.]</para>
 /// </devdoc>
 public XmlReflectionImporter(XmlAttributeOverrides attributeOverrides, string defaultNamespace)
 {
     if (defaultNamespace == null)
         defaultNamespace = String.Empty;
     if (attributeOverrides == null)
         attributeOverrides = new XmlAttributeOverrides();
     _attributeOverrides = attributeOverrides;
     _defaultNs = defaultNamespace;
     _typeScope = new TypeScope();
     _modelScope = new ModelScope(_typeScope);
 }
 public XmlReflectionImporter(XmlAttributeOverrides attributeOverrides, string defaultNamespace)
 {
     this.defaultAttributes = new XmlAttributes();
     this.types = new System.Xml.Serialization.NameTable();
     this.nullables = new System.Xml.Serialization.NameTable();
     this.elements = new System.Xml.Serialization.NameTable();
     this.anonymous = new Hashtable();
     this.choiceNum = 1;
     if (defaultNamespace == null)
     {
         defaultNamespace = string.Empty;
     }
     if (attributeOverrides == null)
     {
         attributeOverrides = new XmlAttributeOverrides();
     }
     this.attributeOverrides = attributeOverrides;
     this.defaultNs = defaultNamespace;
     this.typeScope = new TypeScope();
     this.modelScope = new ModelScope(this.typeScope);
 }
예제 #4
0
 internal SpecialModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #5
0
 internal PrimitiveModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #6
0
파일: models.cs 프로젝트: ArildF/masters
 public PrimitiveModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #7
0
 internal ArrayModel(
     [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #8
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 internal EnumModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #9
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 internal SpecialModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #10
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 internal ArrayModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #11
0
파일: models.cs 프로젝트: ydunk/masters
 public SpecialModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #12
0
파일: models.cs 프로젝트: ydunk/masters
 public PrimitiveModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #13
0
파일: models.cs 프로젝트: ydunk/masters
 public ArrayModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #14
0
파일: models.cs 프로젝트: ArildF/masters
 protected TypeModel(Type type, TypeDesc typeDesc, ModelScope scope) {
     this.scope = scope;
     this.type = type;
     this.typeDesc = typeDesc;
 }
예제 #15
0
파일: models.cs 프로젝트: ArildF/masters
 public EnumModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #16
0
파일: models.cs 프로젝트: ArildF/masters
 public StructModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #17
0
파일: models.cs 프로젝트: ArildF/masters
 public SpecialModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #18
0
 internal StructModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #19
0
 internal EnumModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #20
0
파일: models.cs 프로젝트: ydunk/masters
 public StructModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #21
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 internal PrimitiveModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #22
0
파일: models.cs 프로젝트: ydunk/masters
 public EnumModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #23
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 internal StructModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
예제 #24
0
 protected TypeModel(Type type, TypeDesc typeDesc, ModelScope scope)
 {
     _scope    = scope;
     _type     = type;
     _typeDesc = typeDesc;
 }
예제 #25
0
파일: Models.cs 프로젝트: ESgarbi/corefx
 protected TypeModel(Type type, TypeDesc typeDesc, ModelScope scope)
 {
     _scope = scope;
     _type = type;
     _typeDesc = typeDesc;
 }
예제 #26
0
 internal ArrayModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope)
 {
 }
예제 #27
0
 protected TypeModel(Type type, TypeDesc typeDesc, ModelScope scope)
 {
     this.scope    = scope;
     this.type     = type;
     this.typeDesc = typeDesc;
 }
예제 #28
0
파일: models.cs 프로젝트: ArildF/masters
 public ArrayModel(Type type, TypeDesc typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }