Skip to content

Instantly share code, notes, and snippets.

@meteora1986
Created September 29, 2017 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meteora1986/b43c9750ddeb50187420edd6741301f5 to your computer and use it in GitHub Desktop.
Save meteora1986/b43c9750ddeb50187420edd6741301f5 to your computer and use it in GitHub Desktop.
class_webservice
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
//
// Der Quellcode wurde automatisch mit Microsoft.VSDesigner generiert. Version 4.0.30319.42000.
//
#pragma warning disable 1591
namespace App4.Droid.ari_webservice {
using System;
using System.Web.Services;
using System.Diagnostics;
using System.Web.Services.Protocols;
using System.Xml.Serialization;
using System.ComponentModel;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.2046.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="ari_webserviceSoapBinding", Namespace="http://www.myserver.com/businessinterface/my_webservice")]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(FilterType))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(Message))]
public partial class ari_webserviceService : System.Web.Services.Protocols.SoapHttpClientProtocol {
private ActivationType activationField;
private System.Threading.SendOrPostCallback HandleXMLOperationCompleted;
private bool useDefaultCredentialsSetExplicitly;
/// <remarks/>
public ari_webserviceService() {
this.Url = "http://myserver:8412/services/my_webservice";
if ((this.IsLocalFileSystemWebService(this.Url) == true)) {
this.UseDefaultCredentials = true;
this.useDefaultCredentialsSetExplicitly = false;
}
else {
this.useDefaultCredentialsSetExplicitly = true;
}
}
public ActivationType Activation {
get {
return this.activationField;
}
set {
this.activationField = value;
}
}
public new string Url {
get {
return base.Url;
}
set {
if ((((this.IsLocalFileSystemWebService(base.Url) == true)
&& (this.useDefaultCredentialsSetExplicitly == false))
&& (this.IsLocalFileSystemWebService(value) == false))) {
base.UseDefaultCredentials = false;
}
base.Url = value;
}
}
public new bool UseDefaultCredentials {
get {
return base.UseDefaultCredentials;
}
set {
base.UseDefaultCredentials = value;
this.useDefaultCredentialsSetExplicitly = true;
}
}
/// <remarks/>
public event HandleXMLCompletedEventHandler HandleXMLCompleted;
/// <remarks/>
[System.Web.Services.Protocols.SoapHeaderAttribute("Activation")]
[System.Web.Services.Protocols.SoapRpcMethodAttribute("", RequestNamespace="http://www.infor.com/businessinterface/ari_webservice", ResponseNamespace="http://www.infor.com/businessinterface/ari_webservice", Use=System.Web.Services.Description.SoapBindingUse.Literal)]
[return: System.Xml.Serialization.XmlElementAttribute("HandleXMLResponse")]
public HandleXMLResponseType HandleXML(HandleXMLRequestType HandleXMLRequest) {
object[] results = this.Invoke("HandleXML", new object[] {
HandleXMLRequest});
return ((HandleXMLResponseType)(results[0]));
}
/// <remarks/>
public void HandleXMLAsync(HandleXMLRequestType HandleXMLRequest) {
this.HandleXMLAsync(HandleXMLRequest, null);
}
/// <remarks/>
public void HandleXMLAsync(HandleXMLRequestType HandleXMLRequest, object userState) {
if ((this.HandleXMLOperationCompleted == null)) {
this.HandleXMLOperationCompleted = new System.Threading.SendOrPostCallback(this.OnHandleXMLOperationCompleted);
}
this.InvokeAsync("HandleXML", new object[] {
HandleXMLRequest}, this.HandleXMLOperationCompleted, userState);
}
private void OnHandleXMLOperationCompleted(object arg) {
if ((this.HandleXMLCompleted != null)) {
System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
this.HandleXMLCompleted(this, new HandleXMLCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
}
}
/// <remarks/>
public new void CancelAsync(object userState) {
base.CancelAsync(userState);
}
private bool IsLocalFileSystemWebService(string url) {
if (((url == null)
|| (url == string.Empty))) {
return false;
}
System.Uri wsUri = new System.Uri(url);
if (((wsUri.Port >= 1024)
&& (string.Compare(wsUri.Host, "localHost", System.StringComparison.OrdinalIgnoreCase) == 0))) {
return true;
}
return false;
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
[System.Xml.Serialization.XmlRootAttribute("Activation", Namespace="http://www.myserver.com/businessinterface/my_webservice", IsNullable=false)]
public partial class ActivationType : System.Web.Services.Protocols.SoapHeader {
private string usernameField;
private string passwordField;
private int companyField;
private bool companyFieldSpecified;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string username {
get {
return this.usernameField;
}
set {
this.usernameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string password {
get {
return this.passwordField;
}
set {
this.passwordField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public int company {
get {
return this.companyField;
}
set {
this.companyField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool companySpecified {
get {
return this.companyFieldSpecified;
}
set {
this.companyFieldSpecified = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class EmptyValueType {
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class ComparisonExpressionType {
private ComparisonExpressionTypeComparisonOperator comparisonOperatorField;
private object itemField;
private ItemChoiceType1 itemElementNameField;
private object item1Field;
private Item1ChoiceType item1ElementNameField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public ComparisonExpressionTypeComparisonOperator comparisonOperator {
get {
return this.comparisonOperatorField;
}
set {
this.comparisonOperatorField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("attributeName", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
[System.Xml.Serialization.XmlElementAttribute("emptyValue", typeof(EmptyValueType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
[System.Xml.Serialization.XmlElementAttribute("instanceValue", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
public object Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Order=2)]
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType1 ItemElementName {
get {
return this.itemElementNameField;
}
set {
this.itemElementNameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("attributeName", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
[System.Xml.Serialization.XmlElementAttribute("emptyValue", typeof(EmptyValueType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
[System.Xml.Serialization.XmlElementAttribute("instanceValue", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=3)]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")]
public object Item1 {
get {
return this.item1Field;
}
set {
this.item1Field = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Order=4)]
[System.Xml.Serialization.XmlIgnoreAttribute()]
public Item1ChoiceType Item1ElementName {
get {
return this.item1ElementNameField;
}
set {
this.item1ElementNameField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public enum ComparisonExpressionTypeComparisonOperator {
/// <remarks/>
le,
/// <remarks/>
lt,
/// <remarks/>
ge,
/// <remarks/>
gt,
/// <remarks/>
ne,
/// <remarks/>
eq,
/// <remarks/>
like,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice", IncludeInSchema=false)]
public enum ItemChoiceType1 {
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":attributeName")]
attributeName,
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":emptyValue")]
emptyValue,
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":instanceValue")]
instanceValue,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice", IncludeInSchema=false)]
public enum Item1ChoiceType {
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":attributeName")]
attributeName,
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":emptyValue")]
emptyValue,
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":instanceValue")]
instanceValue,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class LogicalExpressionType {
private LogicalExpressionTypeLogicalOperator logicalOperatorField;
private object[] itemsField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public LogicalExpressionTypeLogicalOperator logicalOperator {
get {
return this.logicalOperatorField;
}
set {
this.logicalOperatorField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("ComparisonExpression", typeof(ComparisonExpressionType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlElementAttribute("LogicalExpression", typeof(LogicalExpressionType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public object[] Items {
get {
return this.itemsField;
}
set {
this.itemsField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public enum LogicalExpressionTypeLogicalOperator {
/// <remarks/>
or,
/// <remarks/>
and,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class FilterType {
private object itemField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("ComparisonExpression", typeof(ComparisonExpressionType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlElementAttribute("LogicalExpression", typeof(LogicalExpressionType), Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public object Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIncludeAttribute(typeof(InformationMessage))]
[System.Xml.Serialization.XmlIncludeAttribute(typeof(DetailMessage))]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class Message {
private string messageIndexField;
private string messageCodeField;
private MessageMessageType messageTypeField;
private string messageTextField;
private string messageSourceField;
private DetailMessage[] messageDetailsField;
private string messageCorrectiveActionField;
private string itemField;
private ItemChoiceType itemElementNameField;
private MessageMessageReference messageReferenceField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, DataType="integer")]
public string messageIndex {
get {
return this.messageIndexField;
}
set {
this.messageIndexField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string messageCode {
get {
return this.messageCodeField;
}
set {
this.messageCodeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public MessageMessageType messageType {
get {
return this.messageTypeField;
}
set {
this.messageTypeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string messageText {
get {
return this.messageTextField;
}
set {
this.messageTextField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string messageSource {
get {
return this.messageSourceField;
}
set {
this.messageSourceField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlArrayItemAttribute("Message", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
public DetailMessage[] MessageDetails {
get {
return this.messageDetailsField;
}
set {
this.messageDetailsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string messageCorrectiveAction {
get {
return this.messageCorrectiveActionField;
}
set {
this.messageCorrectiveActionField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("messageAdditionalHelpText", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlElementAttribute("messageAdditionalHelpURI", typeof(string), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, DataType="anyURI")]
[System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")]
public string Item {
get {
return this.itemField;
}
set {
this.itemField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public ItemChoiceType ItemElementName {
get {
return this.itemElementNameField;
}
set {
this.itemElementNameField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public MessageMessageReference MessageReference {
get {
return this.messageReferenceField;
}
set {
this.messageReferenceField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public enum MessageMessageType {
/// <remarks/>
Error,
/// <remarks/>
Warning,
/// <remarks/>
Information,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class DetailMessage : Message {
private string idField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")]
public string ID {
get {
return this.idField;
}
set {
this.idField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice", IncludeInSchema=false)]
public enum ItemChoiceType {
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":messageAdditionalHelpText")]
messageAdditionalHelpText,
/// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute(":messageAdditionalHelpURI")]
messageAdditionalHelpURI,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class MessageMessageReference {
private string messageReferenceTypeField;
private object messageReferenceInfoField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string messageReferenceType {
get {
return this.messageReferenceTypeField;
}
set {
this.messageReferenceTypeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public object messageReferenceInfo {
get {
return this.messageReferenceInfoField;
}
set {
this.messageReferenceInfoField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class InformationMessage : Message {
private string idField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")]
public string ID {
get {
return this.idField;
}
set {
this.idField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class HandleXMLResponseType {
private HandleXMLResponseTypeControlArea controlAreaField;
private InformationMessage[] informationAreaField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public HandleXMLResponseTypeControlArea ControlArea {
get {
return this.controlAreaField;
}
set {
this.controlAreaField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.Xml.Serialization.XmlArrayItemAttribute("Message", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
public InformationMessage[] InformationArea {
get {
return this.informationAreaField;
}
set {
this.informationAreaField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class HandleXMLResponseTypeControlArea {
private long retField;
private bool retFieldSpecified;
private object oxmlField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public long ret {
get {
return this.retField;
}
set {
this.retField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
public bool retSpecified {
get {
return this.retFieldSpecified;
}
set {
this.retFieldSpecified = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("o.xml", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public object oxml {
get {
return this.oxmlField;
}
set {
this.oxmlField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class HandleXMLRequestType {
private HandleXMLRequestTypeControlArea controlAreaField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public HandleXMLRequestTypeControlArea ControlArea {
get {
return this.controlAreaField;
}
set {
this.controlAreaField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public partial class HandleXMLRequestTypeControlArea {
private processingScope processingScopeField;
private string ixmlField;
private string oxmlField;
public HandleXMLRequestTypeControlArea() {
this.processingScopeField = processingScope.request;
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
[System.ComponentModel.DefaultValueAttribute(processingScope.request)]
public processingScope processingScope {
get {
return this.processingScopeField;
}
set {
this.processingScopeField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("i.xml", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string ixml {
get {
return this.ixmlField;
}
set {
this.ixmlField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("o.xml", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string oxml {
get {
return this.oxmlField;
}
set {
this.oxmlField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.7.2102.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.myserver.com/businessinterface/my_webservice")]
public enum processingScope {
/// <remarks/>
not_applicable,
/// <remarks/>
request,
/// <remarks/>
business_entity,
/// <remarks/>
business_entity_component,
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.2046.0")]
public delegate void HandleXMLCompletedEventHandler(object sender, HandleXMLCompletedEventArgs e);
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Web.Services", "4.7.2046.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class HandleXMLCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs {
private object[] results;
internal HandleXMLCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
base(exception, cancelled, userState) {
this.results = results;
}
/// <remarks/>
public HandleXMLResponseType Result {
get {
this.RaiseExceptionIfNecessary();
return ((HandleXMLResponseType)(this.results[0]));
}
}
}
}
#pragma warning restore 1591
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment