//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.33440
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace Saving.WcfPrint {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="WcfPrint.IPrint")]
public interface IPrint {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPrint/PrintPDF", ReplyAction="http://tempuri.org/IPrint/PrintPDFResponse")]
int PrintPDF(string wsPass, string xmlPrint, string pdfFileName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPrint/ReportPDF_PrintServer", ReplyAction="http://tempuri.org/IPrint/ReportPDF_PrintServerResponse")]
int ReportPDF_PrintServer(string wsPass, string xmlPrint, string pdfFileName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPrint/GetPDFURL", ReplyAction="http://tempuri.org/IPrint/GetPDFURLResponse")]
string GetPDFURL(string wsPass);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public interface IPrintChannel : Saving.WcfPrint.IPrint, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public partial class PrintClient : System.ServiceModel.ClientBase, Saving.WcfPrint.IPrint {
public PrintClient() {
}
public PrintClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public PrintClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public PrintClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public PrintClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public int PrintPDF(string wsPass, string xmlPrint, string pdfFileName) {
return base.Channel.PrintPDF(wsPass, xmlPrint, pdfFileName);
}
public int ReportPDF_PrintServer(string wsPass, string xmlPrint, string pdfFileName) {
return base.Channel.ReportPDF_PrintServer(wsPass, xmlPrint, pdfFileName);
}
public string GetPDFURL(string wsPass) {
return base.Channel.GetPDFURL(wsPass);
}
}
}