Example #1
0
 internal S3MethodInfo(string method,
                       S3Operation operation,
                       S3MethodFlags flags,
                       string httpCommand)
 {
     Method      = method;
     Operation   = operation;
     Flags       = flags;
     HttpCommand = httpCommand;
 }
Example #2
0
 internal bool HasFlag(S3MethodFlags flags)
 {
     return((Flags & flags) != 0);
 }