System.Xml.Serialization.SoapTypeSerializationSource.SoapTypeSerializationSource C# (CSharp) Method

SoapTypeSerializationSource() public method

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