System.Data.ConstraintStructure.ConstraintStructure C# (CSharp) Method

ConstraintStructure() public method

public ConstraintStructure ( string tname, string cols, bool isAttr, string cname, bool isPK, string refName, bool isNested, bool isConstraintOnly ) : System
tname string
cols string
isAttr bool
cname string
isPK bool
refName string
isNested bool
isConstraintOnly bool
return System
		public ConstraintStructure (string tname, string [] cols, bool [] isAttr, string cname, bool isPK, string refName, bool isNested, bool isConstraintOnly)
		{
			TableName = tname;
			Columns = cols;
			IsAttribute = isAttr;
			ConstraintName = XmlHelper.Decode (cname);
			IsPrimaryKey = isPK;
			ReferName = refName;
			IsNested = isNested;
			IsConstraintOnly = isConstraintOnly;
		}
	}
ConstraintStructure