public SoapTypeSerializationSource(Type type, SoapAttributeOverrides attributeOverrides, string namspace, Type[] includedTypes) : base(namspace, includedTypes)
 {
     if (attributeOverrides != null)
     {
         StringBuilder stringBuilder = new StringBuilder();
         attributeOverrides.AddKeyHash(stringBuilder);
         this.attributeOverridesHash = stringBuilder.ToString();
     }
     this.type = type;
 }
		public SoapTypeSerializationSource (Type type, SoapAttributeOverrides attributeOverrides, string namspace, ArrayList includedTypes)
		: base (namspace, includedTypes)
		{
			if (attributeOverrides != null) {
				StringBuilder sb = new StringBuilder ();
				attributeOverrides.AddKeyHash (sb);
				attributeOverridesHash = sb.ToString ();
			}
			
			this.type = type;
		}