Model.MessageDispatherComponent.GetOpcode C# (CSharp) Méthode

GetOpcode() public méthode

public GetOpcode ( Type type ) : ushort
type Type
Résultat ushort
		public ushort GetOpcode(Type type)
		{
			MessageAttribute messageAttribute;
			if (!this.messageOpcode.TryGetValue(type, out messageAttribute))
			{
				throw new Exception($"查找Opcode失败: {type.Name}");
			}
			return messageAttribute.Opcode;
		}