Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Debugging
Message
De
22/01/2007 16:50:57
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, États-Unis
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Web Services
Titre:
Debugging
Divers
Thread ID:
01187903
Message ID:
01187903
Vues:
75
All,

I am trying to step into a web method. when I do, it takes me to a temporary file and I never reach the code I am trying to execute. The debugger goes into a method in the temp file that returns this._schemaSerializationMode, the code is below.

My code and the code for the temp file is below
Temp File
 [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.BrowsableAttribute(true)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Visible)]
        public override System.Data.SchemaSerializationMode SchemaSerializationMode {
            get {
                return this._schemaSerializationMode;
            }
            set {
                this._schemaSerializationMode = value;
            }
        }
Web Method Code
 [WebMethod]
    public int SaveInfo(DataSet NonAffiliateEscrowData, int UpdateType)
    {
        string XML = NonAffiliateEscrowData.GetXml();
        return NonAffiliateClosingInfo.SaveInfo(XML, UpdateType);
    }
I don't quite understand what is going on, but if someone could help me, that would be great.
Thanks

Jim
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform