コード例 #1
0
ファイル: Graphology.cs プロジェクト: dklinger/Graphology
        public DefaultGetObjectFields(IGetTypeFields getTypeFields)
        {
            if (getTypeFields == null)
            {
                throw new ArgumentNullException("getTypeFields");
            }

            this._getTypeFields = getTypeFields;
        }
コード例 #2
0
ファイル: Graphology.cs プロジェクト: dklinger/Graphology
        public FilteringGetTypeFields(IGetTypeFields getTypeFields, ITypeFieldExclusion typeFieldExclusion)
        {
            if (getTypeFields == null)
            {
                throw new ArgumentNullException("getTypeFields");
            }
            if (typeFieldExclusion == null)
            {
                throw new ArgumentNullException("typeFieldExclusion");
            }

            this._getTypeFields      = getTypeFields;
            this._typeFieldExclusion = typeFieldExclusion;
        }
コード例 #3
0
ファイル: Graphology.cs プロジェクト: TeaDrivenDev/Graphology
        public FilteringGetTypeFields(IGetTypeFields getTypeFields, ITypeFieldExclusion typeFieldExclusion)
        {
            if (getTypeFields == null) throw new ArgumentNullException("getTypeFields");
            if (typeFieldExclusion == null) throw new ArgumentNullException("typeFieldExclusion");

            this._getTypeFields = getTypeFields;
            this._typeFieldExclusion = typeFieldExclusion;
        }
コード例 #4
0
ファイル: Graphology.cs プロジェクト: TeaDrivenDev/Graphology
        public DefaultGetObjectFields(IGetTypeFields getTypeFields)
        {
            if (getTypeFields == null) throw new ArgumentNullException("getTypeFields");

            this._getTypeFields = getTypeFields;
        }