コード例 #1
0
        public IEnumerable <IServiceOperationProfile> LoadServiceOperationProfiles(Assembly serviceOperationAssembly)
        {
            var serviceOperationInterfaceDefinition = typeof(IServiceOperation <,>);

            foreach (var assemblyType in serviceOperationAssembly.GetTypes())
            {
                var serviceOperationInterfaceType = assemblyType.GetGenericInterfaceType(serviceOperationInterfaceDefinition);

                if (serviceOperationInterfaceType == null)
                {
                    continue;
                }

                // Get service operation request and response types

                var genericArgumentTypes = serviceOperationInterfaceType.GetGenericArguments();

                var requestType  = genericArgumentTypes[0];
                var responseType = genericArgumentTypes[1];

                var serviceOperationNameAttributes = assemblyType.GetAttributes <ServiceOperationNameAttribute>().ToList();

                var requestNames = serviceOperationNameAttributes.Count > 0 ? serviceOperationNameAttributes.Select(x => x.RequestName).ToList() : new List <string> {
                    requestType.Name
                };

                if (requestNames.Any(x => string.IsNullOrEmpty(x)))
                {
                    var log = string.Format("The ServiceOperation '{0}' has a ServiceOperationNameAttribute with a null or empty RequestName field", assemblyType.Name);
                    throw new NotSupportedException(log);
                }

                // Create generic service operation type

                var serviceOperationProxyType = typeof(ServiceOperationProxy <, ,>).MakeGenericType(assemblyType, requestType, responseType);

                var serviceOperationProxy = (IServiceOperation)Activator.CreateInstance(serviceOperationProxyType, this.typeFactory, this.serviceAspectFactory);

                var serviceOperationProfile = new ServiceOperationProfile
                {
                    RequestNames     = requestNames,
                    RequestType      = requestType,
                    ResponseType     = responseType,
                    ServiceOperation = serviceOperationProxy,
                };

                yield return(serviceOperationProfile);
            }
        }
コード例 #2
0
        public IEnumerable<IServiceOperationProfile> LoadServiceOperationProfiles(Assembly serviceOperationAssembly)
        {
            var serviceOperationInterfaceDefinition = typeof(IServiceOperation<,>);

            foreach (var assemblyType in serviceOperationAssembly.GetTypes())
            {
                var serviceOperationInterfaceType = assemblyType.GetGenericInterfaceType(serviceOperationInterfaceDefinition);

                if (serviceOperationInterfaceType == null)
                {
                    continue;
                }

                // Get service operation request and response types

                var genericArgumentTypes = serviceOperationInterfaceType.GetGenericArguments();

                var requestType = genericArgumentTypes[0];
                var responseType = genericArgumentTypes[1];

                var serviceOperationNameAttributes = assemblyType.GetAttributes<ServiceOperationNameAttribute>().ToList();

                var requestNames = serviceOperationNameAttributes.Count > 0 ? serviceOperationNameAttributes.Select(x => x.RequestName).ToList() : new List<string> {requestType.Name};

                if (requestNames.Any(x => string.IsNullOrEmpty(x)))
                {
                    var log = string.Format("The ServiceOperation '{0}' has a ServiceOperationNameAttribute with a null or empty RequestName field", assemblyType.Name);
                    throw new NotSupportedException(log);
                }

                // Create generic service operation type

                var serviceOperationProxyType = typeof(ServiceOperationProxy<,,>).MakeGenericType(assemblyType, requestType, responseType);

                var serviceOperationProxy = (IServiceOperation) Activator.CreateInstance(serviceOperationProxyType, this.typeFactory, this.serviceAspectFactory);

                var serviceOperationProfile = new ServiceOperationProfile
            {
                    RequestNames = requestNames,
                RequestType = requestType,
                ResponseType = responseType,
                    ServiceOperation = serviceOperationProxy,
            };

                yield return serviceOperationProfile;
            }
        }