Exemplo n.º 1
0
		protected void RegType(ASN1ComponentTypeInfo typeInfo, bool optionality)
		{
			this.ComponentTypes[typeCounter] = typeInfo;
			this.ComponentTypes[typeCounter].isOptional = optionality;
			typeCounter++;
		}
Exemplo n.º 2
0
		private bool CheckThisShitUpBitch(int tag, int currentCoordinate, ASN1ComponentTypeInfo currentTypeInfo)
		{
			bool ret_val=true;
			
			ret_val = (currentCoordinate < this.numOfComponents) &&
				(!ASN1Type.MatchTag(tag, currentTypeInfo.Type));

			return ret_val;
		}
Exemplo n.º 3
0
		protected void RegType(ASN1ComponentTypeInfo typeInfo)
		{
			this.ComponentTypes[typeCounter] = typeInfo;
			typeCounter++;
		}