using Bll; using System; using System.CodeDom; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Runtime.Serialization; using System.ServiceModel…
package com.swift.kuozhan; import java.io.File; import java.io.FileFilter; /*使用文件过滤器筛选将指定文件夹下的小于200K的小文件获取并打印(包括所有子文件夹的文件).*/ public class kuaozhan1 { public static void main(String[] args) { File dir = new File("c:/"); if(!dir.exists()) { throw…
WCF中传输的数据不想传统的面向对象编程,它只传递了一些对象的属性,但是自身并不知道自己属于什么对象,所以,他没有子类和父类的概念,因而也就没有Is-a的关系,所以在WCF中,如果想维持这种继承关系,就需要做一些特殊的处理了. 假设有如下定义, namespace KnownTypeExampleInterface{ [DataContract] public class Employee { [DataMember] public string N…
.服务契约的定义 /* Copyright (c) 2014 HaiHui Software Co., Ltd. All rights reserved * * Create by huanglc@holworth.com at 2014-10-14 10:09:00 * */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceMode…
Windows Communication Foundation (WCF) 使用 DataContractSerializer 作为其默认的序列化引擎以将数据转换到 XML 并将 XML 转换回数据.DataContractSerializer 是专为序列化数据协定类型而设计的.但是,它支持许多其他可视为具有隐式数据协定的类型. 以下是可以序列化的类型: 1. 具有不带参数的构造函数的所有公开可见类型. 2. 数据协定类型.这些是已应用了 DataContractAttribute 属性的类型…