ProtocolBuffers.ProtoPrepare.GetProtoType C# (CSharp) Method

GetProtoType() static private method

static private GetProtoType ( Message m, string path ) : MessageEnumBase
m Message
path string
return MessageEnumBase
        static MessageEnumBase GetProtoType(Message m, string path)
        {
            string[] parts = path.Split ('.');
            return SearchMessageUp (m, parts);
        }