コード例 #1
0
 public void SetIdentity(bnet.protocol.Identity val)
 {
     this.Identity = val;
 }
コード例 #2
0
ファイル: Identity.cs プロジェクト: mdX7/WoWLegionCompanion
 public static Identity Deserialize(Stream stream, Identity instance)
 {
     return(Identity.Deserialize(stream, instance, -1L));
 }
コード例 #3
0
ファイル: Identity.cs プロジェクト: mdX7/WoWLegionCompanion
        public override bool Equals(object obj)
        {
            Identity identity = obj as Identity;

            return(identity != null && this.HasAccountId == identity.HasAccountId && (!this.HasAccountId || this.AccountId.Equals(identity.AccountId)) && this.HasGameAccountId == identity.HasGameAccountId && (!this.HasGameAccountId || this.GameAccountId.Equals(identity.GameAccountId)));
        }
コード例 #4
0
ファイル: Identity.cs プロジェクト: mdX7/WoWLegionCompanion
 public void Deserialize(Stream stream)
 {
     Identity.Deserialize(stream, this);
 }
コード例 #5
0
ファイル: Identity.cs プロジェクト: mdX7/WoWLegionCompanion
 public void Serialize(Stream stream)
 {
     Identity.Serialize(stream, this);
 }