LineSharp.Datatypes.TalkService.Client.updateSettingsAttributes C# (CSharp) 메소드

updateSettingsAttributes() 공개 메소드

public updateSettingsAttributes ( int reqSeq, int attrBitset, Settings settings ) : int
reqSeq int
attrBitset int
settings Settings
리턴 int
      public int updateSettingsAttributes(int reqSeq, int attrBitset, Settings settings)
      {
        #if !SILVERLIGHT
        send_updateSettingsAttributes(reqSeq, attrBitset, settings);
        return recv_updateSettingsAttributes();

        #else
        var asyncResult = Begin_updateSettingsAttributes(null, null, reqSeq, attrBitset, settings);
        return End_updateSettingsAttributes(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client