-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathReference.cs
More file actions
144 lines (115 loc) · 6.13 KB
/
Copy pathReference.cs
File metadata and controls
144 lines (115 loc) · 6.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18213
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace SampleWeb.SampleService {
using System.Runtime.Serialization;
using System;
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="RouteHit", Namespace="http://schemas.datacontract.org/2004/07/Sample.Wcf")]
[System.SerializableAttribute()]
public partial class RouteHit : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private long HitCountField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string RouteNameField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return extensionDataField;
}
set {
extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public long HitCount {
get {
return HitCountField;
}
set {
if ((HitCountField.Equals(value) != true)) {
HitCountField = value;
RaisePropertyChanged("HitCount");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string RouteName {
get {
return RouteNameField;
}
set {
if ((object.ReferenceEquals(RouteNameField, value) != true)) {
RouteNameField = value;
RaisePropertyChanged("RouteName");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="SampleService.ISampleService")]
public interface ISampleService {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISampleService/FetchRouteHits", ReplyAction="http://tempuri.org/ISampleService/FetchRouteHitsResponse")]
SampleWeb.SampleService.RouteHit[] FetchRouteHits();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISampleService/ServiceMethodThatIsNotProfiled", ReplyAction="http://tempuri.org/ISampleService/ServiceMethodThatIsNotProfiledResponse")]
string ServiceMethodThatIsNotProfiled();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISampleService/MassiveNesting", ReplyAction="http://tempuri.org/ISampleService/MassiveNestingResponse")]
string MassiveNesting();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISampleService/MassiveNesting2", ReplyAction="http://tempuri.org/ISampleService/MassiveNesting2Response")]
string MassiveNesting2();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ISampleService/Duplicated", ReplyAction="http://tempuri.org/ISampleService/DuplicatedResponse")]
string Duplicated();
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public interface ISampleServiceChannel : SampleWeb.SampleService.ISampleService, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public partial class SampleServiceClient : System.ServiceModel.ClientBase<SampleWeb.SampleService.ISampleService>, SampleWeb.SampleService.ISampleService {
public SampleServiceClient() {
}
public SampleServiceClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public SampleServiceClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public SampleServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public SampleServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public SampleWeb.SampleService.RouteHit[] FetchRouteHits() {
return base.Channel.FetchRouteHits();
}
public string ServiceMethodThatIsNotProfiled() {
return base.Channel.ServiceMethodThatIsNotProfiled();
}
public string MassiveNesting() {
return base.Channel.MassiveNesting();
}
public string MassiveNesting2() {
return base.Channel.MassiveNesting2();
}
public string Duplicated() {
return base.Channel.Duplicated();
}
}
}