internal KiiBucket(KiiScope parent, string bucketName) { if (!IsValidBucketName(bucketName)) { throw new ArgumentException(ErrorInfo.KIIBUCKET_NAME_INVALID + bucketName); } this.mParent = parent; this.mBucketName = bucketName; }
internal KiiTopic(KiiScope scope, string name) { this.mScope = scope; this.mName = name; }