SetAuthPostData









How do I use Set Auth Post Data
Below are practical examples compiled from projects for learning and reference purposes

Featured Snippets


File name: ChatPeer.cs Copy
119         public virtual void SetAuthPostData(string stringData)
120         {
121             this.AuthPostData = (string.IsNullOrEmpty(stringData)) ? null : stringData;
122         }
File name: ChatPeer.cs Copy
126         public virtual void SetAuthPostData(byte[] byteData)
127         {
128             this.AuthPostData = byteData;
129         }

SetAuthPostData 136 lượt xem

Gõ tìm kiếm nhanh...