Browse Source

UsageDataCollector skeleton project

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5515 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Christoph Wille 16 years ago
parent
commit
223d49ca08
  1. 11
      src/AddIns/Misc/UsageDataCollector/UsageDataCollector/Reference.cs

11
src/AddIns/Misc/UsageDataCollector/UsageDataCollector/Reference.cs

@ -13,7 +13,8 @@ namespace ICSharpCode.UsageDataCollector.ServiceReference {
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="Service.IUDCUploadService")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="Service.IUDCUploadService")]
internal interface IUDCUploadService { public interface IUDCUploadService
{
// CODEGEN: Generating message contract since the wrapper name (UDCUploadRequest) of message UDCUploadRequest does not match the default value (UploadUsageData) // CODEGEN: Generating message contract since the wrapper name (UDCUploadRequest) of message UDCUploadRequest does not match the default value (UploadUsageData)
[System.ServiceModel.OperationContractAttribute(IsOneWay=true, Action="http://tempuri.org/IUDCUploadService/UploadUsageData")] [System.ServiceModel.OperationContractAttribute(IsOneWay=true, Action="http://tempuri.org/IUDCUploadService/UploadUsageData")]
@ -28,7 +29,8 @@ namespace ICSharpCode.UsageDataCollector.ServiceReference {
[System.Diagnostics.DebuggerStepThroughAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.MessageContractAttribute(WrapperName="UDCUploadRequest", WrapperNamespace="http://tempuri.org/", IsWrapped=true)] [System.ServiceModel.MessageContractAttribute(WrapperName="UDCUploadRequest", WrapperNamespace="http://tempuri.org/", IsWrapped=true)]
internal partial class UDCUploadRequest { public partial class UDCUploadRequest
{
[System.ServiceModel.MessageHeaderAttribute(Namespace="http://tempuri.org/")] [System.ServiceModel.MessageHeaderAttribute(Namespace="http://tempuri.org/")]
public string ApplicationKey; public string ApplicationKey;
@ -46,12 +48,13 @@ namespace ICSharpCode.UsageDataCollector.ServiceReference {
} }
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
internal interface IUDCUploadServiceChannel : ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService, System.ServiceModel.IClientChannel { public interface IUDCUploadServiceChannel : ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService, System.ServiceModel.IClientChannel {
} }
[System.Diagnostics.DebuggerStepThroughAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
internal partial class UDCUploadServiceClient : System.ServiceModel.ClientBase<ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService>, ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService { public partial class UDCUploadServiceClient : System.ServiceModel.ClientBase<ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService>, ICSharpCode.UsageDataCollector.ServiceReference.IUDCUploadService
{
private BeginOperationDelegate onBeginUploadUsageDataDelegate; private BeginOperationDelegate onBeginUploadUsageDataDelegate;

Loading…
Cancel
Save