GroupCurrencyTransfer() public method

public GroupCurrencyTransfer ( UUID groupID, UUID userId, bool payUser, string toObjectName, UUID fromObjectID, string fromObjectName, int amount, string description, TransactionType type, UUID transactionID ) : bool
groupID UUID
userId UUID
payUser bool
toObjectName string
fromObjectID UUID
fromObjectName string
amount int
description string
type TransactionType
transactionID UUID
return bool
コード例 #1
0
 public bool GroupCurrencyTransfer(UUID groupID, UUID userID, bool payUser, string toObjectName, UUID fromObjectID,
                                   string fromObjectName, int amount, string description, TransactionType type, UUID transactionID)
 {
     return(m_connector.GroupCurrencyTransfer(groupID, userID, payUser, toObjectName, fromObjectID,
                                              fromObjectName, amount, description, type, transactionID));
 }