Exemplo n.º 1
0
 public static void ToStream(Stream input, TLObject obj, TLInt flags, int flag)
 {
     if (IsSet(flags, flag))
     {
         obj.ToStream(input);
     }
 }
Exemplo n.º 2
0
 public static void ToStream(Stream input, TLObject obj, TLLong customFlags, int flag)
 {
     if (IsSet(customFlags, flag))
     {
         obj.ToStream(input);
     }
 }
Exemplo n.º 3
0
        public static void ToStream(Stream output, TLObject obj, TLLong customFlags, int flag)
        {
            if (IsSet(customFlags, flag))
            {
                if (obj == null)
                {
                }

                obj.ToStream(output);
            }
        }