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