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

                obj.ToStream(output);
            }
        }