Hello,
I create a web service reference and the auto generated code Reference.cs have errors; it say that the 'schema' type that is created in the class is not found or have a missed reference.
This is an auto generated code, so how can I fix it?
/// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("XamarinStudio", "4.0.0.0")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://tempuri.org/")] public partial class getClientDataResponseGetClientDataResult {
private schema schemaField;
private System.Xml.XmlElement anyField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Namespace="http://www.w3.org/2001/XMLSchema", Order=0)]
public schema schema {
get {
return this.schemaField;
}
set {
this.schemaField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute(Order=1)]
public System.Xml.XmlElement Any {
get {
return this.anyField;
}
set {
this.anyField = value;
}
}
}