示例#1
0
        public TypeExclusions Add(TypeExclusions additionalExclusions)
        {
            this.Exclude     = additionalExclusions.Exclude;
            this.DoNotFollow = additionalExclusions.DoNotFollow;

            return(this);
        }
示例#2
0
        public TypeExclusions Add(TypeExclusions additionalExclusions)
        {
            this.Exclude = additionalExclusions.Exclude;
            this.DoNotFollow = additionalExclusions.DoNotFollow;

            return this;
        }
 public AddSerializedMemberStep(ITypeRelationalMapper mapper, ITypeMemberParser parser, ITypeExclusion typeExclusionService)
 {
     typeResolver = mapper;
     typeParser = parser;
     typesNotToSerialize = typeExclusionService;
 }
 public SutDoNotFollowTypeExclusions(ITypeExclusion doNotFollowFixed)
 {
     _doNotFollowFixed = doNotFollowFixed;
 }
 public SutExcludeTypeExclusions(ITypeExclusion excludeFixed)
 {
     _excludeFixed = excludeFixed;
 }
 public AddSerializedMemberStep(ITypeRelationalMapper mapper, ITypeMemberParser parser, ITypeExclusion typeExclusionService)
 {
     typeResolver        = mapper;
     typeParser          = parser;
     typesNotToSerialize = typeExclusionService;
 }
 public SutDoNotFollowTypeExclusions(ITypeExclusion doNotFollowFixed)
 {
     _doNotFollowFixed = doNotFollowFixed;
 }
 public SutExcludeTypeExclusions(ITypeExclusion excludeFixed)
 {
     _excludeFixed = excludeFixed;
 }