PeerCastStation.Core.AtomCollectionExtensions.GetBcstGroup C# (CSharp) Method

GetBcstGroup() public static method

public static GetBcstGroup ( this collection ) : BroadcastGroup?
collection this
return BroadcastGroup?
    public static BroadcastGroup? GetBcstGroup(this IAtomCollection collection)
    {
      var res = GetByteFrom(collection, Atom.PCP_BCST_GROUP);
      if (res.HasValue) {
        return (BroadcastGroup)res.Value;
      }
      else {
        return null;
      }
    }
AtomCollectionExtensions