Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.23 KB | None | 0 0
  1. webRequest.KeepAlive = false;
  2. webRequest.ProtocolVersion=HttpVersion.Version10;
  3. return webRequest;
  4.  
  5. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  6. [System.ServiceModel.ServiceContractAttribute(ConfigurationName = "VinciWCFRef.ISyncVinciSyncContract")]
  7. public interface ISyncVinciSyncContract
  8. {
  9.  
  10. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/ApplyChanges", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/ApplyChangesResponse")]
  11. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  12. SyncContext ApplyChanges(SyncGroupMetadata groupMetadata, System.Data.DataSet dataSet, SyncSession syncSession);
  13.  
  14. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/GetChanges", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/GetChangesResponse")]
  15. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  16. SyncContext GetChanges(SyncGroupMetadata groupMetadata, SyncSession syncSession);
  17.  
  18. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/GetSchema", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/GetSchemaResponse")]
  19. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  20. SyncSchema GetSchema(string[] tableNames, SyncSession syncSession);
  21.  
  22. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/GetServerInfo", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/GetServerInfoResponse")]
  23. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  24. SyncServerInfo GetServerInfo(SyncSession syncSession);
  25.  
  26. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/GetServerChanges", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/GetServerChangesResponse")]
  27. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  28. string[] GetServerChanges(SyncGroupMetadata groupMetadata, SyncSession syncSession);
  29.  
  30. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/Genere_ID_Synchro", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/Genere_ID_SynchroResponse")]
  31. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  32. string[] Genere_ID_Synchro(SyncGroupMetadata groupMetadata, SyncSession syncSession);
  33.  
  34. [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/ISyncVinciSyncContract/TestConnect", ReplyAction = "http://tempuri.org/ISyncVinciSyncContract/TestConnectResponse")]
  35. [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults = true)]
  36. string[] TestConnect(SyncGroupMetadata groupMetadata, SyncSession syncSession);
  37.  
  38. }
  39.  
  40. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  41. public interface ISyncVinciSyncContractChannel : Vinci.VinciWCFRef.ISyncVinciSyncContract, System.ServiceModel.IClientChannel
  42. {
  43. }
  44.  
  45. [System.Diagnostics.DebuggerStepThroughAttribute()]
  46. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  47. public partial class SyncVinciSyncContractClient : System.ServiceModel.ClientBase<Vinci.VinciWCFRef.ISyncVinciSyncContract>, Vinci.VinciWCFRef.ISyncVinciSyncContract
  48. {
  49. public SyncVinciSyncContractClient()
  50. {
  51. }
  52.  
  53. public SyncVinciSyncContractClient(string endpointConfigurationName) :
  54. base(endpointConfigurationName)
  55. {
  56. }
  57.  
  58. public SyncVinciSyncContractClient(string endpointConfigurationName, string remoteAddress) :
  59. base(endpointConfigurationName, remoteAddress)
  60. {
  61. }
  62.  
  63. public SyncVinciSyncContractClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  64. base(endpointConfigurationName, remoteAddress)
  65. {
  66. }
  67.  
  68. public SyncVinciSyncContractClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  69. base(binding, remoteAddress)
  70. {
  71. }
  72.  
  73. public SyncContext ApplyChanges(SyncGroupMetadata groupMetadata, System.Data.DataSet dataSet, SyncSession syncSession)
  74. {
  75. return base.Channel.ApplyChanges(groupMetadata, dataSet, syncSession);
  76. }
  77.  
  78. public SyncContext GetChanges(SyncGroupMetadata groupMetadata, SyncSession syncSession)
  79. {
  80. return base.Channel.GetChanges(groupMetadata, syncSession);
  81. }
  82.  
  83. public SyncSchema GetSchema(string[] tableNames, SyncSession syncSession)
  84. {
  85. return base.Channel.GetSchema(tableNames, syncSession);
  86. }
  87.  
  88. public SyncServerInfo GetServerInfo(SyncSession syncSession)
  89. {
  90. return base.Channel.GetServerInfo(syncSession);
  91. }
  92.  
  93. public string[] GetServerChanges(SyncGroupMetadata groupMetadata, SyncSession syncSession)
  94. {
  95. return base.Channel.GetServerChanges(groupMetadata, syncSession);
  96. }
  97.  
  98. public string[] Genere_ID_Synchro(SyncGroupMetadata groupMetadata, SyncSession syncSession)
  99. {
  100. return base.Channel.Genere_ID_Synchro(groupMetadata, syncSession);
  101. }
  102.  
  103. public string[] TestConnect(SyncGroupMetadata groupMetadata, SyncSession syncSession)
  104. {
  105. return base.Channel.TestConnect(groupMetadata, syncSession);
  106. }
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement