Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/UnitTests/Service References/ServiceManagementRemote/Reference.cs @ 3976

Last change on this file since 3976 was 3976, checked in by bfarka, 14 years ago

added first service method and unittest for service
added abstract unit test for starting a service host (1046)

File size: 2.7 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     Dieser Code wurde von einem Tool generiert.
4//     Laufzeitversion:2.0.50727.4927
5//
6//     Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
7//     der Code erneut generiert wird.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace UnitTests.ServiceManagementRemote {
12   
13   
14    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
15    [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceManagementRemote.IAuthorizationManagementService")]
16    public interface IAuthorizationManagementService {
17       
18        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IAuthorizationManagementService/CreateRole", ReplyAction="http://tempuri.org/IAuthorizationManagementService/CreateRoleResponse")]
19        void CreateRole(string roleName, bool isPermission);
20    }
21   
22    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
23    public interface IAuthorizationManagementServiceChannel : UnitTests.ServiceManagementRemote.IAuthorizationManagementService, System.ServiceModel.IClientChannel {
24    }
25   
26    [System.Diagnostics.DebuggerStepThroughAttribute()]
27    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
28    public partial class AuthorizationManagementServiceClient : System.ServiceModel.ClientBase<UnitTests.ServiceManagementRemote.IAuthorizationManagementService>, UnitTests.ServiceManagementRemote.IAuthorizationManagementService {
29       
30        public AuthorizationManagementServiceClient() {
31        }
32       
33        public AuthorizationManagementServiceClient(string endpointConfigurationName) :
34                base(endpointConfigurationName) {
35        }
36       
37        public AuthorizationManagementServiceClient(string endpointConfigurationName, string remoteAddress) :
38                base(endpointConfigurationName, remoteAddress) {
39        }
40       
41        public AuthorizationManagementServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
42                base(endpointConfigurationName, remoteAddress) {
43        }
44       
45        public AuthorizationManagementServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
46                base(binding, remoteAddress) {
47        }
48       
49        public void CreateRole(string roleName, bool isPermission) {
50            base.Channel.CreateRole(roleName, isPermission);
51        }
52    }
53}
Note: See TracBrowser for help on using the repository browser.